league table
This commit is contained in:
parent
28655cb674
commit
b375d70bbc
@ -0,0 +1,85 @@
|
||||
package com.resultprediction.polishekstraklasa.Predictions.model.match;
|
||||
|
||||
import com.resultprediction.polishekstraklasa.Predictions.model.team.Team;
|
||||
import lombok.Getter;
|
||||
|
||||
import java.util.*;
|
||||
import static java.util.Comparator.comparing;
|
||||
|
||||
public class LeagueTable {
|
||||
|
||||
@Getter
|
||||
List<LeagueTeamScore> leagueTeamScores;
|
||||
|
||||
public LeagueTable(List<Match> matches) {
|
||||
this.leagueTeamScores = new ArrayList<>();
|
||||
for (Match match : matches){
|
||||
if (match.getResult() == 0){
|
||||
Team team1 = match.getTeamsMatchStatistics1().getTeam();
|
||||
Team team2 = match.getTeamsMatchStatistics2().getTeam();
|
||||
boolean team1found = false;
|
||||
boolean team2found = false;
|
||||
for (LeagueTeamScore leagueTeamScore : leagueTeamScores){
|
||||
if (leagueTeamScore.getTeam().equals(team1)){
|
||||
team1found = true;
|
||||
leagueTeamScore.setScore(leagueTeamScore.getScore() + 1);
|
||||
}
|
||||
else if (leagueTeamScore.getTeam().equals(team2)){
|
||||
team2found = true;
|
||||
leagueTeamScore.setScore(leagueTeamScore.getScore() + 1);
|
||||
}
|
||||
}
|
||||
if (!team1found){
|
||||
leagueTeamScores.add(new LeagueTeamScore(team1, 1));
|
||||
}
|
||||
if (!team2found){
|
||||
leagueTeamScores.add(new LeagueTeamScore(team2, 1));
|
||||
}
|
||||
}
|
||||
else if (match.getResult() == 1){
|
||||
Team team1 = match.getTeamsMatchStatistics1().getTeam();
|
||||
Team team2 = match.getTeamsMatchStatistics2().getTeam();
|
||||
boolean team1found = false;
|
||||
boolean team2found = false;
|
||||
for (LeagueTeamScore leagueTeamScore : leagueTeamScores){
|
||||
if (leagueTeamScore.getTeam().equals(team1)){
|
||||
team1found = true;
|
||||
leagueTeamScore.setScore(leagueTeamScore.getScore() + 3);
|
||||
}
|
||||
else if (leagueTeamScore.getTeam().equals(team2)){
|
||||
team2found = true;
|
||||
}
|
||||
}
|
||||
if (!team1found){
|
||||
leagueTeamScores.add(new LeagueTeamScore(team1, 3));
|
||||
}
|
||||
if (!team2found){
|
||||
leagueTeamScores.add(new LeagueTeamScore(team2, 0));
|
||||
}
|
||||
}
|
||||
else if (match.getResult() == 2){
|
||||
Team team1 = match.getTeamsMatchStatistics1().getTeam();
|
||||
Team team2 = match.getTeamsMatchStatistics2().getTeam();
|
||||
boolean team1found = false;
|
||||
boolean team2found = false;
|
||||
for (LeagueTeamScore leagueTeamScore : leagueTeamScores){
|
||||
if (leagueTeamScore.getTeam().equals(team1)){
|
||||
team1found = true;
|
||||
}
|
||||
else if (leagueTeamScore.getTeam().equals(team2)){
|
||||
team2found = true;
|
||||
leagueTeamScore.setScore(leagueTeamScore.getScore() + 3);
|
||||
}
|
||||
}
|
||||
if (!team1found){
|
||||
leagueTeamScores.add(new LeagueTeamScore(team1, 0));
|
||||
}
|
||||
if (!team2found){
|
||||
leagueTeamScores.add(new LeagueTeamScore(team2, 3));
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
leagueTeamScores.sort(comparing(LeagueTeamScore::getScore));
|
||||
}
|
||||
}
|
@ -0,0 +1,21 @@
|
||||
package com.resultprediction.polishekstraklasa.Predictions.model.match;
|
||||
|
||||
import com.resultprediction.polishekstraklasa.Predictions.model.team.Team;
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Getter;
|
||||
import lombok.NoArgsConstructor;
|
||||
import lombok.Setter;
|
||||
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor
|
||||
public class LeagueTeamScore {
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
Team team;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
int score;
|
||||
|
||||
}
|
@ -15,4 +15,8 @@ public interface MatchRepository extends JpaRepository<Match, Long> {
|
||||
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);
|
||||
|
||||
List<Match> findTop10ByTeamsMatchStatistics1TeamAndTeamsMatchStatistics2TeamAndDateBeforeOrTeamsMatchStatistics1TeamAndTeamsMatchStatistics2TeamAndDateBeforeOrderByDateDesc(Team team, Team enemy, Date actualMatchDate, Team enemy1, Team team1, Date actualMatchDate1);
|
||||
|
||||
List<Match> findAllByDateBeforeAndSeason(Date date, Integer season);
|
||||
}
|
||||
|
@ -4,6 +4,7 @@ import com.resultprediction.polishekstraklasa.Predictions.model.team.Team;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
@Service
|
||||
@ -14,20 +15,41 @@ public class PredictService {
|
||||
team form wartości [0,100]
|
||||
*/
|
||||
|
||||
//goalkeeper form///////////////
|
||||
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)
|
||||
////////////////////////////////
|
||||
|
||||
//formation form///////////////
|
||||
private int howManyPastForFormationAgainstForm = 3; //na ile ostatnich meczy patrzymy (maks 10 - można zwiększyć ale trzeba coś dorobić w kodzie)
|
||||
//////////////////////////////
|
||||
|
||||
//teamform///////////////////////
|
||||
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 shootsOnTargetValue = 2;
|
||||
private int possessionValue = 10;
|
||||
private int goalsValue = 10;
|
||||
private int goalsLostValue = 10;
|
||||
private int redCardsValue = 1;
|
||||
private int penaltyAreaEntriesValue = 1;
|
||||
private int penaltyAreaEntriesValue = 4;
|
||||
private int penaltiesValue = 1;
|
||||
private int lastMatchesResultValue = 1; private int howManyLastMatchesResult = 3;
|
||||
private int lastMatchesResultBetweenValue = 1; private int howManyLastMatchesResultBetween = 3;
|
||||
private int lastMatchesResultValue = 20; private int howManyLastMatchesResult = 3;
|
||||
private int lastMatchesResultBetweenValue = 10; private int howManyLastMatchesResultBetween = 3;
|
||||
/////////////////////////////
|
||||
|
||||
//jak bardzo licza się wyliczone poszczegolne wartosci dla ogolnego rozrachunku
|
||||
private int gooalkeeperFormValue = 1;
|
||||
private int formationFormValue = 1;
|
||||
private int teamFormValue = 20;
|
||||
|
||||
|
||||
//wlasnosci
|
||||
private int homeTeamBoost = 20; // w punktach [0,100]
|
||||
|
||||
private int downwardZoneDrawBoost = 10; // w punktach [0,100]
|
||||
|
||||
//private int winningStreakChanceForLoseValue = 1;
|
||||
|
||||
|
||||
|
||||
|
||||
@ -61,16 +83,17 @@ public class PredictService {
|
||||
}
|
||||
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());
|
||||
List<Match> teamFormMatches1 = matchRepository.findTop10ByTeamsMatchStatistics1TeamAndSeasonAndDateBeforeOrTeamsMatchStatistics2TeamAndSeasonAndDateBeforeOrderByDateDesc(team1, match.getSeason(), match.getDate(), team1, match.getSeason(), match.getDate());
|
||||
int teamForm1;
|
||||
if (howManyPastForFormationAgainstForm > formationMatchesTeam1.size()){
|
||||
teamForm1 = calculateFormationForm(formationMatchesTeam1, team1);
|
||||
if (howManyLastMatchesResult > teamFormMatches1.size()){
|
||||
teamForm1 = calculateTeamForm(teamFormMatches1, team1, match.getTeamsMatchStatistics2().getTeam(), match.getDate());
|
||||
} else {
|
||||
teamForm1 = calculateFormationForm(formationMatchesTeam1.subList(0, howManyPastForFormationAgainstForm - 1), team1);
|
||||
teamForm1 = calculateTeamForm(teamFormMatches1.subList(0, howManyLastMatchesResult - 1), team1, match.getTeamsMatchStatistics2().getTeam(), match.getDate());
|
||||
}
|
||||
System.out.println("Team1 Formation against form = " + teamForm1);
|
||||
|
||||
System.out.println("Team1 Form = " + teamForm1);
|
||||
|
||||
int calculatedTeam1Form = ((goalkeeperForm1 * gooalkeeperFormValue) + (formationAgainstForm1 * formationFormValue) + (teamForm1 * teamFormValue)) / (gooalkeeperFormValue + formationFormValue + teamFormValue);
|
||||
System.out.println("Team1 Calculated Form = " + calculatedTeam1Form);
|
||||
|
||||
|
||||
Team team2 = match.getTeamsMatchStatistics2().getTeam();
|
||||
@ -92,14 +115,156 @@ public class PredictService {
|
||||
formationAgainstForm2 = calculateFormationForm(formationMatchesTeam2.subList(0, howManyPastForFormationAgainstForm - 1), team2);
|
||||
}
|
||||
System.out.println("Team2 Formation against form = " + formationAgainstForm2);
|
||||
|
||||
|
||||
List<Match> teamFormMatches2 = matchRepository.findTop10ByTeamsMatchStatistics1TeamAndSeasonAndDateBeforeOrTeamsMatchStatistics2TeamAndSeasonAndDateBeforeOrderByDateDesc(team2, match.getSeason(), match.getDate(), team2, match.getSeason(), match.getDate());
|
||||
int teamForm2;
|
||||
if (howManyLastMatchesResult > teamFormMatches2.size()){
|
||||
teamForm2 = calculateTeamForm(teamFormMatches2, team2, team1, match.getDate());
|
||||
} else {
|
||||
teamForm2 = calculateTeamForm(teamFormMatches2.subList(0, howManyLastMatchesResult - 1), team2, team1, match.getDate());
|
||||
}
|
||||
System.out.println("Team2 Form = " + teamForm2);
|
||||
int calculatedTeam2Form = ((goalkeeperForm2 * gooalkeeperFormValue) + (formationAgainstForm2 * formationFormValue) + (teamForm2 * teamFormValue)) / (gooalkeeperFormValue + formationFormValue + teamFormValue);
|
||||
System.out.println("Team2 Calculated Form = " + calculatedTeam2Form);
|
||||
System.out.println(match.getTeamsMatchStatistics1().getGoals() + ":" + match.getTeamsMatchStatistics1().getGoals_lost());
|
||||
//int winner = whoWillWin(calculatedTeam1Form, calculatedTeam2Form);
|
||||
LeagueTable leagueTable = new LeagueTable(matchRepository.findAllByDateBeforeAndSeason(match.getDate(), match.getSeason()));
|
||||
System.out.println("###############################################################");
|
||||
for (LeagueTeamScore leagueTeamScore : leagueTable.getLeagueTeamScores()){
|
||||
System.out.println(leagueTeamScore.getScore() + " " + leagueTeamScore.getTeam().getName());
|
||||
}
|
||||
System.out.println("###############################################################");
|
||||
}
|
||||
|
||||
return "done";
|
||||
}
|
||||
|
||||
private int calculateFormationForm(List<Match> matches, Team team) {
|
||||
|
||||
/*
|
||||
private int whoWillWin(int calculatedTeam1Form, int calculatedTeam2Form) {
|
||||
//drużyna która gra u siebie rzadko przegrywa
|
||||
calculatedTeam1Form += homeTeamBoost;
|
||||
|
||||
|
||||
|
||||
}*/
|
||||
|
||||
private int calculateTeamForm(List<Match> matches, Team team, Team enemy, Date actualMatchDate) {
|
||||
if (matches.size() == 0)
|
||||
return 100;
|
||||
|
||||
int shootsOnTargetAverage = 0;
|
||||
int possessionAverage = 0;
|
||||
int goalsAverage = 0;
|
||||
int goalsLostAverage = 0;
|
||||
int redCardsAverage = 0;
|
||||
int penaltyAreaEntriesAverage = 0;
|
||||
int penaltiesAverage = 0;
|
||||
int lastMatchesResultAverage = 0;
|
||||
int lastMatchesResultBetweenAverage = 0;
|
||||
|
||||
for (Match match : matches){
|
||||
if (match.getTeamsMatchStatistics1().getTeam().equals(team)){
|
||||
shootsOnTargetAverage += match.getTeamsMatchStatistics1().getShootsOnTarget();
|
||||
possessionAverage += match.getTeamsMatchStatistics1().getPossession();
|
||||
goalsAverage += match.getTeamsMatchStatistics1().getGoals();
|
||||
goalsLostAverage += match.getTeamsMatchStatistics1().getGoals_lost();
|
||||
redCardsAverage += match.getTeamsMatchStatistics1().getRed_cards();
|
||||
penaltyAreaEntriesAverage += match.getTeamsMatchStatistics1().getPenaltyAreaEntries();
|
||||
penaltiesAverage += match.getTeamsMatchStatistics1().getPenalties();
|
||||
if (match.getResult() == 1)
|
||||
lastMatchesResultAverage += 3;
|
||||
else if (match.getResult() == 0)
|
||||
lastMatchesResultAverage += 1;
|
||||
}
|
||||
else{
|
||||
shootsOnTargetAverage += match.getTeamsMatchStatistics2().getShootsOnTarget();
|
||||
possessionAverage += match.getTeamsMatchStatistics2().getPossession();
|
||||
goalsAverage += match.getTeamsMatchStatistics2().getGoals();
|
||||
goalsLostAverage += match.getTeamsMatchStatistics2().getGoals_lost();
|
||||
redCardsAverage += match.getTeamsMatchStatistics2().getRed_cards();
|
||||
penaltyAreaEntriesAverage += match.getTeamsMatchStatistics2().getPenaltyAreaEntries();
|
||||
penaltiesAverage += match.getTeamsMatchStatistics2().getPenalties();
|
||||
if (match.getResult() == 2)
|
||||
lastMatchesResultAverage += 3;
|
||||
else if (match.getResult() == 0)
|
||||
lastMatchesResultAverage += 1;
|
||||
}
|
||||
}
|
||||
|
||||
List<Match> matchesBetween = matchRepository.findTop10ByTeamsMatchStatistics1TeamAndTeamsMatchStatistics2TeamAndDateBeforeOrTeamsMatchStatistics1TeamAndTeamsMatchStatistics2TeamAndDateBeforeOrderByDateDesc(team, enemy, actualMatchDate, enemy, team, actualMatchDate);
|
||||
int lastMatchesBetweenSize;
|
||||
if (howManyLastMatchesResultBetween > matchesBetween.size()){
|
||||
lastMatchesBetweenSize = matchesBetween.size();
|
||||
} else {
|
||||
lastMatchesBetweenSize = howManyLastMatchesResultBetween;
|
||||
matchesBetween = matchesBetween.subList(0, howManyLastMatchesResultBetween - 1);
|
||||
}
|
||||
for (Match match : matchesBetween){
|
||||
if (match.getTeamsMatchStatistics1().getTeam().equals(team)){
|
||||
if (match.getResult() == 1)
|
||||
lastMatchesResultBetweenAverage += 3;
|
||||
else if (match.getResult() == 0)
|
||||
lastMatchesResultBetweenAverage += 1;
|
||||
}
|
||||
else {
|
||||
if (match.getResult() == 2)
|
||||
lastMatchesResultBetweenAverage += 3;
|
||||
else if (match.getResult() == 0)
|
||||
lastMatchesResultBetweenAverage += 1;
|
||||
}
|
||||
}
|
||||
if (matches.size() > 0) {
|
||||
shootsOnTargetAverage = shootsOnTargetAverage / matches.size();
|
||||
possessionAverage = possessionAverage / matches.size();
|
||||
goalsAverage = goalsAverage / matches.size();
|
||||
goalsLostAverage = goalsLostAverage / matches.size();
|
||||
redCardsAverage = redCardsAverage / matches.size();
|
||||
penaltyAreaEntriesAverage = penaltyAreaEntriesAverage / matches.size();
|
||||
penaltiesAverage = penaltiesAverage / matches.size();
|
||||
lastMatchesResultAverage = lastMatchesResultAverage / matches.size();
|
||||
}
|
||||
else {
|
||||
shootsOnTargetAverage = 0;
|
||||
possessionAverage = 0;
|
||||
goalsAverage = 0;
|
||||
goalsLostAverage = 0;
|
||||
redCardsAverage = 0;
|
||||
penaltyAreaEntriesAverage = 0;
|
||||
penaltiesAverage = 0;
|
||||
lastMatchesResultAverage = 0;
|
||||
}
|
||||
if (matchesBetween.size() > 0)
|
||||
lastMatchesResultBetweenAverage = lastMatchesResultBetweenAverage / matchesBetween.size();
|
||||
else lastMatchesResultBetweenAverage = 0;
|
||||
|
||||
|
||||
|
||||
|
||||
return calculateTeamStatsByAverages(shootsOnTargetAverage, possessionAverage, goalsAverage, goalsLostAverage, redCardsAverage, penaltyAreaEntriesAverage, penaltiesAverage, lastMatchesResultAverage, lastMatchesResultBetweenAverage, matches.size(), lastMatchesBetweenSize);
|
||||
}
|
||||
|
||||
|
||||
private int calculateTeamStatsByAverages(int shootsOnTargetAverage, int possessionAverage, int goalsAverage, int goalsLostAverage, int redCardsAverage, int penaltyAreaEntriesAverage, int penaltiesAverage, int lastMatchesResultAverage, int lastMatchesResultBetweenAverage, int howManyLastMatchesSize, int lastMatchesBetweenSize) {
|
||||
double fuzzyValueOfShootsOnTarget = fuzzyChecker(2,10, 10, shootsOnTargetAverage);
|
||||
double fuzzyValueOfPossession = fuzzyChecker(30,70, 70, possessionAverage);
|
||||
double fuzzyValueOfGoals = fuzzyChecker(1,3, 3, goalsAverage);
|
||||
double fuzzyValueOfGoalsLost = fuzzyChecker(0,0, 3, goalsLostAverage);
|
||||
double fuzzyValueOfRedCards = fuzzyChecker(0,0, 1, redCardsAverage);
|
||||
double fuzzyValueOfPenaltyAreaEntries = fuzzyChecker(10,25, 25, penaltyAreaEntriesAverage);
|
||||
double fuzzyValueOfPenalties = fuzzyChecker(0,1, 1, penaltiesAverage);
|
||||
double fuzzyValueOfLastMatchesResult = fuzzyChecker(0,howManyLastMatchesSize * 3, howManyLastMatchesSize * 3, lastMatchesResultAverage);
|
||||
double fuzzyValueOfLastMatchesResultBetween = fuzzyChecker(0,lastMatchesBetweenSize * 3, lastMatchesBetweenSize * 3, lastMatchesResultBetweenAverage);
|
||||
|
||||
double teamForm = (fuzzyValueOfShootsOnTarget * shootsOnTargetValue) + (fuzzyValueOfPossession * possessionValue) + (fuzzyValueOfGoals * goalsValue) + (fuzzyValueOfGoalsLost * goalsLostValue) + (fuzzyValueOfRedCards * redCardsValue) + (fuzzyValueOfPenaltyAreaEntries * penaltyAreaEntriesValue) + (fuzzyValueOfPenalties * penaltiesValue) + (fuzzyValueOfLastMatchesResult * lastMatchesResultValue) + (fuzzyValueOfLastMatchesResultBetween * lastMatchesResultBetweenValue);
|
||||
teamForm = teamForm / (shootsOnTargetValue + possessionValue + goalsValue + goalsLostValue + redCardsValue + penaltyAreaEntriesValue + penaltiesValue + lastMatchesResultValue + lastMatchesResultBetweenValue);
|
||||
return (int)(teamForm * 100);
|
||||
}
|
||||
|
||||
private int calculateFormationForm(List<Match> matches, Team team) {
|
||||
if (matches.size() == 0)
|
||||
return 50;
|
||||
int calculatedValue = 0;
|
||||
for (Match match : matches){
|
||||
if (match.getResult() == 0){
|
||||
@ -119,7 +284,7 @@ public class PredictService {
|
||||
|
||||
private int calculateGoalkeeperForm(List<Match> matches, Team team) {
|
||||
if (matches.size() == 0)
|
||||
return 100;
|
||||
return 50;
|
||||
int calculatedValue = 0;
|
||||
for (Match match : matches){
|
||||
if (match.getTeamsMatchStatistics1().getTeam().equals(team)){
|
||||
@ -132,4 +297,54 @@ public class PredictService {
|
||||
return calculatedValue / matches.size();
|
||||
}
|
||||
|
||||
|
||||
private double fuzzyChecker(int a, int b, int c, int valueToCheck){
|
||||
if (a == b){
|
||||
if (valueToCheck <= a){
|
||||
return 1;
|
||||
}
|
||||
else if (valueToCheck >= c){
|
||||
return 0;
|
||||
}
|
||||
else {
|
||||
double diff = c - b;
|
||||
double returnValue = valueToCheck - a;
|
||||
return returnValue / diff;
|
||||
}
|
||||
}
|
||||
else if (b == c){
|
||||
if (valueToCheck <= a){
|
||||
return 0;
|
||||
}
|
||||
else if (valueToCheck >= c){
|
||||
return 1;
|
||||
}
|
||||
else {
|
||||
double diff = c - a;
|
||||
double returnValue = valueToCheck - a;
|
||||
return returnValue / diff;
|
||||
}
|
||||
}
|
||||
else {
|
||||
if (valueToCheck <= a){
|
||||
return 0;
|
||||
}
|
||||
else if (valueToCheck >= c){
|
||||
return 0;
|
||||
}
|
||||
else {
|
||||
if (valueToCheck < b){
|
||||
double diff = b - a;
|
||||
double returnValue = valueToCheck - a;
|
||||
return returnValue / diff;
|
||||
}
|
||||
else {
|
||||
double diff = c - b;
|
||||
double returnValue = valueToCheck - b;
|
||||
return ((returnValue / diff) - 1) * (-1);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -1,4 +1,4 @@
|
||||
spring.jpa.hibernate.ddl-auto=update
|
||||
spring.datasource.url=jdbc:mysql://localhost:3306/ekstraklasa
|
||||
spring.datasource.url=jdbc:mysql://localhost:3307/ekstraklasa
|
||||
spring.datasource.username=ekstra
|
||||
spring.datasource.password=YnBDC0hqqhKaxt94
|
||||
|
@ -1 +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}}
|
||||
{"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}}
|
@ -1 +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}}
|
||||
{"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}}
|
@ -1 +1 @@
|
||||
{"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}}
|
||||
{"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}}
|
@ -1 +1 @@
|
||||
{"result": 2, "matchDate": "24-11-2019", "teamsMatchStatistics1": {"team": {"name": "Arka Gdynia"}, "formation": "4-4-2", "shootsOnTarget": 0, "possession": 42.88, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 81.81818181818181, "goals_lost": 2}, "teamsMatchStatistics2": {"team": {"name": "Jagiellonia Białystok"}, "formation": "4-4-2", "shootsOnTarget": 10, "possession": 57.12, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 7, "penalties": 0, "goalkeeperSavesPercent": 100, "goals_lost": 0}}
|
||||
{"result": 2, "date": "24-11-2019", "teamsMatchStatistics1": {"team": {"name": "Arka Gdynia"}, "formation": "4-4-2", "shootsOnTarget": 0, "possession": 42.88, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 81.81818181818181, "goals_lost": 2}, "teamsMatchStatistics2": {"team": {"name": "Jagiellonia Bia³ystok"}, "formation": "4-4-2", "shootsOnTarget": 10, "possession": 57.12, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 7, "penalties": 0, "goalkeeperSavesPercent": 100, "goals_lost": 0}}
|
@ -1 +1 @@
|
||||
{"result": 1, "matchDate": "06-12-2019", "teamsMatchStatistics1": {"team": {"name": "Arka Gdynia"}, "formation": "4-4-1-1", "shootsOnTarget": 4, "possession": 42.88, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Korona Kielce"}, "formation": "4-1-3-2", "shootsOnTarget": 8, "possession": 57.12, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 4, "penalties": 0, "goalkeeperSavesPercent": 75.0, "goals_lost": 1}}
|
||||
{"result": 1, "date": "06-12-2019", "teamsMatchStatistics1": {"team": {"name": "Arka Gdynia"}, "formation": "4-4-1-1", "shootsOnTarget": 4, "possession": 42.88, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Korona Kielce"}, "formation": "4-1-3-2", "shootsOnTarget": 8, "possession": 57.12, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 4, "penalties": 0, "goalkeeperSavesPercent": 75.0, "goals_lost": 1}}
|
@ -1 +1 @@
|
||||
{"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}}
|
||||
{"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}}
|
@ -0,0 +1 @@
|
||||
{"result": 0, "date": "19-12-2019", "teamsMatchStatistics1": {"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}, "teamsMatchStatistics2": {"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}}
|
@ -1 +1 @@
|
||||
{"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}}
|
||||
{"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}}
|
@ -1 +1 @@
|
||||
{"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}}
|
||||
{"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}}
|
@ -1 +1 @@
|
||||
{"result": 0, "matchDate": "30-11-2019", "teamsMatchStatistics1": {"team": {"name": "Arka Gdynia"}, "formation": "4-1-4-1", "shootsOnTarget": 3, "possession": 42.53, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 3, "penalties": 1, "goalkeeperSavesPercent": 85.71428571428571, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Pogoń Szczecin"}, "formation": "4-4-2", "shootsOnTarget": 7, "possession": 57.47, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 66.66666666666667, "goals_lost": 1}}
|
||||
{"result": 0, "date": "30-11-2019", "teamsMatchStatistics1": {"team": {"name": "Arka Gdynia"}, "formation": "4-1-4-1", "shootsOnTarget": 3, "possession": 42.53, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 3, "penalties": 1, "goalkeeperSavesPercent": 85.71428571428571, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Pogoñ Szczecin"}, "formation": "4-4-2", "shootsOnTarget": 7, "possession": 57.47, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 66.66666666666667, "goals_lost": 1}}
|
@ -1 +1 @@
|
||||
{"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}}
|
||||
{"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}}
|
@ -1 +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}}
|
||||
{"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}}
|
@ -1 +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}}
|
||||
{"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}}
|
@ -1 +1 @@
|
||||
{"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}}
|
||||
{"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}}
|
@ -1 +1 @@
|
||||
{"result": 2, "matchDate": "13-12-2019", "teamsMatchStatistics1": {"team": {"name": "Arka Gdynia"}, "formation": "4-1-4-1", "shootsOnTarget": 6, "possession": 59.37, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 4, "penalties": 0, "goalkeeperSavesPercent": 80.0, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Zagłębie Lubin"}, "formation": "4-2-3-1", "shootsOnTarget": 5, "possession": 40.63, "goals": 1, "red_cards": 1, "penaltyAreaEntries": 4, "penalties": 1, "goalkeeperSavesPercent": 66.66666666666667, "goals_lost": 2}}
|
||||
{"result": 2, "date": "13-12-2019", "teamsMatchStatistics1": {"team": {"name": "Arka Gdynia"}, "formation": "4-1-4-1", "shootsOnTarget": 6, "possession": 59.37, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 4, "penalties": 0, "goalkeeperSavesPercent": 80.0, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Zag³êbie Lubin"}, "formation": "4-2-3-1", "shootsOnTarget": 5, "possession": 40.63, "goals": 1, "red_cards": 1, "penaltyAreaEntries": 4, "penalties": 1, "goalkeeperSavesPercent": 66.66666666666667, "goals_lost": 2}}
|
@ -1 +1 @@
|
||||
{"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}}
|
||||
{"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}}
|
@ -1 +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}}
|
||||
{"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}}
|
@ -1 +1 @@
|
||||
{"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}}
|
||||
{"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}}
|
@ -1 +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}}
|
||||
{"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}}
|
@ -1 +1 @@
|
||||
{"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}}
|
||||
{"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}}
|
@ -1 +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}}
|
||||
{"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}}
|
@ -1 +1 @@
|
||||
{"result": 2, "matchDate": "15-12-2019", "teamsMatchStatistics1": {"team": {"name": "Cracovia Kraków"}, "formation": "4-1-4-1", "shootsOnTarget": 4, "possession": 61.1, "goals": 0, "red_cards": 1, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 75.0, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Korona Kielce"}, "formation": "4-4-2", "shootsOnTarget": 4, "possession": 38.9, "goals": 1, "red_cards": 2, "penaltyAreaEntries": 3, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}}
|
||||
{"result": 2, "date": "15-12-2019", "teamsMatchStatistics1": {"team": {"name": "Cracovia Kraków"}, "formation": "4-1-4-1", "shootsOnTarget": 4, "possession": 61.1, "goals": 0, "red_cards": 1, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 75.0, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Korona Kielce"}, "formation": "4-4-2", "shootsOnTarget": 4, "possession": 38.9, "goals": 1, "red_cards": 2, "penaltyAreaEntries": 3, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}}
|
@ -1 +1 @@
|
||||
{"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}}
|
||||
{"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}}
|
@ -1 +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}}
|
||||
{"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}}
|
@ -1 +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}}
|
||||
{"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}}
|
@ -1 +1 @@
|
||||
{"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}}
|
||||
{"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}}
|
@ -1 +1 @@
|
||||
{"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}}
|
||||
{"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}}
|
@ -1 +1 @@
|
||||
{"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}}
|
||||
{"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}}
|
@ -1 +1 @@
|
||||
{"result": 2, "matchDate": "08-12-2019", "teamsMatchStatistics1": {"team": {"name": "Cracovia Kraków"}, "formation": "4-2-3-1", "shootsOnTarget": 7, "possession": 62.86, "goals": 3, "red_cards": 0, "penaltyAreaEntries": 4, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Raków Częstochowa"}, "formation": "3-5-2", "shootsOnTarget": 1, "possession": 37.14, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 62.5, "goals_lost": 3}}
|
||||
{"result": 2, "date": "08-12-2019", "teamsMatchStatistics1": {"team": {"name": "Cracovia Kraków"}, "formation": "4-2-3-1", "shootsOnTarget": 7, "possession": 62.86, "goals": 3, "red_cards": 0, "penaltyAreaEntries": 4, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Raków Czêstochowa"}, "formation": "3-5-2", "shootsOnTarget": 1, "possession": 37.14, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 62.5, "goals_lost": 3}}
|
@ -1 +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}}
|
||||
{"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}}
|
@ -1 +1 @@
|
||||
{"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}}
|
||||
{"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}}
|
@ -1 +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}}
|
||||
{"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}}
|
@ -1 +1 @@
|
||||
{"result": 2, "matchDate": "25-11-2019", "teamsMatchStatistics1": {"team": {"name": "Cracovia Kraków"}, "formation": "4-2-3-1", "shootsOnTarget": 3, "possession": 41.03, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 3, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Zagłębie Lubin"}, "formation": "4-2-3-1", "shootsOnTarget": 3, "possession": 58.97, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 33.333333333333336, "goals_lost": 2}}
|
||||
{"result": 2, "date": "25-11-2019", "teamsMatchStatistics1": {"team": {"name": "Cracovia Kraków"}, "formation": "4-2-3-1", "shootsOnTarget": 3, "possession": 41.03, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 3, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Zag³êbie Lubin"}, "formation": "4-2-3-1", "shootsOnTarget": 3, "possession": 58.97, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 33.333333333333336, "goals_lost": 2}}
|
@ -1 +1 @@
|
||||
{"result": 2, "matchDate": "01-12-2019", "teamsMatchStatistics1": {"team": {"name": "Cracovia Kraków"}, "formation": "4-4-1-1", "shootsOnTarget": 2, "possession": 44.95, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 5, "penalties": 0, "goalkeeperSavesPercent": 66.66666666666667, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Łódzki KS"}, "formation": "4-1-4-1", "shootsOnTarget": 3, "possession": 55.05, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 3, "penalties": 1, "goalkeeperSavesPercent": 100, "goals_lost": 0}}
|
||||
{"result": 2, "date": "01-12-2019", "teamsMatchStatistics1": {"team": {"name": "Cracovia Kraków"}, "formation": "4-4-1-1", "shootsOnTarget": 2, "possession": 44.95, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 5, "penalties": 0, "goalkeeperSavesPercent": 66.66666666666667, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "£ódzki KS"}, "formation": "4-1-4-1", "shootsOnTarget": 3, "possession": 55.05, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 3, "penalties": 1, "goalkeeperSavesPercent": 100, "goals_lost": 0}}
|
@ -1 +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}}
|
||||
{"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}}
|
@ -1 +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}}
|
||||
{"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}}
|
@ -1 +1 @@
|
||||
{"result": 2, "matchDate": "20-12-2019", "teamsMatchStatistics1": {"team": {"name": "Cracovia Kraków"}, "formation": "4-2-3-1", "shootsOnTarget": 7, "possession": 56.51, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 100, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Śląsk Wrocław"}, "formation": "4-2-3-1", "shootsOnTarget": 0, "possession": 43.49, "goals": 0, "red_cards": 1, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 71.42857142857143, "goals_lost": 2}}
|
||||
{"result": 2, "date": "20-12-2019", "teamsMatchStatistics1": {"team": {"name": "Cracovia Kraków"}, "formation": "4-2-3-1", "shootsOnTarget": 7, "possession": 56.51, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 100, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Œl¹sk Wroc³aw"}, "formation": "4-2-3-1", "shootsOnTarget": 0, "possession": 43.49, "goals": 0, "red_cards": 1, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 71.42857142857143, "goals_lost": 2}}
|
@ -1 +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}}
|
||||
{"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}}
|
@ -1 +1 @@
|
||||
{"result": 2, "matchDate": "30-08-2019", "teamsMatchStatistics1": {"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}, "teamsMatchStatistics2": {"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}}
|
||||
{"result": 2, "date": "30-08-2019", "teamsMatchStatistics1": {"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}, "teamsMatchStatistics2": {"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}}
|
@ -1 +1 @@
|
||||
{"result": 0, "matchDate": "06-10-2019", "teamsMatchStatistics1": {"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}, "teamsMatchStatistics2": {"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}}
|
||||
{"result": 0, "date": "06-10-2019", "teamsMatchStatistics1": {"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}, "teamsMatchStatistics2": {"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}}
|
@ -1 +1 @@
|
||||
{"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}}
|
||||
{"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}}
|
@ -1 +1 @@
|
||||
{"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}}
|
||||
{"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}}
|
@ -1 +1 @@
|
||||
{"result": 2, "matchDate": "17-08-2019", "teamsMatchStatistics1": {"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}, "teamsMatchStatistics2": {"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}}
|
||||
{"result": 2, "date": "17-08-2019", "teamsMatchStatistics1": {"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}, "teamsMatchStatistics2": {"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}}
|
@ -1 +1 @@
|
||||
{"result": 2, "matchDate": "21-12-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-4-1-1", "shootsOnTarget": 5, "possession": 37.06, "goals": 3, "red_cards": 0, "penaltyAreaEntries": 5, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Jagiellonia Białystok"}, "formation": "4-4-1-1", "shootsOnTarget": 11, "possession": 62.94, "goals": 0, "red_cards": 1, "penaltyAreaEntries": 4, "penalties": 2, "goalkeeperSavesPercent": 40.0, "goals_lost": 3}}
|
||||
{"result": 2, "date": "21-12-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-4-1-1", "shootsOnTarget": 5, "possession": 37.06, "goals": 3, "red_cards": 0, "penaltyAreaEntries": 5, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Jagiellonia Bia³ystok"}, "formation": "4-4-1-1", "shootsOnTarget": 11, "possession": 62.94, "goals": 0, "red_cards": 1, "penaltyAreaEntries": 4, "penalties": 2, "goalkeeperSavesPercent": 40.0, "goals_lost": 3}}
|
@ -1 +1 @@
|
||||
{"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}}
|
||||
{"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}}
|
@ -1 +1 @@
|
||||
{"result": 2, "matchDate": "25-08-2019", "teamsMatchStatistics1": {"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}, "teamsMatchStatistics2": {"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}}
|
||||
{"result": 2, "date": "25-08-2019", "teamsMatchStatistics1": {"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}, "teamsMatchStatistics2": {"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}}
|
@ -1 +1 @@
|
||||
{"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}}
|
||||
{"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}}
|
@ -1 +1 @@
|
||||
{"result": 1, "matchDate": "28-09-2019", "teamsMatchStatistics1": {"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}, "teamsMatchStatistics2": {"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}}
|
||||
{"result": 1, "date": "28-09-2019", "teamsMatchStatistics1": {"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}, "teamsMatchStatistics2": {"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}}
|
@ -1 +1 @@
|
||||
{"result": 0, "matchDate": "26-10-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-2-3-1", "shootsOnTarget": 1, "possession": 42.87, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 4, "penalties": 0, "goalkeeperSavesPercent": 83.33333333333333, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Lechia Gdańsk"}, "formation": "4-1-4-1", "shootsOnTarget": 5, "possession": 57.13, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 9, "penalties": 1, "goalkeeperSavesPercent": 50.0, "goals_lost": 1}}
|
||||
{"result": 0, "date": "26-10-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-2-3-1", "shootsOnTarget": 1, "possession": 42.87, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 4, "penalties": 0, "goalkeeperSavesPercent": 83.33333333333333, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Lechia Gdañsk"}, "formation": "4-1-4-1", "shootsOnTarget": 5, "possession": 57.13, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 9, "penalties": 1, "goalkeeperSavesPercent": 50.0, "goals_lost": 1}}
|
@ -1 +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}}
|
||||
{"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}}
|
@ -1 +1 @@
|
||||
{"result": 2, "matchDate": "09-11-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-2-3-1", "shootsOnTarget": 2, "possession": 37.14, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 37.5, "goals_lost": 5}, "teamsMatchStatistics2": {"team": {"name": "Legia Warszawa"}, "formation": "4-2-3-1", "shootsOnTarget": 7, "possession": 62.86, "goals": 5, "red_cards": 0, "penaltyAreaEntries": 10, "penalties": 0, "goalkeeperSavesPercent": 66.66666666666667, "goals_lost": 1}}
|
||||
{"result": 2, "date": "09-11-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-2-3-1", "shootsOnTarget": 2, "possession": 37.14, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 37.5, "goals_lost": 5}, "teamsMatchStatistics2": {"team": {"name": "Legia Warszawa"}, "formation": "4-2-3-1", "shootsOnTarget": 7, "possession": 62.86, "goals": 5, "red_cards": 0, "penaltyAreaEntries": 10, "penalties": 0, "goalkeeperSavesPercent": 66.66666666666667, "goals_lost": 1}}
|
@ -1 +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}}
|
||||
{"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}}
|
@ -1 +1 @@
|
||||
{"result": 0, "matchDate": "03-11-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-4-2", "shootsOnTarget": 5, "possession": 43.15, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 80.0, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Piast Gliwice"}, "formation": "4-4-2", "shootsOnTarget": 4, "possession": 56.85, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 80.0, "goals_lost": 1}}
|
||||
{"result": 0, "date": "03-11-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-4-2", "shootsOnTarget": 5, "possession": 43.15, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 80.0, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Piast Gliwice"}, "formation": "4-4-2", "shootsOnTarget": 4, "possession": 56.85, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 80.0, "goals_lost": 1}}
|
@ -1 +1 @@
|
||||
{"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}}
|
||||
{"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}}
|
@ -1 +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}}
|
||||
{"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}}
|
@ -1 +1 @@
|
||||
{"result": 0, "matchDate": "22-09-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-4-1-1", "shootsOnTarget": 6, "possession": 39.8, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 3, "penalties": 0, "goalkeeperSavesPercent": 80.0, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Pogoń Szczecin"}, "formation": "4-1-4-1", "shootsOnTarget": 4, "possession": 60.2, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 9, "penalties": 0, "goalkeeperSavesPercent": 83.33333333333333, "goals_lost": 1}}
|
||||
{"result": 0, "date": "22-09-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-4-1-1", "shootsOnTarget": 6, "possession": 39.8, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 3, "penalties": 0, "goalkeeperSavesPercent": 80.0, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Pogoñ Szczecin"}, "formation": "4-1-4-1", "shootsOnTarget": 4, "possession": 60.2, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 9, "penalties": 0, "goalkeeperSavesPercent": 83.33333333333333, "goals_lost": 1}}
|
@ -1 +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}}
|
||||
{"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}}
|
@ -1 +1 @@
|
||||
{"result": 2, "matchDate": "14-12-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-2-3-1", "shootsOnTarget": 3, "possession": 47.79, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 66.66666666666667, "goals_lost": 2}, "teamsMatchStatistics2": {"team": {"name": "Raków Częstochowa"}, "formation": "3-5-2", "shootsOnTarget": 6, "possession": 52.21, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 1, "goalkeeperSavesPercent": 66.66666666666667, "goals_lost": 1}}
|
||||
{"result": 2, "date": "14-12-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-2-3-1", "shootsOnTarget": 3, "possession": 47.79, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 66.66666666666667, "goals_lost": 2}, "teamsMatchStatistics2": {"team": {"name": "Raków Czêstochowa"}, "formation": "3-5-2", "shootsOnTarget": 6, "possession": 52.21, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 1, "goalkeeperSavesPercent": 66.66666666666667, "goals_lost": 1}}
|
@ -1 +1 @@
|
||||
{"result": 1, "matchDate": "03-05-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-1-4-1", "shootsOnTarget": 6, "possession": 49.35, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 60.0, "goals_lost": 2}, "teamsMatchStatistics2": {"team": {"name": "Wisła Kraków"}, "formation": "4-1-4-1", "shootsOnTarget": 5, "possession": 50.65, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 1, "goalkeeperSavesPercent": 83.33333333333333, "goals_lost": 1}}
|
||||
{"result": 1, "date": "03-05-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-1-4-1", "shootsOnTarget": 6, "possession": 49.35, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 60.0, "goals_lost": 2}, "teamsMatchStatistics2": {"team": {"name": "Wis³a Kraków"}, "formation": "4-1-4-1", "shootsOnTarget": 5, "possession": 50.65, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 1, "goalkeeperSavesPercent": 83.33333333333333, "goals_lost": 1}}
|
@ -1 +1 @@
|
||||
{"result": 2, "matchDate": "05-08-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-4-2", "shootsOnTarget": 3, "possession": 35.39, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 66.66666666666667, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Wisła Kraków"}, "formation": "4-1-4-1", "shootsOnTarget": 3, "possession": 64.61, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 6, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}}
|
||||
{"result": 2, "date": "05-08-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-4-2", "shootsOnTarget": 3, "possession": 35.39, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 0, "penalties": 0, "goalkeeperSavesPercent": 66.66666666666667, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Wis³a Kraków"}, "formation": "4-1-4-1", "shootsOnTarget": 3, "possession": 64.61, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 6, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}}
|
@ -1 +1 @@
|
||||
{"result": 2, "matchDate": "06-12-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-3-3", "shootsOnTarget": 6, "possession": 54.15, "goals": 4, "red_cards": 0, "penaltyAreaEntries": 7, "penalties": 1, "goalkeeperSavesPercent": 33.333333333333336, "goals_lost": 2}, "teamsMatchStatistics2": {"team": {"name": "Wisła Kraków"}, "formation": "4-4-2", "shootsOnTarget": 3, "possession": 45.85, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 3, "penalties": 0, "goalkeeperSavesPercent": 33.333333333333336, "goals_lost": 4}}
|
||||
{"result": 2, "date": "06-12-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-3-3", "shootsOnTarget": 6, "possession": 54.15, "goals": 4, "red_cards": 0, "penaltyAreaEntries": 7, "penalties": 1, "goalkeeperSavesPercent": 33.333333333333336, "goals_lost": 2}, "teamsMatchStatistics2": {"team": {"name": "Wis³a Kraków"}, "formation": "4-4-2", "shootsOnTarget": 3, "possession": 45.85, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 3, "penalties": 0, "goalkeeperSavesPercent": 33.333333333333336, "goals_lost": 4}}
|
@ -1 +1 @@
|
||||
{"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}}
|
||||
{"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}}
|
@ -1 +1 @@
|
||||
{"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}}
|
||||
{"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}}
|
@ -1 +1 @@
|
||||
{"result": 0, "matchDate": "22-07-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-2-3-1", "shootsOnTarget": 3, "possession": 41.63, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 1, "goalkeeperSavesPercent": 50.0, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Wisła Płock"}, "formation": "4-4-2", "shootsOnTarget": 2, "possession": 58.37, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 1, "goalkeeperSavesPercent": 83.33333333333333, "goals_lost": 1}}
|
||||
{"result": 0, "date": "22-07-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-2-3-1", "shootsOnTarget": 3, "possession": 41.63, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 1, "goalkeeperSavesPercent": 50.0, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Wis³a P³ock"}, "formation": "4-4-2", "shootsOnTarget": 2, "possession": 58.37, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 1, "goalkeeperSavesPercent": 83.33333333333333, "goals_lost": 1}}
|
@ -1 +1 @@
|
||||
{"result": 0, "matchDate": "22-11-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-2-3-1", "shootsOnTarget": 5, "possession": 52.07, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 66.66666666666667, "goals_lost": 2}, "teamsMatchStatistics2": {"team": {"name": "Wisła Płock"}, "formation": "4-1-4-1", "shootsOnTarget": 4, "possession": 47.93, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 3, "penalties": 0, "goalkeeperSavesPercent": 60.0, "goals_lost": 2}}
|
||||
{"result": 0, "date": "22-11-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-2-3-1", "shootsOnTarget": 5, "possession": 52.07, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 66.66666666666667, "goals_lost": 2}, "teamsMatchStatistics2": {"team": {"name": "Wis³a P³ock"}, "formation": "4-1-4-1", "shootsOnTarget": 4, "possession": 47.93, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 3, "penalties": 0, "goalkeeperSavesPercent": 60.0, "goals_lost": 2}}
|
@ -1 +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}}
|
||||
{"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}}
|
@ -1 +1 @@
|
||||
{"result": 2, "matchDate": "26-07-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-4-1-1", "shootsOnTarget": 3, "possession": 42.58, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 4, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Zagłębie Lubin"}, "formation": "4-1-4-1", "shootsOnTarget": 2, "possession": 57.42, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 66.66666666666667, "goals_lost": 1}}
|
||||
{"result": 2, "date": "26-07-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-4-1-1", "shootsOnTarget": 3, "possession": 42.58, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 4, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Zag³êbie Lubin"}, "formation": "4-1-4-1", "shootsOnTarget": 2, "possession": 57.42, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 66.66666666666667, "goals_lost": 1}}
|
@ -1 +1 @@
|
||||
{"result": 2, "matchDate": "29-11-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-2-3-1", "shootsOnTarget": 1, "possession": 42.18, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 66.66666666666667, "goals_lost": 2}, "teamsMatchStatistics2": {"team": {"name": "Zagłębie Lubin"}, "formation": "4-3-3", "shootsOnTarget": 6, "possession": 57.82, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}}
|
||||
{"result": 2, "date": "29-11-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-2-3-1", "shootsOnTarget": 1, "possession": 42.18, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 66.66666666666667, "goals_lost": 2}, "teamsMatchStatistics2": {"team": {"name": "Zag³êbie Lubin"}, "formation": "4-3-3", "shootsOnTarget": 6, "possession": 57.82, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}}
|
@ -1 +1 @@
|
||||
{"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}}
|
||||
{"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}}
|
@ -1 +1 @@
|
||||
{"result": 2, "matchDate": "29-04-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-1-4-1", "shootsOnTarget": 11, "possession": 58.66, "goals": 4, "red_cards": 0, "penaltyAreaEntries": 3, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Zagłębie Sosnowiec"}, "formation": "4-4-1-1", "shootsOnTarget": 1, "possession": 41.34, "goals": 0, "red_cards": 1, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 100, "goals_lost": 4}}
|
||||
{"result": 2, "date": "29-04-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-1-4-1", "shootsOnTarget": 11, "possession": 58.66, "goals": 4, "red_cards": 0, "penaltyAreaEntries": 3, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Zag³êbie Sosnowiec"}, "formation": "4-4-1-1", "shootsOnTarget": 1, "possession": 41.34, "goals": 0, "red_cards": 1, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 100, "goals_lost": 4}}
|
@ -1 +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}}
|
||||
{"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}}
|
@ -1 +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}}
|
||||
{"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}}
|
@ -1 +1 @@
|
||||
{"result": 0, "matchDate": "15-09-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-2-3-1", "shootsOnTarget": 1, "possession": 48.05, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Śląsk Wrocław"}, "formation": "4-2-3-1", "shootsOnTarget": 4, "possession": 51.95, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}}
|
||||
{"result": 0, "date": "15-09-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-2-3-1", "shootsOnTarget": 1, "possession": 48.05, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Œl¹sk Wroc³aw"}, "formation": "4-2-3-1", "shootsOnTarget": 4, "possession": 51.95, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}}
|
@ -1 +1 @@
|
||||
{"result": 1, "matchDate": "25-04-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-1-4-1", "shootsOnTarget": 11, "possession": 53.06, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 1, "goalkeeperSavesPercent": 66.66666666666667, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Śląsk Wrocław"}, "formation": "4-4-2", "shootsOnTarget": 3, "possession": 46.94, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 1, "goalkeeperSavesPercent": 100, "goals_lost": 2}}
|
||||
{"result": 1, "date": "25-04-2019", "teamsMatchStatistics1": {"team": {"name": "Górnik Zabrze"}, "formation": "4-1-4-1", "shootsOnTarget": 11, "possession": 53.06, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 1, "goalkeeperSavesPercent": 66.66666666666667, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Œl¹sk Wroc³aw"}, "formation": "4-4-2", "shootsOnTarget": 3, "possession": 46.94, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 1, "goalkeeperSavesPercent": 100, "goals_lost": 2}}
|
@ -1 +1 @@
|
||||
{"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}}
|
||||
{"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}}
|
@ -1 +1 @@
|
||||
{"result": 2, "matchDate": "24-11-2019", "teamsMatchStatistics1": {"team": {"name": "Jagiellonia Białystok"}, "formation": "4-4-2", "shootsOnTarget": 10, "possession": 57.12, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 7, "penalties": 0, "goalkeeperSavesPercent": 100, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Arka Gdynia"}, "formation": "4-4-2", "shootsOnTarget": 0, "possession": 42.88, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 81.81818181818181, "goals_lost": 2}}
|
||||
{"result": 2, "date": "24-11-2019", "teamsMatchStatistics1": {"team": {"name": "Jagiellonia Bia³ystok"}, "formation": "4-4-2", "shootsOnTarget": 10, "possession": 57.12, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 7, "penalties": 0, "goalkeeperSavesPercent": 100, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Arka Gdynia"}, "formation": "4-4-2", "shootsOnTarget": 0, "possession": 42.88, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 81.81818181818181, "goals_lost": 2}}
|
@ -1 +1 @@
|
||||
{"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}}
|
||||
{"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}}
|
@ -1 +1 @@
|
||||
{"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}}
|
||||
{"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}}
|
@ -1 +1 @@
|
||||
{"result": 2, "matchDate": "21-12-2019", "teamsMatchStatistics1": {"team": {"name": "Jagiellonia Białystok"}, "formation": "4-4-1-1", "shootsOnTarget": 11, "possession": 62.94, "goals": 0, "red_cards": 1, "penaltyAreaEntries": 4, "penalties": 2, "goalkeeperSavesPercent": 40.0, "goals_lost": 3}, "teamsMatchStatistics2": {"team": {"name": "Górnik Zabrze"}, "formation": "4-4-1-1", "shootsOnTarget": 5, "possession": 37.06, "goals": 3, "red_cards": 0, "penaltyAreaEntries": 5, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}}
|
||||
{"result": 2, "date": "21-12-2019", "teamsMatchStatistics1": {"team": {"name": "Jagiellonia Bia³ystok"}, "formation": "4-4-1-1", "shootsOnTarget": 11, "possession": 62.94, "goals": 0, "red_cards": 1, "penaltyAreaEntries": 4, "penalties": 2, "goalkeeperSavesPercent": 40.0, "goals_lost": 3}, "teamsMatchStatistics2": {"team": {"name": "Górnik Zabrze"}, "formation": "4-4-1-1", "shootsOnTarget": 5, "possession": 37.06, "goals": 3, "red_cards": 0, "penaltyAreaEntries": 5, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}}
|
@ -1 +1 @@
|
||||
{"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}}
|
||||
{"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}}
|
@ -1 +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}}
|
||||
{"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}}
|
@ -1 +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}}
|
||||
{"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}}
|
@ -1 +1 @@
|
||||
{"result": 2, "matchDate": "15-12-2019", "teamsMatchStatistics1": {"team": {"name": "Jagiellonia Białystok"}, "formation": "4-4-1-1", "shootsOnTarget": 6, "possession": 49.22, "goals": 3, "red_cards": 0, "penaltyAreaEntries": 6, "penalties": 1, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Lechia Gdańsk"}, "formation": "4-4-1-1", "shootsOnTarget": 3, "possession": 50.78, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 50.0, "goals_lost": 3}}
|
||||
{"result": 2, "date": "15-12-2019", "teamsMatchStatistics1": {"team": {"name": "Jagiellonia Bia³ystok"}, "formation": "4-4-1-1", "shootsOnTarget": 6, "possession": 49.22, "goals": 3, "red_cards": 0, "penaltyAreaEntries": 6, "penalties": 1, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}, "teamsMatchStatistics2": {"team": {"name": "Lechia Gdañsk"}, "formation": "4-4-1-1", "shootsOnTarget": 3, "possession": 50.78, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 50.0, "goals_lost": 3}}
|
@ -1 +1 @@
|
||||
{"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}}
|
||||
{"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}}
|
@ -1 +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}}
|
||||
{"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}}
|
@ -1 +1 @@
|
||||
{"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}}
|
||||
{"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}}
|
@ -1 +1 @@
|
||||
{"result": 2, "matchDate": "01-12-2019", "teamsMatchStatistics1": {"team": {"name": "Jagiellonia Białystok"}, "formation": "4-4-1-1", "shootsOnTarget": 1, "possession": 47.3, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 3, "penalties": 0, "goalkeeperSavesPercent": 71.42857142857143, "goals_lost": 2}, "teamsMatchStatistics2": {"team": {"name": "Raków Częstochowa"}, "formation": "3-5-2", "shootsOnTarget": 6, "possession": 52.7, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 3, "penalties": 0, "goalkeeperSavesPercent": 0.0, "goals_lost": 1}}
|
||||
{"result": 2, "date": "01-12-2019", "teamsMatchStatistics1": {"team": {"name": "Jagiellonia Bia³ystok"}, "formation": "4-4-1-1", "shootsOnTarget": 1, "possession": 47.3, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 3, "penalties": 0, "goalkeeperSavesPercent": 71.42857142857143, "goals_lost": 2}, "teamsMatchStatistics2": {"team": {"name": "Raków Czêstochowa"}, "formation": "3-5-2", "shootsOnTarget": 6, "possession": 52.7, "goals": 2, "red_cards": 0, "penaltyAreaEntries": 3, "penalties": 0, "goalkeeperSavesPercent": 0.0, "goals_lost": 1}}
|
@ -1 +1 @@
|
||||
{"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}}
|
||||
{"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}}
|
@ -1 +1 @@
|
||||
{"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}}
|
||||
{"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}}
|
@ -1 +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}}
|
||||
{"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}}
|
@ -1 +1 @@
|
||||
{"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}}
|
||||
{"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}}
|
@ -1 +1 @@
|
||||
{"result": 1, "matchDate": "07-12-2019", "teamsMatchStatistics1": {"team": {"name": "Jagiellonia Białystok"}, "formation": "4-2-3-1", "shootsOnTarget": 2, "possession": 47.36, "goals": 0, "red_cards": 1, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 75.0, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Zagłębie Lubin"}, "formation": "4-3-3", "shootsOnTarget": 4, "possession": 52.64, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}}
|
||||
{"result": 1, "date": "07-12-2019", "teamsMatchStatistics1": {"team": {"name": "Jagiellonia Bia³ystok"}, "formation": "4-2-3-1", "shootsOnTarget": 2, "possession": 47.36, "goals": 0, "red_cards": 1, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 75.0, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Zag³êbie Lubin"}, "formation": "4-3-3", "shootsOnTarget": 4, "possession": 52.64, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 1, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}}
|
@ -1 +1 @@
|
||||
{"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}}
|
||||
{"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}}
|
@ -1 +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}}
|
||||
{"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}}
|
@ -1 +1 @@
|
||||
{"result": 1, "matchDate": "06-12-2019", "teamsMatchStatistics1": {"team": {"name": "Korona Kielce"}, "formation": "4-1-3-2", "shootsOnTarget": 8, "possession": 57.12, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 4, "penalties": 0, "goalkeeperSavesPercent": 75.0, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Arka Gdynia"}, "formation": "4-4-1-1", "shootsOnTarget": 4, "possession": 42.88, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}}
|
||||
{"result": 1, "date": "06-12-2019", "teamsMatchStatistics1": {"team": {"name": "Korona Kielce"}, "formation": "4-1-3-2", "shootsOnTarget": 8, "possession": 57.12, "goals": 0, "red_cards": 0, "penaltyAreaEntries": 4, "penalties": 0, "goalkeeperSavesPercent": 75.0, "goals_lost": 1}, "teamsMatchStatistics2": {"team": {"name": "Arka Gdynia"}, "formation": "4-4-1-1", "shootsOnTarget": 4, "possession": 42.88, "goals": 1, "red_cards": 0, "penaltyAreaEntries": 2, "penalties": 0, "goalkeeperSavesPercent": 100.0, "goals_lost": 0}}
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user