work in progress

This commit is contained in:
= 2020-05-10 00:58:13 +02:00
parent d0816a57b3
commit 37db985c28
294 changed files with 444 additions and 301 deletions

View File

@ -46,10 +46,37 @@ public class MatchController {
else match.getTeamsMatchStatistics2().setTeam(teamRepository.save(new Team(null, match.getTeamsMatchStatistics2().getTeam().getName())));
match.setTeamsMatchStatistics1(teamsMatchStatisticsRepository.save(match.getTeamsMatchStatistics1()));
match.setTeamsMatchStatistics2(teamsMatchStatisticsRepository.save(match.getTeamsMatchStatistics2()));
if (match.getMatchDate().getMonth() < 7){
match.setSeason(match.getMatchDate().getYear() - 1 + 1900);
if (match.getDate().getMonth() < 7){
match.setSeason(match.getDate().getYear() - 1 + 1900);
} else {
match.setSeason(match.getMatchDate().getYear() + 1900);
match.setSeason(match.getDate().getYear() + 1900);
}
match = matchRepository.save(match);
Optional<Match> prevMatchForTeam1Opt = matchRepository.findFirstByTeamsMatchStatistics1TeamAndSeasonAndDateBeforeOrTeamsMatchStatistics2TeamAndSeasonAndDateBeforeOrderByDateDesc(match.getTeamsMatchStatistics1().getTeam(), match.getSeason(), match.getDate(), match.getTeamsMatchStatistics1().getTeam(), match.getSeason(), match.getDate());
if (prevMatchForTeam1Opt.isPresent()){
Match prevMatchForTeam1 = prevMatchForTeam1Opt.get();
if (prevMatchForTeam1.getTeamsMatchStatistics1().getTeam().equals(match.getTeamsMatchStatistics1().getTeam()))
match.getTeamsMatchStatistics1().setLastMatchesLeaguePoints(prevMatchForTeam1.getTeamsMatchStatistics1().getLastMatchesLeaguePoints());
else match.getTeamsMatchStatistics1().setLastMatchesLeaguePoints(prevMatchForTeam1.getTeamsMatchStatistics2().getLastMatchesLeaguePoints());
}
Optional<Match> prevMatchForTeam2Opt = matchRepository.findFirstByTeamsMatchStatistics1TeamAndSeasonAndDateBeforeOrTeamsMatchStatistics2TeamAndSeasonAndDateBeforeOrderByDateDesc(match.getTeamsMatchStatistics2().getTeam(), match.getSeason(), match.getDate(), match.getTeamsMatchStatistics2().getTeam(), match.getSeason(), match.getDate());
if (prevMatchForTeam2Opt.isPresent()){
Match prevMatchForTeam2 = prevMatchForTeam2Opt.get();
if (prevMatchForTeam2.getTeamsMatchStatistics1().getTeam().equals(match.getTeamsMatchStatistics2().getTeam()))
match.getTeamsMatchStatistics2().setLastMatchesLeaguePoints(prevMatchForTeam2.getTeamsMatchStatistics1().getLastMatchesLeaguePoints());
else match.getTeamsMatchStatistics2().setLastMatchesLeaguePoints(prevMatchForTeam2.getTeamsMatchStatistics2().getLastMatchesLeaguePoints());
}
if (match.getResult() == 0){
match.getTeamsMatchStatistics1().setLastMatchesLeaguePoints(match.getTeamsMatchStatistics1().getLastMatchesLeaguePoints() + 1);
match.getTeamsMatchStatistics2().setLastMatchesLeaguePoints(match.getTeamsMatchStatistics2().getLastMatchesLeaguePoints() + 1);
}
else if (match.getResult() == 1){
match.getTeamsMatchStatistics1().setLastMatchesLeaguePoints(match.getTeamsMatchStatistics1().getLastMatchesLeaguePoints() + 3);
}
else if (match.getResult() == 2){
match.getTeamsMatchStatistics2().setLastMatchesLeaguePoints(match.getTeamsMatchStatistics2().getLastMatchesLeaguePoints() + 3);
}
matchRepository.save(match);
return "done";

View File

@ -42,7 +42,8 @@ public class Match {
@Getter
@Setter
@JsonFormat(pattern="dd-MM-yyyy")
private Date matchDate;
@Column(name = "match_date")
private Date date;
@Getter
@Setter

View File

@ -1,9 +1,18 @@
package com.resultprediction.polishekstraklasa.Predictions.model.match;
import com.resultprediction.polishekstraklasa.Predictions.model.team.Team;
import org.springframework.data.jpa.repository.JpaRepository;
import java.util.Date;
import java.util.List;
import java.util.Optional;
public interface MatchRepository extends JpaRepository<Match, Long> {
List<Match> findAllByOrderByMatchDateAsc();
List<Match> findAllByOrderByDateAsc();
List<Match> findTop10ByTeamsMatchStatistics1TeamAndSeasonAndDateBeforeOrTeamsMatchStatistics2TeamAndSeasonAndDateBeforeOrderByDateDesc(Team team1, int season1, Date date1, Team team2, int season2, Date date2);
List<Match> findTop10ByTeamsMatchStatistics1TeamAndSeasonAndDateBeforeAndTeamsMatchStatistics2FormationOrTeamsMatchStatistics2TeamAndSeasonAndDateBeforeAndTeamsMatchStatistics1FormationOrderByDateDesc(Team team1, Integer season1, Date date1, String formation2, Team team2, Integer season2, Date date2, String formation1);
Optional<Match> findFirstByTeamsMatchStatistics1TeamAndSeasonAndDateBeforeOrTeamsMatchStatistics2TeamAndSeasonAndDateBeforeOrderByDateDesc(Team team1, Integer season1, Date date1, Team team2, Integer season2, Date date2);
}

View File

@ -1,5 +1,6 @@
package com.resultprediction.polishekstraklasa.Predictions.model.match;
import com.resultprediction.polishekstraklasa.Predictions.model.team.Team;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@ -7,6 +8,26 @@ import java.util.List;
@Service
public class PredictService {
/*
goalkeeper form wartości [0,100]
formation form wartości [0,100]
team form wartości [0,100]
*/
private int howManyPastForGoalkeeperForm = 3; //na ile ostatnich meczy patrzymy (maks 10 - można zwiększyć ale trzeba coś dorobić w kodzie)
private int howManyPastForFormationAgainstForm = 3; //na ile ostatnich meczy patrzymy (maks 10 - można zwiększyć ale trzeba coś dorobić w kodzie)
private int howManyPastMatchesTeamForm = 3; //na ile ostatnich meczy patrzymy (maks 10 - można zwiększyć ale trzeba coś dorobić w kodzie)
// wartości na jak 'ważne' jest to zdarzenie
private int shootsOnTargetValue = 1;
private int possessionValue = 1;
private int goalsValue = 1;
private int goalsLostValue = 1;
private int redCardsValue = 1;
private int penaltyAreaEntriesValue = 1;
private int penaltiesValue = 1;
private int lastMatchesResultValue = 1; private int howManyLastMatchesResult = 3;
private int lastMatchesResultBetweenValue = 1; private int howManyLastMatchesResultBetween = 3;
@ -15,9 +36,100 @@ public class PredictService {
public String predictMatches(){
List<Match> matches = matchRepository.findAllByOrderByMatchDateAsc();
List<Match> matches = matchRepository.findAllByOrderByDateAsc();
for (Match match : matches){
System.out.println("MATCH: " + match.getTeamsMatchStatistics1().getTeam().getName() + " vs " + match.getTeamsMatchStatistics2().getTeam().getName() );
Team team1 = match.getTeamsMatchStatistics1().getTeam();
List<Match> previousMatchesTeam1 = matchRepository.findTop10ByTeamsMatchStatistics1TeamAndSeasonAndDateBeforeOrTeamsMatchStatistics2TeamAndSeasonAndDateBeforeOrderByDateDesc(team1, match.getSeason(), match.getDate(), team1, match.getSeason(), match.getDate());
int goalkeeperForm1;
if (howManyPastForGoalkeeperForm > previousMatchesTeam1.size()){
goalkeeperForm1 = calculateGoalkeeperForm(previousMatchesTeam1, team1);
} else {
goalkeeperForm1 = calculateGoalkeeperForm(previousMatchesTeam1.subList(0, howManyPastForGoalkeeperForm - 1), team1);
}
System.out.println("Team1 Goalkeeper form = " + goalkeeperForm1);
List<Match> formationMatchesTeam1 = matchRepository.findTop10ByTeamsMatchStatistics1TeamAndSeasonAndDateBeforeAndTeamsMatchStatistics2FormationOrTeamsMatchStatistics2TeamAndSeasonAndDateBeforeAndTeamsMatchStatistics1FormationOrderByDateDesc(team1, match.getSeason(), match.getDate(), match.getTeamsMatchStatistics2().getFormation(), team1, match.getSeason(), match.getDate(), match.getTeamsMatchStatistics2().getFormation());
int formationAgainstForm1;
if (howManyPastForFormationAgainstForm > formationMatchesTeam1.size()){
formationAgainstForm1 = calculateFormationForm(formationMatchesTeam1, team1);
} else {
formationAgainstForm1 = calculateFormationForm(formationMatchesTeam1.subList(0, howManyPastForFormationAgainstForm - 1), team1);
}
System.out.println("Team1 Formation against form = " + formationAgainstForm1);
List<Match> TeamFormMatches1 = matchRepository.findTop10ByTeamsMatchStatistics1TeamAndSeasonAndDateBeforeAndTeamsMatchStatistics2FormationOrTeamsMatchStatistics2TeamAndSeasonAndDateBeforeAndTeamsMatchStatistics1FormationOrderByDateDesc(team1, match.getSeason(), match.getDate(), match.getTeamsMatchStatistics2().getFormation(), team1, match.getSeason(), match.getDate(), match.getTeamsMatchStatistics2().getFormation());
int teamForm1;
if (howManyPastForFormationAgainstForm > formationMatchesTeam1.size()){
teamForm1 = calculateFormationForm(formationMatchesTeam1, team1);
} else {
teamForm1 = calculateFormationForm(formationMatchesTeam1.subList(0, howManyPastForFormationAgainstForm - 1), team1);
}
System.out.println("Team1 Formation against form = " + teamForm1);
Team team2 = match.getTeamsMatchStatistics2().getTeam();
List<Match> previousMatchesTeam2 = matchRepository.findTop10ByTeamsMatchStatistics1TeamAndSeasonAndDateBeforeOrTeamsMatchStatistics2TeamAndSeasonAndDateBeforeOrderByDateDesc(team2, match.getSeason(), match.getDate(), team2, match.getSeason(), match.getDate());
int goalkeeperForm2;
if (howManyPastForGoalkeeperForm > previousMatchesTeam2.size()){
goalkeeperForm2 = calculateGoalkeeperForm(previousMatchesTeam2, team1);
} else {
goalkeeperForm2 = calculateGoalkeeperForm(previousMatchesTeam2.subList(0, howManyPastForGoalkeeperForm - 1), team1);
}
System.out.println("Team2 Goalkeeper form = " + goalkeeperForm2);
List<Match> formationMatchesTeam2 = matchRepository.findTop10ByTeamsMatchStatistics1TeamAndSeasonAndDateBeforeAndTeamsMatchStatistics2FormationOrTeamsMatchStatistics2TeamAndSeasonAndDateBeforeAndTeamsMatchStatistics1FormationOrderByDateDesc(team2, match.getSeason(), match.getDate(), match.getTeamsMatchStatistics1().getFormation(), team2, match.getSeason(), match.getDate(), match.getTeamsMatchStatistics1().getFormation());
int formationAgainstForm2;
if (howManyPastForFormationAgainstForm > formationMatchesTeam2.size()){
formationAgainstForm2 = calculateFormationForm(formationMatchesTeam2, team2);
} else {
formationAgainstForm2 = calculateFormationForm(formationMatchesTeam2.subList(0, howManyPastForFormationAgainstForm - 1), team2);
}
System.out.println("Team2 Formation against form = " + formationAgainstForm2);
}
return "done";
}
private int calculateFormationForm(List<Match> matches, Team team) {
if (matches.size() == 0)
return 100;
int calculatedValue = 0;
for (Match match : matches){
if (match.getResult() == 0){
calculatedValue += 1;
}
else if (match.getTeamsMatchStatistics1().getTeam().equals(team)){
if (match.getResult() == 1)
calculatedValue += 3;
}
else {
if (match.getResult() == 2)
calculatedValue += 3;
}
}
return (calculatedValue * 100) / (matches.size() * 3);
}
private int calculateGoalkeeperForm(List<Match> matches, Team team) {
if (matches.size() == 0)
return 100;
int calculatedValue = 0;
for (Match match : matches){
if (match.getTeamsMatchStatistics1().getTeam().equals(team)){
calculatedValue += match.getTeamsMatchStatistics1().getGoalkeeperSavesPercent();
}
else {
calculatedValue += match.getTeamsMatchStatistics2().getGoalkeeperSavesPercent();
}
}
return calculatedValue / matches.size();
}
}

View File

@ -58,14 +58,8 @@ public class TeamsMatchStatistics {
@Getter
@Setter
@Transient
private int lastMatchesLeaguePoints;
@Getter
@Setter
@Transient
private String lastMatchesResults;//L - loss, D - draw, W - win eg. WWD means last 3 matches = win win draw - other team will got LLD
@Getter
@Setter
private int goalkeeperSavesPercent;

View File

@ -1 +1 @@
{"result": 2, "matchDate": "24-08-2019", "teamsMatchStatistics1": {"team": {"name": "Arka Gdynia"}, "formation": "4-2-3-1", "shootsOnTarget": 2, "possession": 50.08, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 70.0, "goals_lost": 3}, "teamsMatchStatistics2": {"team": {"name": "Cracovia Kraków"}, "formation": "4-1-4-1", "shootsOnTarget": 10, "possession": 49.92, "goals": 3, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 1, "goalkeeperSavesPercent": 50.0, "goals_lost": 1}}
{"result": 2, "date": "24-08-2019", "teamsMatchStatistics1": {"team": {"name": "Arka Gdynia"}, "formation": "4-2-3-1", "shootsOnTarget": 2, "possession": 50.08, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 70.0, "goals_lost": 3}, "teamsMatchStatistics2": {"team": {"name": "Cracovia Kraków"}, "formation": "4-1-4-1", "shootsOnTarget": 10, "possession": 49.92, "goals": 3, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 1, "goalkeeperSavesPercent": 50.0, "goals_lost": 1}}

View File

@ -1 +1 @@
{"result": 2, "matchDate": "30-08-2019", "teamsMatchStatistics1": {"team": {"name": "Arka Gdynia"}, "formation": "4-2-3-1", "shootsOnTarget": 8, "possession": 61.24, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 4, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Górnik Zabrze"}, "formation": "4-4-1-1", "shootsOnTarget": 5, "possession": 38.76, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 3, "penalties": 0, "goalkeeperSavesPercent": 87.5, "goals_lost": 1}}
{"result": 2, "date": "30-08-2019", "teamsMatchStatistics1": {"team": {"name": "Arka Gdynia"}, "formation": "4-2-3-1", "shootsOnTarget": 8, "possession": 61.24, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 4, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Górnik Zabrze"}, "formation": "4-4-1-1", "shootsOnTarget": 5, "possession": 38.76, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 3, "penalties": 0, "goalkeeperSavesPercent": 87.5, "goals_lost": 1}}

View File

@ -1 +1 @@
{"result": 1, "matchDate": "19-07-2019", "teamsMatchStatistics1": {"team": {"name": "Arka Gdynia"}, "formation": "4-4-2", "shootsOnTarget": 1, "possession": 49.12, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 25.0, "goals_lost": 3}, "teamsMatchStatistics2": {"team": {"name": "Jagiellonia Białystok"}, "formation": "4-4-2", "shootsOnTarget": 4, "possession": 50.88, "goals": 3, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}}
{"result": 1, "date": "19-07-2019", "teamsMatchStatistics1": {"team": {"name": "Arka Gdynia"}, "formation": "4-4-2", "shootsOnTarget": 1, "possession": 49.12, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 25.0, "goals_lost": 3}, "teamsMatchStatistics2": {"team": {"name": "Jagiellonia Białystok"}, "formation": "4-4-2", "shootsOnTarget": 4, "possession": 50.88, "goals": 3, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}}

View File

@ -1 +1 @@
{"result": 0, "matchDate": "02-08-2019", "teamsMatchStatistics1": {"team": {"name": "Arka Gdynia"}, "formation": "4-2-3-1", "shootsOnTarget": 2, "possession": 48.57, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 66.66666666666667, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Korona Kielce"}, "formation": "4-4-2", "shootsOnTarget": 3, "possession": 51.43, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 50.0, "goals_lost": 1}}
{"result": 0, "date": "02-08-2019", "teamsMatchStatistics1": {"team": {"name": "Arka Gdynia"}, "formation": "4-2-3-1", "shootsOnTarget": 2, "possession": 48.57, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 66.66666666666667, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Korona Kielce"}, "formation": "4-4-2", "shootsOnTarget": 3, "possession": 51.43, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 50.0, "goals_lost": 1}}

View File

@ -1 +1 @@
{"result": 0, "matchDate": "17-08-2019", "teamsMatchStatistics1": {"team": {"name": "Arka Gdynia"}, "formation": "4-2-3-1", "shootsOnTarget": 4, "possession": 40.37, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Lech Poznań"}, "formation": "4-2-3-1", "shootsOnTarget": 7, "possession": 59.63, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 4, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}}
{"result": 0, "date": "17-08-2019", "teamsMatchStatistics1": {"team": {"name": "Arka Gdynia"}, "formation": "4-2-3-1", "shootsOnTarget": 4, "possession": 40.37, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Lech Poznań"}, "formation": "4-2-3-1", "shootsOnTarget": 7, "possession": 59.63, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 4, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}}

View File

@ -1 +1 @@
{"result": 0, "matchDate": "20-10-2019", "teamsMatchStatistics1": {"team": {"name": "Arka Gdynia"}, "formation": "4-1-4-1", "shootsOnTarget": 5, "possession": 53.45, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 6, "penalties": 0, "goalkeeperSavesPercent": 60.0, "goals_lost": 2}, "teamsMatchStatistics2": {"team": {"name": "Lechia Gdańsk"}, "formation": "4-1-4-1", "shootsOnTarget": 5, "possession": 46.55, "goals": 2, "red_cards": 1, "penaltyAreaEntries": 3, "penalties": 0, "goalkeeperSavesPercent": 60.0, "goals_lost": 2}}
{"result": 0, "date": "20-10-2019", "teamsMatchStatistics1": {"team": {"name": "Arka Gdynia"}, "formation": "4-1-4-1", "shootsOnTarget": 5, "possession": 53.45, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 6, "penalties": 0, "goalkeeperSavesPercent": 60.0, "goals_lost": 2}, "teamsMatchStatistics2": {"team": {"name": "Lechia Gdańsk"}, "formation": "4-1-4-1", "shootsOnTarget": 5, "possession": 46.55, "goals": 2, "red_cards": 1, "penaltyAreaEntries": 3, "penalties": 0, "goalkeeperSavesPercent": 60.0, "goals_lost": 2}}

View File

@ -1 +1 @@
{"result": 1, "matchDate": "03-11-2019", "teamsMatchStatistics1": {"team": {"name": "Arka Gdynia"}, "formation": "4-1-4-1", "shootsOnTarget": 1, "possession": 24.67, "goals": 0, "red_cards": 1, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 83.33333333333333, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Legia Warszawa"}, "formation": "4-2-3-1", "shootsOnTarget": 6, "possession": 75.33, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 6, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}}
{"result": 1, "date": "03-11-2019", "teamsMatchStatistics1": {"team": {"name": "Arka Gdynia"}, "formation": "4-1-4-1", "shootsOnTarget": 1, "possession": 24.67, "goals": 0, "red_cards": 1, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 83.33333333333333, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Legia Warszawa"}, "formation": "4-2-3-1", "shootsOnTarget": 6, "possession": 75.33, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 6, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}}

View File

@ -1 +1 @@
{"result": 0, "matchDate": "29-09-2019", "teamsMatchStatistics1": {"team": {"name": "Arka Gdynia"}, "formation": "4-3-1-2", "shootsOnTarget": 5, "possession": 52.83, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 4, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Piast Gliwice"}, "formation": "4-4-2", "shootsOnTarget": 4, "possession": 47.17, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}}
{"result": 0, "date": "29-09-2019", "teamsMatchStatistics1": {"team": {"name": "Arka Gdynia"}, "formation": "4-3-1-2", "shootsOnTarget": 5, "possession": 52.83, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 4, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Piast Gliwice"}, "formation": "4-4-2", "shootsOnTarget": 4, "possession": 47.17, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}}

View File

@ -1 +1 @@
{"result": 2, "matchDate": "29-07-2019", "teamsMatchStatistics1": {"team": {"name": "Arka Gdynia"}, "formation": "4-2-3-1", "shootsOnTarget": 5, "possession": 37.41, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 50.0, "goals_lost": 2}, "teamsMatchStatistics2": {"team": {"name": "Pogoń Szczecin"}, "formation": "4-1-4-1", "shootsOnTarget": 4, "possession": 62.59, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}}
{"result": 2, "date": "29-07-2019", "teamsMatchStatistics1": {"team": {"name": "Arka Gdynia"}, "formation": "4-2-3-1", "shootsOnTarget": 5, "possession": 37.41, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 50.0, "goals_lost": 2}, "teamsMatchStatistics2": {"team": {"name": "Pogoń Szczecin"}, "formation": "4-1-4-1", "shootsOnTarget": 4, "possession": 62.59, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}}

View File

@ -1 +1 @@
{"result": 2, "matchDate": "14-09-2019", "teamsMatchStatistics1": {"team": {"name": "Arka Gdynia"}, "formation": "4-2-3-1", "shootsOnTarget": 2, "possession": 53.38, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 71.42857142857143, "goals_lost": 2}, "teamsMatchStatistics2": {"team": {"name": "Raków Częstochowa"}, "formation": "3-4-3", "shootsOnTarget": 6, "possession": 46.62, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}}
{"result": 2, "date": "14-09-2019", "teamsMatchStatistics1": {"team": {"name": "Arka Gdynia"}, "formation": "4-2-3-1", "shootsOnTarget": 2, "possession": 53.38, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 71.42857142857143, "goals_lost": 2}, "teamsMatchStatistics2": {"team": {"name": "Raków Częstochowa"}, "formation": "3-4-3", "shootsOnTarget": 6, "possession": 46.62, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}}

View File

@ -1 +1 @@
{"result": 1, "matchDate": "09-11-2019", "teamsMatchStatistics1": {"team": {"name": "Arka Gdynia"}, "formation": "4-4-1-1", "shootsOnTarget": 7, "possession": 42.25, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 4, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Wisła Kraków"}, "formation": "4-1-4-1", "shootsOnTarget": 4, "possession": 57.75, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 85.71428571428571, "goals_lost": 1}}
{"result": 1, "date": "09-11-2019", "teamsMatchStatistics1": {"team": {"name": "Arka Gdynia"}, "formation": "4-4-1-1", "shootsOnTarget": 7, "possession": 42.25, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 4, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Wisła Kraków"}, "formation": "4-1-4-1", "shootsOnTarget": 4, "possession": 57.75, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 85.71428571428571, "goals_lost": 1}}

View File

@ -1 +1 @@
{"result": 2, "matchDate": "04-10-2019", "teamsMatchStatistics1": {"team": {"name": "Arka Gdynia"}, "formation": "4-3-1-2", "shootsOnTarget": 5, "possession": 58.24, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 3, "penalties": 0, "goalkeeperSavesPercent": 69.23076923076923, "goals_lost": 4}, "teamsMatchStatistics2": {"team": {"name": "Wisła Płock"}, "formation": "4-2-3-1", "shootsOnTarget": 13, "possession": 41.76, "goals": 4, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 80.0, "goals_lost": 1}}
{"result": 2, "date": "04-10-2019", "teamsMatchStatistics1": {"team": {"name": "Arka Gdynia"}, "formation": "4-3-1-2", "shootsOnTarget": 5, "possession": 58.24, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 3, "penalties": 0, "goalkeeperSavesPercent": 69.23076923076923, "goals_lost": 4}, "teamsMatchStatistics2": {"team": {"name": "Wisła Płock"}, "formation": "4-2-3-1", "shootsOnTarget": 13, "possession": 41.76, "goals": 4, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 80.0, "goals_lost": 1}}

View File

@ -1 +1 @@
{"result": 2, "matchDate": "10-08-2019", "teamsMatchStatistics1": {"team": {"name": "Arka Gdynia"}, "formation": "4-2-3-1", "shootsOnTarget": 5, "possession": 54.68, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 3, "penalties": 0, "goalkeeperSavesPercent": 60.0, "goals_lost": 2}, "teamsMatchStatistics2": {"team": {"name": "Zagłębie Lubin"}, "formation": "4-1-4-1", "shootsOnTarget": 5, "possession": 45.32, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}}
{"result": 2, "date": "10-08-2019", "teamsMatchStatistics1": {"team": {"name": "Arka Gdynia"}, "formation": "4-2-3-1", "shootsOnTarget": 5, "possession": 54.68, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 3, "penalties": 0, "goalkeeperSavesPercent": 60.0, "goals_lost": 2}, "teamsMatchStatistics2": {"team": {"name": "Zagłębie Lubin"}, "formation": "4-1-4-1", "shootsOnTarget": 5, "possession": 45.32, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}}

View File

@ -1 +1 @@
{"result": 1, "matchDate": "21-09-2019", "teamsMatchStatistics1": {"team": {"name": "Arka Gdynia"}, "formation": "4-4-2", "shootsOnTarget": 5, "possession": 37.73, "goals": 4, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 85.71428571428571, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Łódzki KS"}, "formation": "4-3-3", "shootsOnTarget": 7, "possession": 62.27, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 100, "goals_lost": 4}}
{"result": 1, "date": "21-09-2019", "teamsMatchStatistics1": {"team": {"name": "Arka Gdynia"}, "formation": "4-4-2", "shootsOnTarget": 5, "possession": 37.73, "goals": 4, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 85.71428571428571, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Łódzki KS"}, "formation": "4-3-3", "shootsOnTarget": 7, "possession": 62.27, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 100, "goals_lost": 4}}

View File

@ -1 +1 @@
{"result": 2, "matchDate": "27-10-2019", "teamsMatchStatistics1": {"team": {"name": "Arka Gdynia"}, "formation": "4-1-4-1", "shootsOnTarget": 2, "possession": 58.3, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 1, "goalkeeperSavesPercent": 60.0, "goals_lost": 2}, "teamsMatchStatistics2": {"team": {"name": "Śląsk Wrocław"}, "formation": "4-2-3-1", "shootsOnTarget": 5, "possession": 41.7, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 50.0, "goals_lost": 1}}
{"result": 2, "date": "27-10-2019", "teamsMatchStatistics1": {"team": {"name": "Arka Gdynia"}, "formation": "4-1-4-1", "shootsOnTarget": 2, "possession": 58.3, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 1, "goalkeeperSavesPercent": 60.0, "goals_lost": 2}, "teamsMatchStatistics2": {"team": {"name": "Śląsk Wrocław"}, "formation": "4-2-3-1", "shootsOnTarget": 5, "possession": 41.7, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 50.0, "goals_lost": 1}}

View File

@ -1 +1 @@
{"result": 2, "matchDate": "24-08-2019", "teamsMatchStatistics1": {"team": {"name": "Cracovia Kraków"}, "formation": "4-1-4-1", "shootsOnTarget": 10, "possession": 49.92, "goals": 3, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 1, "goalkeeperSavesPercent": 50.0, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Arka Gdynia"}, "formation": "4-2-3-1", "shootsOnTarget": 2, "possession": 50.08, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 70.0, "goals_lost": 3}}
{"result": 2, "date": "24-08-2019", "teamsMatchStatistics1": {"team": {"name": "Cracovia Kraków"}, "formation": "4-1-4-1", "shootsOnTarget": 10, "possession": 49.92, "goals": 3, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 1, "goalkeeperSavesPercent": 50.0, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Arka Gdynia"}, "formation": "4-2-3-1", "shootsOnTarget": 2, "possession": 50.08, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 70.0, "goals_lost": 3}}

View File

@ -1 +1 @@
{"result": 1, "matchDate": "29-10-2019", "teamsMatchStatistics1": {"team": {"name": "Cracovia Kraków"}, "formation": "4-2-3-1", "shootsOnTarget": 11, "possession": 59.72, "goals": 3, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 60.0, "goals_lost": 2}, "teamsMatchStatistics2": {"team": {"name": "Bytovia Bytów"}, "formation": "4-4-2", "shootsOnTarget": 5, "possession": 40.28, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 1, "goalkeeperSavesPercent": 100, "goals_lost": 3}}
{"result": 1, "date": "29-10-2019", "teamsMatchStatistics1": {"team": {"name": "Cracovia Kraków"}, "formation": "4-2-3-1", "shootsOnTarget": 11, "possession": 59.72, "goals": 3, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 60.0, "goals_lost": 2}, "teamsMatchStatistics2": {"team": {"name": "Bytovia Bytów"}, "formation": "4-4-2", "shootsOnTarget": 5, "possession": 40.28, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 1, "goalkeeperSavesPercent": 100, "goals_lost": 3}}

View File

@ -1 +1 @@
{"result": 0, "matchDate": "18-07-2019", "teamsMatchStatistics1": {"team": {"name": "Cracovia Kraków"}, "formation": "4-1-4-1", "shootsOnTarget": 4, "possession": 43.37, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 77.77777777777777, "goals_lost": 2}, "teamsMatchStatistics2": {"team": {"name": "DAC"}, "formation": "4-1-4-1", "shootsOnTarget": 9, "possession": 56.63, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 5, "penalties": 0, "goalkeeperSavesPercent": 100, "goals_lost": 2}}
{"result": 0, "date": "18-07-2019", "teamsMatchStatistics1": {"team": {"name": "Cracovia Kraków"}, "formation": "4-1-4-1", "shootsOnTarget": 4, "possession": 43.37, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 77.77777777777777, "goals_lost": 2}, "teamsMatchStatistics2": {"team": {"name": "DAC"}, "formation": "4-1-4-1", "shootsOnTarget": 9, "possession": 56.63, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 5, "penalties": 0, "goalkeeperSavesPercent": 100, "goals_lost": 2}}

View File

@ -1 +1 @@
{"result": 0, "matchDate": "11-07-2019", "teamsMatchStatistics1": {"team": {"name": "Cracovia Kraków"}, "formation": "4-1-4-1", "shootsOnTarget": 4, "possession": 39.11, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 80.0, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "DAC"}, "formation": "4-1-4-1", "shootsOnTarget": 5, "possession": 60.89, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 7, "penalties": 0, "goalkeeperSavesPercent": 100, "goals_lost": 1}}
{"result": 0, "date": "11-07-2019", "teamsMatchStatistics1": {"team": {"name": "Cracovia Kraków"}, "formation": "4-1-4-1", "shootsOnTarget": 4, "possession": 39.11, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 80.0, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "DAC"}, "formation": "4-1-4-1", "shootsOnTarget": 5, "possession": 60.89, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 7, "penalties": 0, "goalkeeperSavesPercent": 100, "goals_lost": 1}}

View File

@ -1 +1 @@
{"result": 0, "matchDate": "06-10-2019", "teamsMatchStatistics1": {"team": {"name": "Cracovia Kraków"}, "formation": "4-2-3-1", "shootsOnTarget": 4, "possession": 65.35, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 0.0, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Górnik Zabrze"}, "formation": "4-2-3-1", "shootsOnTarget": 1, "possession": 34.65, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 3, "penalties": 0, "goalkeeperSavesPercent": 80.0, "goals_lost": 1}}
{"result": 0, "date": "06-10-2019", "teamsMatchStatistics1": {"team": {"name": "Cracovia Kraków"}, "formation": "4-2-3-1", "shootsOnTarget": 4, "possession": 65.35, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 0.0, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Górnik Zabrze"}, "formation": "4-2-3-1", "shootsOnTarget": 1, "possession": 34.65, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 3, "penalties": 0, "goalkeeperSavesPercent": 80.0, "goals_lost": 1}}

View File

@ -1 +1 @@
{"result": 2, "matchDate": "19-10-2019", "teamsMatchStatistics1": {"team": {"name": "Cracovia Kraków"}, "formation": "4-1-4-1", "shootsOnTarget": 2, "possession": 49.32, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 40.0, "goals_lost": 3}, "teamsMatchStatistics2": {"team": {"name": "Jagiellonia Białystok"}, "formation": "4-2-3-1", "shootsOnTarget": 5, "possession": 50.68, "goals": 3, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 0.0, "goals_lost": 2}}
{"result": 2, "date": "19-10-2019", "teamsMatchStatistics1": {"team": {"name": "Cracovia Kraków"}, "formation": "4-1-4-1", "shootsOnTarget": 2, "possession": 49.32, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 40.0, "goals_lost": 3}, "teamsMatchStatistics2": {"team": {"name": "Jagiellonia Białystok"}, "formation": "4-2-3-1", "shootsOnTarget": 5, "possession": 50.68, "goals": 3, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 0.0, "goals_lost": 2}}

View File

@ -1 +1 @@
{"result": 2, "matchDate": "11-08-2019", "teamsMatchStatistics1": {"team": {"name": "Cracovia Kraków"}, "formation": "4-1-4-1", "shootsOnTarget": 5, "possession": 46.54, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Korona Kielce"}, "formation": "4-4-1-1", "shootsOnTarget": 3, "possession": 53.46, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 3, "penalties": 0, "goalkeeperSavesPercent": 80.0, "goals_lost": 1}}
{"result": 2, "date": "11-08-2019", "teamsMatchStatistics1": {"team": {"name": "Cracovia Kraków"}, "formation": "4-1-4-1", "shootsOnTarget": 5, "possession": 46.54, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Korona Kielce"}, "formation": "4-4-1-1", "shootsOnTarget": 3, "possession": 53.46, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 3, "penalties": 0, "goalkeeperSavesPercent": 80.0, "goals_lost": 1}}

View File

@ -1 +1 @@
{"result": 1, "matchDate": "01-09-2019", "teamsMatchStatistics1": {"team": {"name": "Cracovia Kraków"}, "formation": "4-1-4-1", "shootsOnTarget": 8, "possession": 42.78, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 4, "penalties": 0, "goalkeeperSavesPercent": 50.0, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Lech Poznań"}, "formation": "4-4-1-1", "shootsOnTarget": 2, "possession": 57.22, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 3, "penalties": 0, "goalkeeperSavesPercent": 75.0, "goals_lost": 2}}
{"result": 1, "date": "01-09-2019", "teamsMatchStatistics1": {"team": {"name": "Cracovia Kraków"}, "formation": "4-1-4-1", "shootsOnTarget": 8, "possession": 42.78, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 4, "penalties": 0, "goalkeeperSavesPercent": 50.0, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Lech Poznań"}, "formation": "4-4-1-1", "shootsOnTarget": 2, "possession": 57.22, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 3, "penalties": 0, "goalkeeperSavesPercent": 75.0, "goals_lost": 2}}

View File

@ -1 +1 @@
{"result": 2, "matchDate": "02-11-2019", "teamsMatchStatistics1": {"team": {"name": "Cracovia Kraków"}, "formation": "4-1-4-1", "shootsOnTarget": 5, "possession": 51.02, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Lechia Gdańsk"}, "formation": "4-1-4-1", "shootsOnTarget": 2, "possession": 48.98, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 3, "penalties": 0, "goalkeeperSavesPercent": 80.0, "goals_lost": 1}}
{"result": 2, "date": "02-11-2019", "teamsMatchStatistics1": {"team": {"name": "Cracovia Kraków"}, "formation": "4-1-4-1", "shootsOnTarget": 5, "possession": 51.02, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Lechia Gdańsk"}, "formation": "4-1-4-1", "shootsOnTarget": 2, "possession": 48.98, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 3, "penalties": 0, "goalkeeperSavesPercent": 80.0, "goals_lost": 1}}

View File

@ -1 +1 @@
{"result": 1, "matchDate": "22-09-2019", "teamsMatchStatistics1": {"team": {"name": "Cracovia Kraków"}, "formation": "4-1-4-1", "shootsOnTarget": 3, "possession": 47.9, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 50.0, "goals_lost": 2}, "teamsMatchStatistics2": {"team": {"name": "Legia Warszawa"}, "formation": "4-2-3-1", "shootsOnTarget": 4, "possession": 52.1, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 1, "goalkeeperSavesPercent": 75.0, "goals_lost": 1}}
{"result": 1, "date": "22-09-2019", "teamsMatchStatistics1": {"team": {"name": "Cracovia Kraków"}, "formation": "4-1-4-1", "shootsOnTarget": 3, "possession": 47.9, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 50.0, "goals_lost": 2}, "teamsMatchStatistics2": {"team": {"name": "Legia Warszawa"}, "formation": "4-2-3-1", "shootsOnTarget": 4, "possession": 52.1, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 1, "goalkeeperSavesPercent": 75.0, "goals_lost": 1}}

View File

@ -1 +1 @@
{"result": 2, "matchDate": "16-09-2019", "teamsMatchStatistics1": {"team": {"name": "Cracovia Kraków"}, "formation": "4-2-3-1", "shootsOnTarget": 7, "possession": 58.36, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Piast Gliwice"}, "formation": "5-4-1", "shootsOnTarget": 3, "possession": 41.64, "goals": 0, "red_cards": 1, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 75.0, "goals_lost": 2}}
{"result": 2, "date": "16-09-2019", "teamsMatchStatistics1": {"team": {"name": "Cracovia Kraków"}, "formation": "4-2-3-1", "shootsOnTarget": 7, "possession": 58.36, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Piast Gliwice"}, "formation": "5-4-1", "shootsOnTarget": 3, "possession": 41.64, "goals": 0, "red_cards": 1, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 75.0, "goals_lost": 2}}

View File

@ -1 +1 @@
{"result": 2, "matchDate": "25-10-2019", "teamsMatchStatistics1": {"team": {"name": "Cracovia Kraków"}, "formation": "4-1-4-1", "shootsOnTarget": 4, "possession": 46.14, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Pogoń Szczecin"}, "formation": "4-5-1", "shootsOnTarget": 2, "possession": 53.86, "goals": 0, "red_cards": 1, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 50.0, "goals_lost": 2}}
{"result": 2, "date": "25-10-2019", "teamsMatchStatistics1": {"team": {"name": "Cracovia Kraków"}, "formation": "4-1-4-1", "shootsOnTarget": 4, "possession": 46.14, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Pogoń Szczecin"}, "formation": "4-5-1", "shootsOnTarget": 2, "possession": 53.86, "goals": 0, "red_cards": 1, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 50.0, "goals_lost": 2}}

View File

@ -1 +1 @@
{"result": 0, "matchDate": "05-12-2019", "teamsMatchStatistics1": {"team": {"name": "Cracovia Kraków"}, "formation": "4-2-3-1", "shootsOnTarget": 7, "possession": 49.64, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Raków Częstochowa"}, "formation": "5-4-1", "shootsOnTarget": 5, "possession": 50.36, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}}
{"result": 0, "date": "05-12-2019", "teamsMatchStatistics1": {"team": {"name": "Cracovia Kraków"}, "formation": "4-2-3-1", "shootsOnTarget": 7, "possession": 49.64, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Raków Częstochowa"}, "formation": "5-4-1", "shootsOnTarget": 5, "possession": 50.36, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}}

View File

@ -1 +1 @@
{"result": 1, "matchDate": "03-08-2019", "teamsMatchStatistics1": {"team": {"name": "Cracovia Kraków"}, "formation": "4-1-4-1", "shootsOnTarget": 7, "possession": 37.38, "goals": 3, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 87.5, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Raków Częstochowa"}, "formation": "3-4-3", "shootsOnTarget": 8, "possession": 62.62, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 57.142857142857146, "goals_lost": 3}}
{"result": 1, "date": "03-08-2019", "teamsMatchStatistics1": {"team": {"name": "Cracovia Kraków"}, "formation": "4-1-4-1", "shootsOnTarget": 7, "possession": 37.38, "goals": 3, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 87.5, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Raków Częstochowa"}, "formation": "3-4-3", "shootsOnTarget": 8, "possession": 62.62, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 57.142857142857146, "goals_lost": 3}}

View File

@ -1 +1 @@
{"result": 1, "matchDate": "29-09-2019", "teamsMatchStatistics1": {"team": {"name": "Cracovia Kraków"}, "formation": "4-1-4-1", "shootsOnTarget": 2, "possession": 35.16, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Wisła Kraków"}, "formation": "4-4-2", "shootsOnTarget": 2, "possession": 64.84, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 50.0, "goals_lost": 1}}
{"result": 1, "date": "29-09-2019", "teamsMatchStatistics1": {"team": {"name": "Cracovia Kraków"}, "formation": "4-1-4-1", "shootsOnTarget": 2, "possession": 35.16, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Wisła Kraków"}, "formation": "4-4-2", "shootsOnTarget": 2, "possession": 64.84, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 50.0, "goals_lost": 1}}

View File

@ -1 +1 @@
{"result": 0, "matchDate": "09-11-2019", "teamsMatchStatistics1": {"team": {"name": "Cracovia Kraków"}, "formation": "4-1-4-1", "shootsOnTarget": 0, "possession": 53.23, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Wisła Płock"}, "formation": "4-4-1-1", "shootsOnTarget": 2, "possession": 46.77, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 100, "goals_lost": 0}}
{"result": 0, "date": "09-11-2019", "teamsMatchStatistics1": {"team": {"name": "Cracovia Kraków"}, "formation": "4-1-4-1", "shootsOnTarget": 0, "possession": 53.23, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Wisła Płock"}, "formation": "4-4-1-1", "shootsOnTarget": 2, "possession": 46.77, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 100, "goals_lost": 0}}

View File

@ -1 +1 @@
{"result": 0, "matchDate": "21-07-2019", "teamsMatchStatistics1": {"team": {"name": "Cracovia Kraków"}, "formation": "4-1-4-1", "shootsOnTarget": 4, "possession": 57.92, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 66.66666666666667, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Zagłębie Lubin"}, "formation": "4-2-3-1", "shootsOnTarget": 3, "possession": 42.08, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 75.0, "goals_lost": 1}}
{"result": 0, "date": "21-07-2019", "teamsMatchStatistics1": {"team": {"name": "Cracovia Kraków"}, "formation": "4-1-4-1", "shootsOnTarget": 4, "possession": 57.92, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 66.66666666666667, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Zagłębie Lubin"}, "formation": "4-2-3-1", "shootsOnTarget": 3, "possession": 42.08, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 75.0, "goals_lost": 1}}

View File

@ -1 +1 @@
{"result": 1, "matchDate": "27-07-2019", "teamsMatchStatistics1": {"team": {"name": "Cracovia Kraków"}, "formation": "4-1-4-1", "shootsOnTarget": 6, "possession": 46.67, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 4, "penalties": 0, "goalkeeperSavesPercent": 71.42857142857143, "goals_lost": 2}, "teamsMatchStatistics2": {"team": {"name": "Łódzki KS"}, "formation": "4-1-4-1", "shootsOnTarget": 7, "possession": 53.33, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 5, "penalties": 1, "goalkeeperSavesPercent": 100, "goals_lost": 1}}
{"result": 1, "date": "27-07-2019", "teamsMatchStatistics1": {"team": {"name": "Cracovia Kraków"}, "formation": "4-1-4-1", "shootsOnTarget": 6, "possession": 46.67, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 4, "penalties": 0, "goalkeeperSavesPercent": 71.42857142857143, "goals_lost": 2}, "teamsMatchStatistics2": {"team": {"name": "Łódzki KS"}, "formation": "4-1-4-1", "shootsOnTarget": 7, "possession": 53.33, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 5, "penalties": 1, "goalkeeperSavesPercent": 100, "goals_lost": 1}}

View File

@ -1 +1 @@
{"result": 2, "matchDate": "17-08-2019", "teamsMatchStatistics1": {"team": {"name": "Cracovia Kraków"}, "formation": "4-1-4-1", "shootsOnTarget": 7, "possession": 52.96, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 66.66666666666667, "goals_lost": 2}, "teamsMatchStatistics2": {"team": {"name": "Śląsk Wrocław"}, "formation": "4-4-1-1", "shootsOnTarget": 6, "possession": 47.04, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 3, "penalties": 0, "goalkeeperSavesPercent": 85.71428571428571, "goals_lost": 1}}
{"result": 2, "date": "17-08-2019", "teamsMatchStatistics1": {"team": {"name": "Cracovia Kraków"}, "formation": "4-1-4-1", "shootsOnTarget": 7, "possession": 52.96, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 66.66666666666667, "goals_lost": 2}, "teamsMatchStatistics2": {"team": {"name": "Śląsk Wrocław"}, "formation": "4-4-1-1", "shootsOnTarget": 6, "possession": 47.04, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 3, "penalties": 0, "goalkeeperSavesPercent": 85.71428571428571, "goals_lost": 1}}

View File

@ -1 +1 @@
{"result": 2, "matchDate": "07-07-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-4-1-1", "shootsOnTarget": 1, "possession": 37.41, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 50.0, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "AEK Athens"}, "formation": "4-2-3-1", "shootsOnTarget": 2, "possession": 62.59, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 100, "goals_lost": 0}}
{"result": 2, "date": "07-07-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-4-1-1", "shootsOnTarget": 1, "possession": 37.41, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 50.0, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "AEK Athens"}, "formation": "4-2-3-1", "shootsOnTarget": 2, "possession": 62.59, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 100, "goals_lost": 0}}

View File

@ -1 +1 @@
{"result": 2, "matchDate": "22-04-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-1-4-1", "shootsOnTarget": 5, "possession": 45.19, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 4, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Arka Gdynia"}, "formation": "4-2-3-1", "shootsOnTarget": 2, "possession": 54.81, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 80.0, "goals_lost": 1}}
{"result": 2, "date": "22-04-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-1-4-1", "shootsOnTarget": 5, "possession": 45.19, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 4, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Arka Gdynia"}, "formation": "4-2-3-1", "shootsOnTarget": 2, "possession": 54.81, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 80.0, "goals_lost": 1}}

View File

@ -1 +1 @@
{"result": 1, "matchDate": "29-03-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-1-4-1", "shootsOnTarget": 3, "possession": 62.11, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 75.0, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Cracovia Kraków"}, "formation": "4-4-2", "shootsOnTarget": 4, "possession": 37.89, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}}
{"result": 1, "date": "29-03-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-1-4-1", "shootsOnTarget": 3, "possession": 62.11, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 75.0, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Cracovia Kraków"}, "formation": "4-4-2", "shootsOnTarget": 4, "possession": 37.89, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}}

View File

@ -1 +1 @@
{"result": 0, "matchDate": "02-03-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-1-4-1", "shootsOnTarget": 3, "possession": 48.1, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 60.0, "goals_lost": 2}, "teamsMatchStatistics2": {"team": {"name": "Jagiellonia Białystok"}, "formation": "4-2-3-1", "shootsOnTarget": 5, "possession": 51.9, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 1, "goalkeeperSavesPercent": 33.333333333333336, "goals_lost": 2}}
{"result": 0, "date": "02-03-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-1-4-1", "shootsOnTarget": 3, "possession": 48.1, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 60.0, "goals_lost": 2}, "teamsMatchStatistics2": {"team": {"name": "Jagiellonia Białystok"}, "formation": "4-2-3-1", "shootsOnTarget": 5, "possession": 51.9, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 1, "goalkeeperSavesPercent": 33.333333333333336, "goals_lost": 2}}

View File

@ -1 +1 @@
{"result": 1, "matchDate": "18-05-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "5-3-2", "shootsOnTarget": 8, "possession": 46.05, "goals": 3, "red_cards": 0, "penaltyAreaEntries": 4, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Korona Kielce"}, "formation": "4-4-2", "shootsOnTarget": 2, "possession": 53.95, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 100, "goals_lost": 3}}
{"result": 1, "date": "18-05-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "5-3-2", "shootsOnTarget": 8, "possession": 46.05, "goals": 3, "red_cards": 0, "penaltyAreaEntries": 4, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Korona Kielce"}, "formation": "4-4-2", "shootsOnTarget": 2, "possession": 53.95, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 100, "goals_lost": 3}}

View File

@ -1 +1 @@
{"result": 1, "matchDate": "15-03-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-1-4-1", "shootsOnTarget": 6, "possession": 39.04, "goals": 3, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Lech Poznań"}, "formation": "4-2-3-1", "shootsOnTarget": 5, "possession": 60.96, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 3, "penalties": 0, "goalkeeperSavesPercent": 100, "goals_lost": 3}}
{"result": 1, "date": "15-03-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-1-4-1", "shootsOnTarget": 6, "possession": 39.04, "goals": 3, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Lech Poznań"}, "formation": "4-2-3-1", "shootsOnTarget": 5, "possession": 60.96, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 3, "penalties": 0, "goalkeeperSavesPercent": 100, "goals_lost": 3}}

View File

@ -1 +1 @@
{"result": 1, "matchDate": "27-02-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-1-4-1", "shootsOnTarget": 10, "possession": 57.44, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 1, "goalkeeperSavesPercent": 50.0, "goals_lost": 2}, "teamsMatchStatistics2": {"team": {"name": "Lechia Gdańsk"}, "formation": "4-1-4-1", "shootsOnTarget": 4, "possession": 42.56, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 90.0, "goals_lost": 1}}
{"result": 1, "date": "27-02-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-1-4-1", "shootsOnTarget": 10, "possession": 57.44, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 1, "goalkeeperSavesPercent": 50.0, "goals_lost": 2}, "teamsMatchStatistics2": {"team": {"name": "Lechia Gdańsk"}, "formation": "4-1-4-1", "shootsOnTarget": 4, "possession": 42.56, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 90.0, "goals_lost": 1}}

View File

@ -1 +1 @@
{"result": 1, "matchDate": "07-04-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-1-4-1", "shootsOnTarget": 7, "possession": 46.86, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 60.0, "goals_lost": 2}, "teamsMatchStatistics2": {"team": {"name": "Legia Warszawa"}, "formation": "4-2-3-1", "shootsOnTarget": 5, "possession": 53.14, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 1, "goalkeeperSavesPercent": 85.71428571428571, "goals_lost": 1}}
{"result": 1, "date": "07-04-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-1-4-1", "shootsOnTarget": 7, "possession": 46.86, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 60.0, "goals_lost": 2}, "teamsMatchStatistics2": {"team": {"name": "Legia Warszawa"}, "formation": "4-2-3-1", "shootsOnTarget": 5, "possession": 53.14, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 1, "goalkeeperSavesPercent": 85.71428571428571, "goals_lost": 1}}

View File

@ -1 +1 @@
{"result": 1, "matchDate": "11-05-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-1-4-1", "shootsOnTarget": 9, "possession": 42.93, "goals": 1, "red_cards": 1, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Miedź Legnica"}, "formation": "4-3-3", "shootsOnTarget": 3, "possession": 57.07, "goals": 0, "red_cards": 1, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 100, "goals_lost": 1}}
{"result": 1, "date": "11-05-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-1-4-1", "shootsOnTarget": 9, "possession": 42.93, "goals": 1, "red_cards": 1, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Miedź Legnica"}, "formation": "4-3-3", "shootsOnTarget": 3, "possession": 57.07, "goals": 0, "red_cards": 1, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 100, "goals_lost": 1}}

View File

@ -1 +1 @@
{"result": 1, "matchDate": "08-03-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-1-4-1", "shootsOnTarget": 6, "possession": 48.86, "goals": 0, "red_cards": 1, "penaltyAreaEntries": 3, "penalties": 0, "goalkeeperSavesPercent": 50.0, "goals_lost": 2}, "teamsMatchStatistics2": {"team": {"name": "Piast Gliwice"}, "formation": "4-5-1", "shootsOnTarget": 4, "possession": 51.14, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 1, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}}
{"result": 1, "date": "08-03-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-1-4-1", "shootsOnTarget": 6, "possession": 48.86, "goals": 0, "red_cards": 1, "penaltyAreaEntries": 3, "penalties": 0, "goalkeeperSavesPercent": 50.0, "goals_lost": 2}, "teamsMatchStatistics2": {"team": {"name": "Piast Gliwice"}, "formation": "4-5-1", "shootsOnTarget": 4, "possession": 51.14, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 1, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}}

View File

@ -1 +1 @@
{"result": 2, "matchDate": "15-02-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-1-4-1", "shootsOnTarget": 5, "possession": 52.12, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 1, "goalkeeperSavesPercent": 50.0, "goals_lost": 3}, "teamsMatchStatistics2": {"team": {"name": "Pogoń Szczecin"}, "formation": "4-1-4-1", "shootsOnTarget": 5, "possession": 47.88, "goals": 3, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 100, "goals_lost": 1}}
{"result": 2, "date": "15-02-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-1-4-1", "shootsOnTarget": 5, "possession": 52.12, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 1, "goalkeeperSavesPercent": 50.0, "goals_lost": 3}, "teamsMatchStatistics2": {"team": {"name": "Pogoń Szczecin"}, "formation": "4-1-4-1", "shootsOnTarget": 5, "possession": 47.88, "goals": 3, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 100, "goals_lost": 1}}

View File

@ -1 +1 @@
{"result": 2, "matchDate": "10-08-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-4-1-1", "shootsOnTarget": 3, "possession": 41.55, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 4, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Raków Częstochowa"}, "formation": "3-4-2-1", "shootsOnTarget": 2, "possession": 58.45, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 75.0, "goals_lost": 1}}
{"result": 2, "date": "10-08-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-4-1-1", "shootsOnTarget": 3, "possession": 41.55, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 4, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Raków Częstochowa"}, "formation": "3-4-2-1", "shootsOnTarget": 2, "possession": 58.45, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 75.0, "goals_lost": 1}}

View File

@ -1 +1 @@
{"result": 2, "matchDate": "11-02-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-1-4-1", "shootsOnTarget": 5, "possession": 45.3, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Wisła Kraków"}, "formation": "4-4-2", "shootsOnTarget": 5, "possession": 54.7, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 4, "penalties": 0, "goalkeeperSavesPercent": 60.0, "goals_lost": 2}}
{"result": 2, "date": "11-02-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-1-4-1", "shootsOnTarget": 5, "possession": 45.3, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Wisła Kraków"}, "formation": "4-4-2", "shootsOnTarget": 5, "possession": 54.7, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 4, "penalties": 0, "goalkeeperSavesPercent": 60.0, "goals_lost": 2}}

View File

@ -1 +1 @@
{"result": 1, "matchDate": "14-05-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-1-4-1", "shootsOnTarget": 4, "possession": 53.9, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 75.0, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Wisła Płock"}, "formation": "4-2-3-1", "shootsOnTarget": 4, "possession": 46.1, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 3, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}}
{"result": 1, "date": "14-05-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-1-4-1", "shootsOnTarget": 4, "possession": 53.9, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 75.0, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Wisła Płock"}, "formation": "4-2-3-1", "shootsOnTarget": 4, "possession": 46.1, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 3, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}}

View File

@ -1 +1 @@
{"result": 0, "matchDate": "02-04-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-1-4-1", "shootsOnTarget": 2, "possession": 43.46, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 75.0, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Zagłębie Lubin"}, "formation": "4-2-3-1", "shootsOnTarget": 4, "possession": 56.54, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 4, "penalties": 0, "goalkeeperSavesPercent": 50.0, "goals_lost": 1}}
{"result": 0, "date": "02-04-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-1-4-1", "shootsOnTarget": 2, "possession": 43.46, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 75.0, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Zagłębie Lubin"}, "formation": "4-2-3-1", "shootsOnTarget": 4, "possession": 56.54, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 4, "penalties": 0, "goalkeeperSavesPercent": 50.0, "goals_lost": 1}}

View File

@ -1 +1 @@
{"result": 2, "matchDate": "23-02-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-5-1", "shootsOnTarget": 5, "possession": 46.24, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 80.0, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Zagłębie Sosnowiec"}, "formation": "4-4-2", "shootsOnTarget": 5, "possession": 53.76, "goals": 1, "red_cards": 1, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 100, "goals_lost": 2}}
{"result": 2, "date": "23-02-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-5-1", "shootsOnTarget": 5, "possession": 46.24, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 80.0, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Zagłębie Sosnowiec"}, "formation": "4-4-2", "shootsOnTarget": 5, "possession": 53.76, "goals": 1, "red_cards": 1, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 100, "goals_lost": 2}}

View File

@ -1 +1 @@
{"result": 0, "matchDate": "20-10-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-2-3-1", "shootsOnTarget": 4, "possession": 47.48, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 5, "penalties": 0, "goalkeeperSavesPercent": 66.66666666666667, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Łódzki KS"}, "formation": "4-2-3-1", "shootsOnTarget": 3, "possession": 52.52, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 100, "goals_lost": 1}}
{"result": 0, "date": "20-10-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-2-3-1", "shootsOnTarget": 4, "possession": 47.48, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 5, "penalties": 0, "goalkeeperSavesPercent": 66.66666666666667, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Łódzki KS"}, "formation": "4-2-3-1", "shootsOnTarget": 3, "possession": 52.52, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 100, "goals_lost": 1}}

View File

@ -1 +1 @@
{"result": 1, "matchDate": "13-04-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-1-4-1", "shootsOnTarget": 3, "possession": 49.27, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Śląsk Wrocław"}, "formation": "4-2-3-1", "shootsOnTarget": 2, "possession": 50.73, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 100, "goals_lost": 1}}
{"result": 1, "date": "13-04-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-1-4-1", "shootsOnTarget": 3, "possession": 49.27, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Śląsk Wrocław"}, "formation": "4-2-3-1", "shootsOnTarget": 2, "possession": 50.73, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 100, "goals_lost": 1}}

View File

@ -1 +1 @@
{"result": 1, "matchDate": "19-07-2019", "teamsMatchStatistics1": {"team": {"name": "Jagiellonia Białystok"}, "formation": "4-4-2", "shootsOnTarget": 4, "possession": 50.88, "goals": 3, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Arka Gdynia"}, "formation": "4-4-2", "shootsOnTarget": 1, "possession": 49.12, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 25.0, "goals_lost": 3}}
{"result": 1, "date": "19-07-2019", "teamsMatchStatistics1": {"team": {"name": "Jagiellonia Białystok"}, "formation": "4-4-2", "shootsOnTarget": 4, "possession": 50.88, "goals": 3, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Arka Gdynia"}, "formation": "4-4-2", "shootsOnTarget": 1, "possession": 49.12, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 25.0, "goals_lost": 3}}

View File

@ -1 +1 @@
{"result": 2, "matchDate": "19-10-2019", "teamsMatchStatistics1": {"team": {"name": "Jagiellonia Białystok"}, "formation": "4-2-3-1", "shootsOnTarget": 5, "possession": 50.68, "goals": 3, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 0.0, "goals_lost": 2}, "teamsMatchStatistics2": {"team": {"name": "Cracovia Kraków"}, "formation": "4-1-4-1", "shootsOnTarget": 2, "possession": 49.32, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 40.0, "goals_lost": 3}}
{"result": 2, "date": "19-10-2019", "teamsMatchStatistics1": {"team": {"name": "Jagiellonia Białystok"}, "formation": "4-2-3-1", "shootsOnTarget": 5, "possession": 50.68, "goals": 3, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 0.0, "goals_lost": 2}, "teamsMatchStatistics2": {"team": {"name": "Cracovia Kraków"}, "formation": "4-1-4-1", "shootsOnTarget": 2, "possession": 49.32, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 40.0, "goals_lost": 3}}

View File

@ -1 +1 @@
{"result": 1, "matchDate": "07-09-2019", "teamsMatchStatistics1": {"team": {"name": "Jagiellonia Białystok"}, "formation": "4-4-1-1", "shootsOnTarget": 3, "possession": 49.46, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 4, "penalties": 0, "goalkeeperSavesPercent": 75.0, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Dinamo Brest"}, "formation": "4-2-3-1", "shootsOnTarget": 6, "possession": 50.54, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 100, "goals_lost": 2}}
{"result": 1, "date": "07-09-2019", "teamsMatchStatistics1": {"team": {"name": "Jagiellonia Białystok"}, "formation": "4-4-1-1", "shootsOnTarget": 3, "possession": 49.46, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 4, "penalties": 0, "goalkeeperSavesPercent": 75.0, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Dinamo Brest"}, "formation": "4-2-3-1", "shootsOnTarget": 6, "possession": 50.54, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 100, "goals_lost": 2}}

View File

@ -1 +1 @@
{"result": 2, "matchDate": "17-08-2019", "teamsMatchStatistics1": {"team": {"name": "Jagiellonia Białystok"}, "formation": "4-4-1-1", "shootsOnTarget": 9, "possession": 43.71, "goals": 3, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 83.33333333333333, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Górnik Zabrze"}, "formation": "4-1-4-1", "shootsOnTarget": 6, "possession": 56.29, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 66.66666666666667, "goals_lost": 3}}
{"result": 2, "date": "17-08-2019", "teamsMatchStatistics1": {"team": {"name": "Jagiellonia Białystok"}, "formation": "4-4-1-1", "shootsOnTarget": 9, "possession": 43.71, "goals": 3, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 83.33333333333333, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Górnik Zabrze"}, "formation": "4-1-4-1", "shootsOnTarget": 6, "possession": 56.29, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 66.66666666666667, "goals_lost": 3}}

View File

@ -1 +1 @@
{"result": 1, "matchDate": "30-08-2019", "teamsMatchStatistics1": {"team": {"name": "Jagiellonia Białystok"}, "formation": "4-4-2", "shootsOnTarget": 3, "possession": 44.43, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Korona Kielce"}, "formation": "4-4-2", "shootsOnTarget": 0, "possession": 55.57, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 33.333333333333336, "goals_lost": 2}}
{"result": 1, "date": "30-08-2019", "teamsMatchStatistics1": {"team": {"name": "Jagiellonia Białystok"}, "formation": "4-4-2", "shootsOnTarget": 3, "possession": 44.43, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Korona Kielce"}, "formation": "4-4-2", "shootsOnTarget": 0, "possession": 55.57, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 33.333333333333336, "goals_lost": 2}}

View File

@ -1 +1 @@
{"result": 0, "matchDate": "20-09-2019", "teamsMatchStatistics1": {"team": {"name": "Jagiellonia Białystok"}, "formation": "4-4-1-1", "shootsOnTarget": 2, "possession": 53.29, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 66.66666666666667, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Lech Poznań"}, "formation": "4-4-1-1", "shootsOnTarget": 3, "possession": 46.71, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 1, "goalkeeperSavesPercent": 50.0, "goals_lost": 1}}
{"result": 0, "date": "20-09-2019", "teamsMatchStatistics1": {"team": {"name": "Jagiellonia Białystok"}, "formation": "4-4-1-1", "shootsOnTarget": 2, "possession": 53.29, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 66.66666666666667, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Lech Poznań"}, "formation": "4-4-1-1", "shootsOnTarget": 3, "possession": 46.71, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 1, "goalkeeperSavesPercent": 50.0, "goals_lost": 1}}

View File

@ -1 +1 @@
{"result": 0, "matchDate": "12-08-2019", "teamsMatchStatistics1": {"team": {"name": "Jagiellonia Białystok"}, "formation": "4-4-1-1", "shootsOnTarget": 2, "possession": 48.73, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 50.0, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Lechia Gdańsk"}, "formation": "4-1-4-1", "shootsOnTarget": 2, "possession": 51.27, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 50.0, "goals_lost": 1}}
{"result": 0, "date": "12-08-2019", "teamsMatchStatistics1": {"team": {"name": "Jagiellonia Białystok"}, "formation": "4-4-1-1", "shootsOnTarget": 2, "possession": 48.73, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 50.0, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Lechia Gdańsk"}, "formation": "4-1-4-1", "shootsOnTarget": 2, "possession": 51.27, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 50.0, "goals_lost": 1}}

View File

@ -1 +1 @@
{"result": 0, "matchDate": "13-09-2019", "teamsMatchStatistics1": {"team": {"name": "Jagiellonia Białystok"}, "formation": "4-4-2", "shootsOnTarget": 0, "possession": 53.71, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Legia Warszawa"}, "formation": "4-4-1-1", "shootsOnTarget": 2, "possession": 46.29, "goals": 0, "red_cards": 1, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 100, "goals_lost": 0}}
{"result": 0, "date": "13-09-2019", "teamsMatchStatistics1": {"team": {"name": "Jagiellonia Białystok"}, "formation": "4-4-2", "shootsOnTarget": 0, "possession": 53.71, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Legia Warszawa"}, "formation": "4-4-1-1", "shootsOnTarget": 2, "possession": 46.29, "goals": 0, "red_cards": 1, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 100, "goals_lost": 0}}

View File

@ -1 +1 @@
{"result": 1, "matchDate": "05-07-2019", "teamsMatchStatistics1": {"team": {"name": "Jagiellonia Białystok"}, "formation": "4-4-2", "shootsOnTarget": 2, "possession": 43.98, "goals": 0, "red_cards": 1, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 0.0, "goals_lost": 5}, "teamsMatchStatistics2": {"team": {"name": "Olympiakos Piraeus"}, "formation": "4-4-2", "shootsOnTarget": 5, "possession": 56.02, "goals": 5, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 100, "goals_lost": 0}}
{"result": 1, "date": "05-07-2019", "teamsMatchStatistics1": {"team": {"name": "Jagiellonia Białystok"}, "formation": "4-4-2", "shootsOnTarget": 2, "possession": 43.98, "goals": 0, "red_cards": 1, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 0.0, "goals_lost": 5}, "teamsMatchStatistics2": {"team": {"name": "Olympiakos Piraeus"}, "formation": "4-4-2", "shootsOnTarget": 5, "possession": 56.02, "goals": 5, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 100, "goals_lost": 0}}

View File

@ -1 +1 @@
{"result": 2, "matchDate": "08-11-2019", "teamsMatchStatistics1": {"team": {"name": "Jagiellonia Białystok"}, "formation": "4-4-1-1", "shootsOnTarget": 2, "possession": 44.88, "goals": 1, "red_cards": 1, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 40.0, "goals_lost": 3}, "teamsMatchStatistics2": {"team": {"name": "Piast Gliwice"}, "formation": "4-4-2", "shootsOnTarget": 5, "possession": 55.12, "goals": 3, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 50.0, "goals_lost": 1}}
{"result": 2, "date": "08-11-2019", "teamsMatchStatistics1": {"team": {"name": "Jagiellonia Białystok"}, "formation": "4-4-1-1", "shootsOnTarget": 2, "possession": 44.88, "goals": 1, "red_cards": 1, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 40.0, "goals_lost": 3}, "teamsMatchStatistics2": {"team": {"name": "Piast Gliwice"}, "formation": "4-4-2", "shootsOnTarget": 5, "possession": 55.12, "goals": 3, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 50.0, "goals_lost": 1}}

View File

@ -1 +1 @@
{"result": 1, "matchDate": "29-09-2019", "teamsMatchStatistics1": {"team": {"name": "Jagiellonia Białystok"}, "formation": "4-2-3-1", "shootsOnTarget": 7, "possession": 50.05, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 50.0, "goals_lost": 3}, "teamsMatchStatistics2": {"team": {"name": "Pogoń Szczecin"}, "formation": "4-1-4-1", "shootsOnTarget": 6, "possession": 49.95, "goals": 3, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 1, "goalkeeperSavesPercent": 71.42857142857143, "goals_lost": 2}}
{"result": 1, "date": "29-09-2019", "teamsMatchStatistics1": {"team": {"name": "Jagiellonia Białystok"}, "formation": "4-2-3-1", "shootsOnTarget": 7, "possession": 50.05, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 50.0, "goals_lost": 3}, "teamsMatchStatistics2": {"team": {"name": "Pogoń Szczecin"}, "formation": "4-1-4-1", "shootsOnTarget": 6, "possession": 49.95, "goals": 3, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 1, "goalkeeperSavesPercent": 71.42857142857143, "goals_lost": 2}}

View File

@ -1 +1 @@
{"result": 1, "matchDate": "27-07-2019", "teamsMatchStatistics1": {"team": {"name": "Jagiellonia Białystok"}, "formation": "4-4-2", "shootsOnTarget": 6, "possession": 44.43, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 83.33333333333333, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Raków Częstochowa"}, "formation": "3-4-3", "shootsOnTarget": 6, "possession": 55.57, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}}
{"result": 1, "date": "27-07-2019", "teamsMatchStatistics1": {"team": {"name": "Jagiellonia Białystok"}, "formation": "4-4-2", "shootsOnTarget": 6, "possession": 44.43, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 83.33333333333333, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Raków Częstochowa"}, "formation": "3-4-3", "shootsOnTarget": 6, "possession": 55.57, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}}

View File

@ -1 +1 @@
{"result": 2, "matchDate": "23-08-2019", "teamsMatchStatistics1": {"team": {"name": "Jagiellonia Białystok"}, "formation": "4-2-3-1", "shootsOnTarget": 4, "possession": 35.23, "goals": 3, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 71.42857142857143, "goals_lost": 2}, "teamsMatchStatistics2": {"team": {"name": "Wisła Kraków"}, "formation": "4-4-2", "shootsOnTarget": 7, "possession": 64.77, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 40.0, "goals_lost": 3}}
{"result": 2, "date": "23-08-2019", "teamsMatchStatistics1": {"team": {"name": "Jagiellonia Białystok"}, "formation": "4-2-3-1", "shootsOnTarget": 4, "possession": 35.23, "goals": 3, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 71.42857142857143, "goals_lost": 2}, "teamsMatchStatistics2": {"team": {"name": "Wisła Kraków"}, "formation": "4-4-2", "shootsOnTarget": 7, "possession": 64.77, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 40.0, "goals_lost": 3}}

View File

@ -1 +1 @@
{"result": 2, "matchDate": "27-10-2019", "teamsMatchStatistics1": {"team": {"name": "Jagiellonia Białystok"}, "formation": "4-4-1-1", "shootsOnTarget": 5, "possession": 61.94, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 40.0, "goals_lost": 3}, "teamsMatchStatistics2": {"team": {"name": "Wisła Płock"}, "formation": "4-4-1-1", "shootsOnTarget": 5, "possession": 38.06, "goals": 3, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 80.0, "goals_lost": 1}}
{"result": 2, "date": "27-10-2019", "teamsMatchStatistics1": {"team": {"name": "Jagiellonia Białystok"}, "formation": "4-4-1-1", "shootsOnTarget": 5, "possession": 61.94, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 40.0, "goals_lost": 3}, "teamsMatchStatistics2": {"team": {"name": "Wisła Płock"}, "formation": "4-4-1-1", "shootsOnTarget": 5, "possession": 38.06, "goals": 3, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 80.0, "goals_lost": 1}}

View File

@ -1 +1 @@
{"result": 0, "matchDate": "02-08-2019", "teamsMatchStatistics1": {"team": {"name": "Jagiellonia Białystok"}, "formation": "4-4-1-1", "shootsOnTarget": 7, "possession": 57.11, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 71.42857142857143, "goals_lost": 2}, "teamsMatchStatistics2": {"team": {"name": "Zagłębie Lubin"}, "formation": "4-1-4-1", "shootsOnTarget": 6, "possession": 42.89, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 71.42857142857143, "goals_lost": 2}}
{"result": 0, "date": "02-08-2019", "teamsMatchStatistics1": {"team": {"name": "Jagiellonia Białystok"}, "formation": "4-4-1-1", "shootsOnTarget": 7, "possession": 57.11, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 71.42857142857143, "goals_lost": 2}, "teamsMatchStatistics2": {"team": {"name": "Zagłębie Lubin"}, "formation": "4-1-4-1", "shootsOnTarget": 6, "possession": 42.89, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 71.42857142857143, "goals_lost": 2}}

View File

@ -1 +1 @@
{"result": 2, "matchDate": "03-11-2019", "teamsMatchStatistics1": {"team": {"name": "Jagiellonia Białystok"}, "formation": "4-2-3-1", "shootsOnTarget": 4, "possession": 45.3, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 6, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Łódzki KS"}, "formation": "4-2-3-1", "shootsOnTarget": 6, "possession": 54.7, "goals": 0, "red_cards": 1, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 100, "goals_lost": 2}}
{"result": 2, "date": "03-11-2019", "teamsMatchStatistics1": {"team": {"name": "Jagiellonia Białystok"}, "formation": "4-2-3-1", "shootsOnTarget": 4, "possession": 45.3, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 6, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Łódzki KS"}, "formation": "4-2-3-1", "shootsOnTarget": 6, "possession": 54.7, "goals": 0, "red_cards": 1, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 100, "goals_lost": 2}}

View File

@ -1 +1 @@
{"result": 0, "matchDate": "04-10-2019", "teamsMatchStatistics1": {"team": {"name": "Jagiellonia Białystok"}, "formation": "4-2-3-1", "shootsOnTarget": 7, "possession": 40.33, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 4, "penalties": 0, "goalkeeperSavesPercent": 66.66666666666667, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Śląsk Wrocław"}, "formation": "4-2-3-1", "shootsOnTarget": 3, "possession": 59.67, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 3, "penalties": 0, "goalkeeperSavesPercent": 85.71428571428571, "goals_lost": 1}}
{"result": 0, "date": "04-10-2019", "teamsMatchStatistics1": {"team": {"name": "Jagiellonia Białystok"}, "formation": "4-2-3-1", "shootsOnTarget": 7, "possession": 40.33, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 4, "penalties": 0, "goalkeeperSavesPercent": 66.66666666666667, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Śląsk Wrocław"}, "formation": "4-2-3-1", "shootsOnTarget": 3, "possession": 59.67, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 3, "penalties": 0, "goalkeeperSavesPercent": 85.71428571428571, "goals_lost": 1}}

View File

@ -1 +1 @@
{"result": 0, "matchDate": "02-08-2019", "teamsMatchStatistics1": {"team": {"name": "Korona Kielce"}, "formation": "4-4-2", "shootsOnTarget": 3, "possession": 51.43, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 50.0, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Arka Gdynia"}, "formation": "4-2-3-1", "shootsOnTarget": 2, "possession": 48.57, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 66.66666666666667, "goals_lost": 1}}
{"result": 0, "date": "02-08-2019", "teamsMatchStatistics1": {"team": {"name": "Korona Kielce"}, "formation": "4-4-2", "shootsOnTarget": 3, "possession": 51.43, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 50.0, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Arka Gdynia"}, "formation": "4-2-3-1", "shootsOnTarget": 2, "possession": 48.57, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 66.66666666666667, "goals_lost": 1}}

View File

@ -1 +1 @@
{"result": 2, "matchDate": "11-08-2019", "teamsMatchStatistics1": {"team": {"name": "Korona Kielce"}, "formation": "4-4-1-1", "shootsOnTarget": 3, "possession": 53.46, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 3, "penalties": 0, "goalkeeperSavesPercent": 80.0, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Cracovia Kraków"}, "formation": "4-1-4-1", "shootsOnTarget": 5, "possession": 46.54, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}}
{"result": 2, "date": "11-08-2019", "teamsMatchStatistics1": {"team": {"name": "Korona Kielce"}, "formation": "4-4-1-1", "shootsOnTarget": 3, "possession": 53.46, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 3, "penalties": 0, "goalkeeperSavesPercent": 80.0, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Cracovia Kraków"}, "formation": "4-1-4-1", "shootsOnTarget": 5, "possession": 46.54, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}}

View File

@ -1 +1 @@
{"result": 2, "matchDate": "25-08-2019", "teamsMatchStatistics1": {"team": {"name": "Korona Kielce"}, "formation": "4-4-2", "shootsOnTarget": 0, "possession": 55.06, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 70.0, "goals_lost": 3}, "teamsMatchStatistics2": {"team": {"name": "Górnik Zabrze"}, "formation": "4-4-1-1", "shootsOnTarget": 10, "possession": 44.94, "goals": 3, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 1, "goalkeeperSavesPercent": 100, "goals_lost": 0}}
{"result": 2, "date": "25-08-2019", "teamsMatchStatistics1": {"team": {"name": "Korona Kielce"}, "formation": "4-4-2", "shootsOnTarget": 0, "possession": 55.06, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 70.0, "goals_lost": 3}, "teamsMatchStatistics2": {"team": {"name": "Górnik Zabrze"}, "formation": "4-4-1-1", "shootsOnTarget": 10, "possession": 44.94, "goals": 3, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 1, "goalkeeperSavesPercent": 100, "goals_lost": 0}}

View File

@ -1 +1 @@
{"result": 1, "matchDate": "30-08-2019", "teamsMatchStatistics1": {"team": {"name": "Korona Kielce"}, "formation": "4-4-2", "shootsOnTarget": 0, "possession": 55.57, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 33.333333333333336, "goals_lost": 2}, "teamsMatchStatistics2": {"team": {"name": "Jagiellonia Białystok"}, "formation": "4-4-2", "shootsOnTarget": 3, "possession": 44.43, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}}
{"result": 1, "date": "30-08-2019", "teamsMatchStatistics1": {"team": {"name": "Korona Kielce"}, "formation": "4-4-2", "shootsOnTarget": 0, "possession": 55.57, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 33.333333333333336, "goals_lost": 2}, "teamsMatchStatistics2": {"team": {"name": "Jagiellonia Białystok"}, "formation": "4-4-2", "shootsOnTarget": 3, "possession": 44.43, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}}

View File

@ -1 +1 @@
{"result": 0, "matchDate": "10-11-2019", "teamsMatchStatistics1": {"team": {"name": "Korona Kielce"}, "formation": "4-4-2", "shootsOnTarget": 2, "possession": 35.5, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Lech Poznań"}, "formation": "4-4-1-1", "shootsOnTarget": 5, "possession": 64.5, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 3, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}}
{"result": 0, "date": "10-11-2019", "teamsMatchStatistics1": {"team": {"name": "Korona Kielce"}, "formation": "4-4-2", "shootsOnTarget": 2, "possession": 35.5, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Lech Poznań"}, "formation": "4-4-1-1", "shootsOnTarget": 5, "possession": 64.5, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 3, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}}

View File

@ -1 +1 @@
{"result": 2, "matchDate": "21-09-2019", "teamsMatchStatistics1": {"team": {"name": "Korona Kielce"}, "formation": "4-1-4-1", "shootsOnTarget": 3, "possession": 32.77, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 50.0, "goals_lost": 2}, "teamsMatchStatistics2": {"team": {"name": "Lechia Gdańsk"}, "formation": "4-3-3", "shootsOnTarget": 4, "possession": 67.23, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}}
{"result": 2, "date": "21-09-2019", "teamsMatchStatistics1": {"team": {"name": "Korona Kielce"}, "formation": "4-1-4-1", "shootsOnTarget": 3, "possession": 32.77, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 50.0, "goals_lost": 2}, "teamsMatchStatistics2": {"team": {"name": "Lechia Gdańsk"}, "formation": "4-3-3", "shootsOnTarget": 4, "possession": 67.23, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}}

View File

@ -1 +1 @@
{"result": 1, "matchDate": "28-07-2019", "teamsMatchStatistics1": {"team": {"name": "Korona Kielce"}, "formation": "4-4-2", "shootsOnTarget": 4, "possession": 51.22, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 4, "penalties": 0, "goalkeeperSavesPercent": 50.0, "goals_lost": 2}, "teamsMatchStatistics2": {"team": {"name": "Legia Warszawa"}, "formation": "4-4-2", "shootsOnTarget": 4, "possession": 48.78, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 3, "penalties": 0, "goalkeeperSavesPercent": 75.0, "goals_lost": 1}}
{"result": 1, "date": "28-07-2019", "teamsMatchStatistics1": {"team": {"name": "Korona Kielce"}, "formation": "4-4-2", "shootsOnTarget": 4, "possession": 51.22, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 4, "penalties": 0, "goalkeeperSavesPercent": 50.0, "goals_lost": 2}, "teamsMatchStatistics2": {"team": {"name": "Legia Warszawa"}, "formation": "4-4-2", "shootsOnTarget": 4, "possession": 48.78, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 3, "penalties": 0, "goalkeeperSavesPercent": 75.0, "goals_lost": 1}}

View File

@ -1 +1 @@
{"result": 2, "matchDate": "26-10-2019", "teamsMatchStatistics1": {"team": {"name": "Korona Kielce"}, "formation": "4-4-2", "shootsOnTarget": 4, "possession": 52.55, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 4, "penalties": 0, "goalkeeperSavesPercent": 80.0, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Piast Gliwice"}, "formation": "4-4-2", "shootsOnTarget": 5, "possession": 47.45, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}}
{"result": 2, "date": "26-10-2019", "teamsMatchStatistics1": {"team": {"name": "Korona Kielce"}, "formation": "4-4-2", "shootsOnTarget": 4, "possession": 52.55, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 4, "penalties": 0, "goalkeeperSavesPercent": 80.0, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Piast Gliwice"}, "formation": "4-4-2", "shootsOnTarget": 5, "possession": 47.45, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}}

View File

@ -1 +1 @@
{"result": 1, "matchDate": "19-08-2019", "teamsMatchStatistics1": {"team": {"name": "Korona Kielce"}, "formation": "3-4-1-2", "shootsOnTarget": 4, "possession": 58.6, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 66.66666666666667, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Pogoń Szczecin"}, "formation": "4-1-4-1", "shootsOnTarget": 3, "possession": 41.4, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}}
{"result": 1, "date": "19-08-2019", "teamsMatchStatistics1": {"team": {"name": "Korona Kielce"}, "formation": "3-4-1-2", "shootsOnTarget": 4, "possession": 58.6, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 66.66666666666667, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Pogoń Szczecin"}, "formation": "4-1-4-1", "shootsOnTarget": 3, "possession": 41.4, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}}

View File

@ -1 +1 @@
{"result": 1, "matchDate": "20-07-2019", "teamsMatchStatistics1": {"team": {"name": "Korona Kielce"}, "formation": "4-2-2-2", "shootsOnTarget": 10, "possession": 42.22, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 3, "penalties": 1, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Raków Częstochowa"}, "formation": "3-4-2-1", "shootsOnTarget": 1, "possession": 57.78, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 90.0, "goals_lost": 1}}
{"result": 1, "date": "20-07-2019", "teamsMatchStatistics1": {"team": {"name": "Korona Kielce"}, "formation": "4-2-2-2", "shootsOnTarget": 10, "possession": 42.22, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 3, "penalties": 1, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Raków Częstochowa"}, "formation": "3-4-2-1", "shootsOnTarget": 1, "possession": 57.78, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 90.0, "goals_lost": 1}}

View File

@ -1 +1 @@
{"result": 0, "matchDate": "14-09-2019", "teamsMatchStatistics1": {"team": {"name": "Korona Kielce"}, "formation": "4-4-2", "shootsOnTarget": 4, "possession": 53.04, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 75.0, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Wisła Kraków"}, "formation": "4-4-1-1", "shootsOnTarget": 4, "possession": 46.96, "goals": 1, "red_cards": 1, "penaltyAreaEntries": 2, "penalties": 1, "goalkeeperSavesPercent": 75.0, "goals_lost": 1}}
{"result": 0, "date": "14-09-2019", "teamsMatchStatistics1": {"team": {"name": "Korona Kielce"}, "formation": "4-4-2", "shootsOnTarget": 4, "possession": 53.04, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 75.0, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Wisła Kraków"}, "formation": "4-4-1-1", "shootsOnTarget": 4, "possession": 46.96, "goals": 1, "red_cards": 1, "penaltyAreaEntries": 2, "penalties": 1, "goalkeeperSavesPercent": 75.0, "goals_lost": 1}}

View File

@ -1 +1 @@
{"result": 1, "matchDate": "19-10-2019", "teamsMatchStatistics1": {"team": {"name": "Korona Kielce"}, "formation": "4-4-2", "shootsOnTarget": 1, "possession": 58.93, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 75.0, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Wisła Płock"}, "formation": "4-1-4-1", "shootsOnTarget": 3, "possession": 41.07, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}}
{"result": 1, "date": "19-10-2019", "teamsMatchStatistics1": {"team": {"name": "Korona Kielce"}, "formation": "4-4-2", "shootsOnTarget": 1, "possession": 58.93, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 75.0, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Wisła Płock"}, "formation": "4-1-4-1", "shootsOnTarget": 3, "possession": 41.07, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}}

View File

@ -1 +1 @@
{"result": 2, "matchDate": "02-11-2019", "teamsMatchStatistics1": {"team": {"name": "Korona Kielce"}, "formation": "4-4-2", "shootsOnTarget": 5, "possession": 31.66, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 4, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Zagłębie Lubin"}, "formation": "4-2-3-1", "shootsOnTarget": 1, "possession": 68.34, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 83.33333333333333, "goals_lost": 1}}
{"result": 2, "date": "02-11-2019", "teamsMatchStatistics1": {"team": {"name": "Korona Kielce"}, "formation": "4-4-2", "shootsOnTarget": 5, "possession": 31.66, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 4, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Zagłębie Lubin"}, "formation": "4-2-3-1", "shootsOnTarget": 1, "possession": 68.34, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 83.33333333333333, "goals_lost": 1}}

View File

@ -1 +1 @@
{"result": 2, "matchDate": "06-10-2019", "teamsMatchStatistics1": {"team": {"name": "Korona Kielce"}, "formation": "5-4-1", "shootsOnTarget": 3, "possession": 42.3, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 1, "goalkeeperSavesPercent": 50.0, "goals_lost": 4}, "teamsMatchStatistics2": {"team": {"name": "Łódzki KS"}, "formation": "4-2-3-1", "shootsOnTarget": 8, "possession": 57.7, "goals": 4, "red_cards": 0, "penaltyAreaEntries": 5, "penalties": 0, "goalkeeperSavesPercent": 100, "goals_lost": 1}}
{"result": 2, "date": "06-10-2019", "teamsMatchStatistics1": {"team": {"name": "Korona Kielce"}, "formation": "5-4-1", "shootsOnTarget": 3, "possession": 42.3, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 1, "goalkeeperSavesPercent": 50.0, "goals_lost": 4}, "teamsMatchStatistics2": {"team": {"name": "Łódzki KS"}, "formation": "4-2-3-1", "shootsOnTarget": 8, "possession": 57.7, "goals": 4, "red_cards": 0, "penaltyAreaEntries": 5, "penalties": 0, "goalkeeperSavesPercent": 100, "goals_lost": 1}}

View File

@ -1 +1 @@
{"result": 2, "matchDate": "27-09-2019", "teamsMatchStatistics1": {"team": {"name": "Korona Kielce"}, "formation": "4-1-4-1", "shootsOnTarget": 4, "possession": 47.57, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Śląsk Wrocław"}, "formation": "4-4-1-1", "shootsOnTarget": 8, "possession": 52.43, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 75.0, "goals_lost": 1}}
{"result": 2, "date": "27-09-2019", "teamsMatchStatistics1": {"team": {"name": "Korona Kielce"}, "formation": "4-1-4-1", "shootsOnTarget": 4, "possession": 47.57, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Śląsk Wrocław"}, "formation": "4-4-1-1", "shootsOnTarget": 8, "possession": 52.43, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 75.0, "goals_lost": 1}}

View File

@ -1 +1 @@
{"result": 0, "matchDate": "17-08-2019", "teamsMatchStatistics1": {"team": {"name": "Lech Poznań"}, "formation": "4-2-3-1", "shootsOnTarget": 7, "possession": 59.63, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 4, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Arka Gdynia"}, "formation": "4-2-3-1", "shootsOnTarget": 4, "possession": 40.37, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}}
{"result": 0, "date": "17-08-2019", "teamsMatchStatistics1": {"team": {"name": "Lech Poznań"}, "formation": "4-2-3-1", "shootsOnTarget": 7, "possession": 59.63, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 4, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Arka Gdynia"}, "formation": "4-2-3-1", "shootsOnTarget": 4, "possession": 40.37, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}}

View File

@ -1 +1 @@
{"result": 1, "matchDate": "28-09-2019", "teamsMatchStatistics1": {"team": {"name": "Lech Poznań"}, "formation": "4-2-3-1", "shootsOnTarget": 5, "possession": 50.5, "goals": 3, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 80.0, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Górnik Zabrze"}, "formation": "4-2-3-1", "shootsOnTarget": 5, "possession": 49.5, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 4, "penalties": 0, "goalkeeperSavesPercent": 40.0, "goals_lost": 3}}
{"result": 1, "date": "28-09-2019", "teamsMatchStatistics1": {"team": {"name": "Lech Poznań"}, "formation": "4-2-3-1", "shootsOnTarget": 5, "possession": 50.5, "goals": 3, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 80.0, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Górnik Zabrze"}, "formation": "4-2-3-1", "shootsOnTarget": 5, "possession": 49.5, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 4, "penalties": 0, "goalkeeperSavesPercent": 40.0, "goals_lost": 3}}

View File

@ -1 +1 @@
{"result": 0, "matchDate": "19-12-2019", "teamsMatchStatistics1": {"team": {"name": "Lech Poznań"}, "formation": "4-4-1-1", "shootsOnTarget": 8, "possession": 72.01, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 6, "penalties": 0, "goalkeeperSavesPercent": 66.66666666666667, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Arka Gdynia"}, "formation": "4-1-4-1", "shootsOnTarget": 2, "possession": 27.99, "goals": 1, "red_cards": 1, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 87.5, "goals_lost": 1}}
{"result": 0, "date": "19-12-2019", "teamsMatchStatistics1": {"team": {"name": "Lech Poznań"}, "formation": "4-4-1-1", "shootsOnTarget": 8, "possession": 72.01, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 6, "penalties": 0, "goalkeeperSavesPercent": 66.66666666666667, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Arka Gdynia"}, "formation": "4-1-4-1", "shootsOnTarget": 2, "possession": 27.99, "goals": 1, "red_cards": 1, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 87.5, "goals_lost": 1}}

View File

@ -1 +1 @@
{"result": 1, "matchDate": "01-09-2019", "teamsMatchStatistics1": {"team": {"name": "Lech Poznań"}, "formation": "4-4-1-1", "shootsOnTarget": 2, "possession": 57.22, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 3, "penalties": 0, "goalkeeperSavesPercent": 75.0, "goals_lost": 2}, "teamsMatchStatistics2": {"team": {"name": "Cracovia Kraków"}, "formation": "4-1-4-1", "shootsOnTarget": 8, "possession": 42.78, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 4, "penalties": 0, "goalkeeperSavesPercent": 50.0, "goals_lost": 1}}
{"result": 1, "date": "01-09-2019", "teamsMatchStatistics1": {"team": {"name": "Lech Poznań"}, "formation": "4-4-1-1", "shootsOnTarget": 2, "possession": 57.22, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 3, "penalties": 0, "goalkeeperSavesPercent": 75.0, "goals_lost": 2}, "teamsMatchStatistics2": {"team": {"name": "Cracovia Kraków"}, "formation": "4-1-4-1", "shootsOnTarget": 8, "possession": 42.78, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 4, "penalties": 0, "goalkeeperSavesPercent": 50.0, "goals_lost": 1}}

View File

@ -1 +1 @@
{"result": 0, "matchDate": "20-09-2019", "teamsMatchStatistics1": {"team": {"name": "Lech Poznań"}, "formation": "4-4-1-1", "shootsOnTarget": 3, "possession": 46.71, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 1, "goalkeeperSavesPercent": 50.0, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Jagiellonia Białystok"}, "formation": "4-4-1-1", "shootsOnTarget": 2, "possession": 53.29, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 66.66666666666667, "goals_lost": 1}}
{"result": 0, "date": "20-09-2019", "teamsMatchStatistics1": {"team": {"name": "Lech Poznań"}, "formation": "4-4-1-1", "shootsOnTarget": 3, "possession": 46.71, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 1, "goalkeeperSavesPercent": 50.0, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Jagiellonia Białystok"}, "formation": "4-4-1-1", "shootsOnTarget": 2, "possession": 53.29, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 66.66666666666667, "goals_lost": 1}}

View File

@ -1 +1 @@
{"result": 0, "matchDate": "10-11-2019", "teamsMatchStatistics1": {"team": {"name": "Lech Poznań"}, "formation": "4-4-1-1", "shootsOnTarget": 5, "possession": 64.5, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 3, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Korona Kielce"}, "formation": "4-4-2", "shootsOnTarget": 2, "possession": 35.5, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}}
{"result": 0, "date": "10-11-2019", "teamsMatchStatistics1": {"team": {"name": "Lech Poznań"}, "formation": "4-4-1-1", "shootsOnTarget": 5, "possession": 64.5, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 3, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Korona Kielce"}, "formation": "4-4-2", "shootsOnTarget": 2, "possession": 35.5, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}}

View File

@ -1 +1 @@
{"result": 2, "matchDate": "06-07-2019", "teamsMatchStatistics1": {"team": {"name": "Lech Poznań"}, "formation": "4-4-2", "shootsOnTarget": 6, "possession": 50.23, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 1, "goalkeeperSavesPercent": 75.0, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Midtjylland"}, "formation": "3-5-2", "shootsOnTarget": 4, "possession": 49.77, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 5, "penalties": 0, "goalkeeperSavesPercent": 100, "goals_lost": 2}}
{"result": 2, "date": "06-07-2019", "teamsMatchStatistics1": {"team": {"name": "Lech Poznań"}, "formation": "4-4-2", "shootsOnTarget": 6, "possession": 50.23, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 1, "goalkeeperSavesPercent": 75.0, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Midtjylland"}, "formation": "3-5-2", "shootsOnTarget": 4, "possession": 49.77, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 5, "penalties": 0, "goalkeeperSavesPercent": 100, "goals_lost": 2}}

View File

@ -1 +1 @@
{"result": 2, "matchDate": "22-11-2019", "teamsMatchStatistics1": {"team": {"name": "Lech Poznań"}, "formation": "4-4-1-1", "shootsOnTarget": 5, "possession": 52.91, "goals": 3, "red_cards": 0, "penaltyAreaEntries": 5, "penalties": 1, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Piast Gliwice"}, "formation": "4-4-2", "shootsOnTarget": 3, "possession": 47.09, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 40.0, "goals_lost": 3}}
{"result": 2, "date": "22-11-2019", "teamsMatchStatistics1": {"team": {"name": "Lech Poznań"}, "formation": "4-4-1-1", "shootsOnTarget": 5, "possession": 52.91, "goals": 3, "red_cards": 0, "penaltyAreaEntries": 5, "penalties": 1, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Piast Gliwice"}, "formation": "4-4-2", "shootsOnTarget": 3, "possession": 47.09, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 40.0, "goals_lost": 3}}

View File

@ -1 +1 @@
{"result": 2, "matchDate": "09-07-2019", "teamsMatchStatistics1": {"team": {"name": "Lech Poznań"}, "formation": "4-2-3-1", "shootsOnTarget": 5, "possession": 60.45, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Vitesse"}, "formation": "4-4-2", "shootsOnTarget": 1, "possession": 39.55, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 100, "goals_lost": 2}}
{"result": 2, "date": "09-07-2019", "teamsMatchStatistics1": {"team": {"name": "Lech Poznań"}, "formation": "4-2-3-1", "shootsOnTarget": 5, "possession": 60.45, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Vitesse"}, "formation": "4-4-2", "shootsOnTarget": 1, "possession": 39.55, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 100, "goals_lost": 2}}

View File

@ -1 +1 @@
{"result": 2, "matchDate": "05-10-2019", "teamsMatchStatistics1": {"team": {"name": "Lech Poznań"}, "formation": "4-4-1-1", "shootsOnTarget": 9, "possession": 46.82, "goals": 4, "red_cards": 0, "penaltyAreaEntries": 4, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Wisła Kraków"}, "formation": "4-2-3-1", "shootsOnTarget": 2, "possession": 53.18, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 55.55555555555556, "goals_lost": 4}}
{"result": 2, "date": "05-10-2019", "teamsMatchStatistics1": {"team": {"name": "Lech Poznań"}, "formation": "4-4-1-1", "shootsOnTarget": 9, "possession": 46.82, "goals": 4, "red_cards": 0, "penaltyAreaEntries": 4, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Wisła Kraków"}, "formation": "4-2-3-1", "shootsOnTarget": 2, "possession": 53.18, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 55.55555555555556, "goals_lost": 4}}

View File

@ -1 +1 @@
{"result": 2, "matchDate": "26-07-2019", "teamsMatchStatistics1": {"team": {"name": "Lech Poznań"}, "formation": "4-4-1-1", "shootsOnTarget": 6, "possession": 59.15, "goals": 4, "red_cards": 1, "penaltyAreaEntries": 5, "penalties": 1, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Wisła Płock"}, "formation": "4-1-4-1", "shootsOnTarget": 4, "possession": 40.85, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 33.333333333333336, "goals_lost": 4}}
{"result": 2, "date": "26-07-2019", "teamsMatchStatistics1": {"team": {"name": "Lech Poznań"}, "formation": "4-4-1-1", "shootsOnTarget": 6, "possession": 59.15, "goals": 4, "red_cards": 1, "penaltyAreaEntries": 5, "penalties": 1, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Wisła Płock"}, "formation": "4-1-4-1", "shootsOnTarget": 4, "possession": 40.85, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 33.333333333333336, "goals_lost": 4}}

Some files were not shown because too many files have changed in this diff Show More