---
layout: post
title: Introduction to Pandas 3
excerpt:
categories: blog
tags: ["Python", "Data Science", "Pandas"]
published: true
comments: true
share: true
---

Hello all, I am back with another of my notes on Pandas. Today our focus will be grouping, merging and reshaping our data with Pandas. Modifiying data is very fundamental when it comes to data analysis and other core subjects requiring data cleaning.

Grouping of Data

The groupby operation can be thought of as part of a process that involves the following 3 steps:

  • Splitting the dataset
  • Analyzing the data
  • Aggregating or combining the data

The groupby won't really work with Series since they are 1D object. However can be performed to obtain distinct rows of the Series.

Dataset we will use taken from Chris Albon's Web Notes


In [1]:
import matplotlib.pyplot as plt 
import pandas as pd
import numpy as np
%matplotlib inline

In [2]:
raw_data = {'regiment': ['Nighthawks', 'Nighthawks', 'Nighthawks', 'Nighthawks', 'Dragoons', 'Dragoons', 'Dragoons', 'Dragoons', 'Scouts', 'Scouts', 'Scouts', 'Scouts'], 
        'company': ['1st', '1st', '2nd', '2nd', '1st', '1st', '2nd', '2nd','1st', '1st', '2nd', '2nd'], 
        'name': ['Miller', 'Jacobson', 'Ali', 'Milner', 'Cooze', 'Jacon', 'Ryaner', 'Sone', 'Sloan', 'Piger', 'Riani', 'Ali'], 
        'preTestScore': [4, 24, 31, 2, 3, 4, 24, 31, 2, 3, 2, 3],
        'postTestScore': [25, 94, 57, 62, 70, 25, 94, 57, 62, 70, 62, 70]}
df = pd.DataFrame(raw_data, columns = ['regiment', 'company', 'name', 'preTestScore', 'postTestScore'])
df.head()


Out[2]:
regiment company name preTestScore postTestScore
0 Nighthawks 1st Miller 4 25
1 Nighthawks 1st Jacobson 24 94
2 Nighthawks 2nd Ali 31 57
3 Nighthawks 2nd Milner 2 62
4 Dragoons 1st Cooze 3 70

Let's apply groupby to the DataFrame and see what is the type of the result:


In [3]:
companyGrp = df.groupby('company')
type(companyGrp)


Out[3]:
pandas.core.groupby.DataFrameGroupBy

In [4]:
# We can see the groups and the indexes accordingly
companyGrp.groups


Out[4]:
{'1st': [0, 1, 4, 5, 8, 9], '2nd': [2, 3, 6, 7, 10, 11]}

In [5]:
# Returns the length of the number of groups
len(companyGrp.groups)


Out[5]:
2

In [6]:
# Prints the full sizes of the elements of groups
companyGrp.size()


Out[6]:
company
1st    6
2nd    6
dtype: int64

A multicolumn groupby specifies more than one column to be used as the key by specifying the key columns as a list.


In [7]:
seasonData = pd.read_csv("./data/full_soccer.csv", header=None)
seasonData.columns = ["league", 'date', 'home', 'away', 'hgoal', 'agoal', 'result', 'season']
seasonData.head()


Out[7]:
league date home away hgoal agoal result season
0 D1 22/08/14 Bayern Munich Wolfsburg 2 1 H 14-15
1 D1 23/08/14 Dortmund Leverkusen 0 2 A 14-15
2 D1 23/08/14 Ein Frankfurt Freiburg 1 0 H 14-15
3 D1 23/08/14 FC Koln Hamburg 0 0 D 14-15
4 D1 23/08/14 Hannover Schalke 04 2 1 H 14-15

In [8]:
seasonData = seasonData.set_index('date')
seasonData.head()


Out[8]:
league home away hgoal agoal result season
date
22/08/14 D1 Bayern Munich Wolfsburg 2 1 H 14-15
23/08/14 D1 Dortmund Leverkusen 0 2 A 14-15
23/08/14 D1 Ein Frankfurt Freiburg 1 0 H 14-15
23/08/14 D1 FC Koln Hamburg 0 0 D 14-15
23/08/14 D1 Hannover Schalke 04 2 1 H 14-15

In [9]:
seasonDataGroupbyYear = seasonData.groupby(lambda date: date.split('/')[2])

We can then iterate over the resulting groupby object and display the groups. In the following command, we see the two sets of statistics grouped by year. Note the use of the lambda function to obtain the year group from the first day of the month.


In [10]:
for name, group in seasonDataGroupbyYear:
    print name
    print group


11
         league                home                away  hgoal  agoal result  \
date                                                                           
27/08/11    SP1             Granada               Betis      0      1      A   
27/08/11    SP1            Sp Gijon            Sociedad      1      2      A   
27/08/11    SP1            Valencia           Santander      4      3      H   
28/08/11    SP1          Ath Bilbao           Vallecano      1      1      D   
28/08/11    SP1          Ath Madrid             Osasuna      0      0      D   
28/08/11    SP1              Getafe             Levante      1      1      D   
28/08/11    SP1            Mallorca             Espanol      1      0      H   
28/08/11    SP1             Sevilla              Malaga      2      1      H   
28/08/11    SP1            Zaragoza         Real Madrid      0      6      A   
29/08/11    SP1           Barcelona          Villarreal      5      0      H   
10/09/11    SP1         Real Madrid              Getafe      4      2      H   
10/09/11    SP1            Sociedad           Barcelona      2      2      D   
10/09/11    SP1            Valencia          Ath Madrid      1      0      H   
10/09/11    SP1          Villarreal             Sevilla      2      2      D   
11/09/11    SP1               Betis            Mallorca      1      0      H   
11/09/11    SP1             Espanol          Ath Bilbao      2      1      H   
11/09/11    SP1             Osasuna            Sp Gijon      2      1      H   
11/09/11    SP1           Santander             Levante      0      0      D   
11/09/11    SP1           Vallecano            Zaragoza      0      0      D   
12/09/11    SP1              Malaga             Granada      4      0      H   
17/09/11    SP1           Barcelona             Osasuna      8      0      H   
17/09/11    SP1             Granada          Villarreal      1      0      H   
17/09/11    SP1            Mallorca              Malaga      0      1      A   
17/09/11    SP1             Sevilla            Sociedad      1      0      H   
17/09/11    SP1            Sp Gijon            Valencia      0      1      A   
18/09/11    SP1          Ath Bilbao               Betis      2      3      A   
18/09/11    SP1          Ath Madrid           Santander      4      0      H   
18/09/11    SP1              Getafe           Vallecano      0      1      A   
18/09/11    SP1             Levante         Real Madrid      1      0      H   
18/09/11    SP1            Zaragoza             Espanol      2      1      H   
...         ...                 ...                 ...    ...    ...    ...   
17/12/11     E2              Exeter          Scunthorpe      0      0      D   
17/12/11     E2          Hartlepool          Colchester      0      1      A   
17/12/11     E2  Milton Keynes Dons             Preston      0      1      A   
17/12/11     E2        Notts County       Leyton Orient      1      2      A   
17/12/11     E2            Rochdale              Yeovil      0      0      D   
17/12/11     E2      Sheffield Weds        Huddersfield      4      4      D   
17/12/11     E2           Stevenage            Tranmere      2      1      H   
26/12/11     E2           Brentford         Bournemouth      1      1      D   
26/12/11     E2          Colchester           Stevenage      1      6      A   
26/12/11     E2        Huddersfield        Chesterfield      1      0      H   
26/12/11     E2       Leyton Orient  Milton Keynes Dons      0      3      A   
26/12/11     E2              Oldham          Hartlepool      0      1      A   
26/12/11     E2             Preston            Carlisle      3      3      D   
26/12/11     E2          Scunthorpe                Bury      1      3      A   
26/12/11     E2             Walsall      Sheffield Weds      2      1      H   
26/12/11     E2             Wycombe              Exeter      3      1      H   
26/12/11     E2              Yeovil            Charlton      2      3      A   
27/12/11     E2    Sheffield United        Notts County      2      1      H   
30/12/11     E2        Huddersfield            Carlisle      1      1      D   
30/12/11     E2            Tranmere                Bury      2      0      H   
31/12/11     E2           Brentford  Milton Keynes Dons      3      3      D   
31/12/11     E2          Colchester              Exeter      2      0      H   
31/12/11     E2       Leyton Orient            Charlton      1      0      H   
31/12/11     E2              Oldham        Notts County      3      2      H   
31/12/11     E2             Preston      Sheffield Weds      0      2      A   
31/12/11     E2          Scunthorpe        Chesterfield      2      2      D   
31/12/11     E2    Sheffield United          Hartlepool      3      1      H   
31/12/11     E2             Walsall            Rochdale      0      0      D   
31/12/11     E2             Wycombe           Stevenage      0      1      A   
31/12/11     E2              Yeovil         Bournemouth      1      3      A   

         season  
date             
27/08/11  11-12  
27/08/11  11-12  
27/08/11  11-12  
28/08/11  11-12  
28/08/11  11-12  
28/08/11  11-12  
28/08/11  11-12  
28/08/11  11-12  
28/08/11  11-12  
29/08/11  11-12  
10/09/11  11-12  
10/09/11  11-12  
10/09/11  11-12  
10/09/11  11-12  
11/09/11  11-12  
11/09/11  11-12  
11/09/11  11-12  
11/09/11  11-12  
11/09/11  11-12  
12/09/11  11-12  
17/09/11  11-12  
17/09/11  11-12  
17/09/11  11-12  
17/09/11  11-12  
17/09/11  11-12  
18/09/11  11-12  
18/09/11  11-12  
18/09/11  11-12  
18/09/11  11-12  
18/09/11  11-12  
...         ...  
17/12/11  11-12  
17/12/11  11-12  
17/12/11  11-12  
17/12/11  11-12  
17/12/11  11-12  
17/12/11  11-12  
17/12/11  11-12  
26/12/11  11-12  
26/12/11  11-12  
26/12/11  11-12  
26/12/11  11-12  
26/12/11  11-12  
26/12/11  11-12  
26/12/11  11-12  
26/12/11  11-12  
26/12/11  11-12  
26/12/11  11-12  
27/12/11  11-12  
30/12/11  11-12  
30/12/11  11-12  
31/12/11  11-12  
31/12/11  11-12  
31/12/11  11-12  
31/12/11  11-12  
31/12/11  11-12  
31/12/11  11-12  
31/12/11  11-12  
31/12/11  11-12  
31/12/11  11-12  
31/12/11  11-12  

[901 rows x 7 columns]
12
         league                home                away  hgoal  agoal result  \
date                                                                           
18/08/12    SP1               Celta              Malaga      0      1      A   
18/08/12    SP1            Mallorca             Espanol      2      1      H   
18/08/12    SP1             Sevilla              Getafe      2      1      H   
19/08/12    SP1          Ath Bilbao               Betis      3      5      A   
19/08/12    SP1           Barcelona            Sociedad      5      1      H   
19/08/12    SP1             Levante          Ath Madrid      1      1      D   
19/08/12    SP1         Real Madrid            Valencia      1      1      D   
20/08/12    SP1           La Coruna             Osasuna      2      0      H   
20/08/12    SP1           Vallecano             Granada      1      0      H   
20/08/12    SP1            Zaragoza          Valladolid      0      1      A   
25/08/12    SP1               Betis           Vallecano      1      2      A   
25/08/12    SP1             Espanol            Zaragoza      1      2      A   
25/08/12    SP1              Malaga            Mallorca      1      1      D   
25/08/12    SP1            Sociedad               Celta      2      1      H   
26/08/12    SP1              Getafe         Real Madrid      2      1      H   
26/08/12    SP1             Granada             Sevilla      1      1      D   
26/08/12    SP1             Osasuna           Barcelona      1      2      A   
26/08/12    SP1            Valencia           La Coruna      3      3      D   
27/08/12    SP1          Ath Madrid          Ath Bilbao      4      0      H   
27/08/12    SP1          Valladolid             Levante      2      0      H   
01/09/12    SP1               Celta             Osasuna      2      0      H   
01/09/12    SP1           La Coruna              Getafe      1      1      D   
01/09/12    SP1            Mallorca            Sociedad      1      0      H   
01/09/12    SP1            Zaragoza              Malaga      0      1      A   
02/09/12    SP1          Ath Bilbao          Valladolid      2      0      H   
02/09/12    SP1           Barcelona            Valencia      1      0      H   
02/09/12    SP1             Levante             Espanol      3      2      H   
02/09/12    SP1         Real Madrid             Granada      3      0      H   
02/09/12    SP1           Vallecano             Sevilla      0      0      D   
15/09/12    SP1              Getafe           Barcelona      1      4      A   
...         ...                 ...                 ...    ...    ...    ...   
28/11/12     D1            Nurnberg          Hoffenheim      4      2      H   
28/11/12     D1           Stuttgart            Augsburg      2      1      H   
28/11/12     D1       Werder Bremen          Leverkusen      1      4      A   
30/11/12     D1  Fortuna Dusseldorf       Ein Frankfurt      4      0      H   
01/12/12     D1            Augsburg            Freiburg      1      1      D   
01/12/12     D1       Bayern Munich            Dortmund      1      1      D   
01/12/12     D1      Greuther Furth           Stuttgart      0      1      A   
01/12/12     D1          Leverkusen            Nurnberg      1      0      H   
01/12/12     D1               Mainz            Hannover      2      1      H   
01/12/12     D1          Schalke 04          M'gladbach      1      1      D   
02/12/12     D1          Hoffenheim       Werder Bremen      1      4      A   
02/12/12     D1           Wolfsburg             Hamburg      1      1      D   
07/12/12     D1             Hamburg          Hoffenheim      2      0      H   
08/12/12     D1            Augsburg       Bayern Munich      0      2      A   
08/12/12     D1            Dortmund           Wolfsburg      2      3      A   
08/12/12     D1       Ein Frankfurt       Werder Bremen      4      1      H   
08/12/12     D1            Freiburg      Greuther Furth      1      0      H   
08/12/12     D1            Nurnberg  Fortuna Dusseldorf      2      0      H   
08/12/12     D1           Stuttgart          Schalke 04      3      1      H   
09/12/12     D1            Hannover          Leverkusen      3      2      H   
09/12/12     D1          M'gladbach               Mainz      2      0      H   
14/12/12     D1       Bayern Munich          M'gladbach      1      1      D   
15/12/12     D1  Fortuna Dusseldorf            Hannover      2      1      H   
15/12/12     D1      Greuther Furth            Augsburg      1      1      D   
15/12/12     D1          Leverkusen             Hamburg      3      0      H   
15/12/12     D1               Mainz           Stuttgart      3      1      H   
15/12/12     D1          Schalke 04            Freiburg      1      3      A   
15/12/12     D1           Wolfsburg       Ein Frankfurt      0      2      A   
16/12/12     D1          Hoffenheim            Dortmund      1      3      A   
16/12/12     D1       Werder Bremen            Nurnberg      1      1      D   

         season  
date             
18/08/12  12-13  
18/08/12  12-13  
18/08/12  12-13  
19/08/12  12-13  
19/08/12  12-13  
19/08/12  12-13  
19/08/12  12-13  
20/08/12  12-13  
20/08/12  12-13  
20/08/12  12-13  
25/08/12  12-13  
25/08/12  12-13  
25/08/12  12-13  
25/08/12  12-13  
26/08/12  12-13  
26/08/12  12-13  
26/08/12  12-13  
26/08/12  12-13  
27/08/12  12-13  
27/08/12  12-13  
01/09/12  12-13  
01/09/12  12-13  
01/09/12  12-13  
01/09/12  12-13  
02/09/12  12-13  
02/09/12  12-13  
02/09/12  12-13  
02/09/12  12-13  
02/09/12  12-13  
15/09/12  12-13  
...         ...  
28/11/12  12-13  
28/11/12  12-13  
28/11/12  12-13  
30/11/12  12-13  
01/12/12  12-13  
01/12/12  12-13  
01/12/12  12-13  
01/12/12  12-13  
01/12/12  12-13  
01/12/12  12-13  
02/12/12  12-13  
02/12/12  12-13  
07/12/12  12-13  
08/12/12  12-13  
08/12/12  12-13  
08/12/12  12-13  
08/12/12  12-13  
08/12/12  12-13  
08/12/12  12-13  
09/12/12  12-13  
09/12/12  12-13  
14/12/12  12-13  
15/12/12  12-13  
15/12/12  12-13  
15/12/12  12-13  
15/12/12  12-13  
15/12/12  12-13  
15/12/12  12-13  
16/12/12  12-13  
16/12/12  12-13  

[1951 rows x 7 columns]
13
         league                home                away  hgoal  agoal result  \
date                                                                           
04/01/13    SP1            Zaragoza               Betis      1      2      A   
05/01/13    SP1             Granada            Valencia      1      2      A   
05/01/13    SP1           La Coruna              Malaga      1      0      H   
05/01/13    SP1             Levante          Ath Bilbao      3      1      H   
05/01/13    SP1             Sevilla             Osasuna      1      0      H   
06/01/13    SP1           Barcelona             Espanol      4      0      H   
06/01/13    SP1               Celta          Valladolid      3      1      H   
06/01/13    SP1            Mallorca          Ath Madrid      1      1      D   
06/01/13    SP1         Real Madrid            Sociedad      4      3      H   
07/01/13    SP1           Vallecano              Getafe      3      1      H   
11/01/13    SP1          Ath Bilbao           Vallecano      1      2      A   
12/01/13    SP1             Espanol               Celta      1      0      H   
12/01/13    SP1             Osasuna         Real Madrid      0      0      D   
12/01/13    SP1            Valencia             Sevilla      2      0      H   
12/01/13    SP1          Valladolid            Mallorca      3      1      H   
13/01/13    SP1          Ath Madrid            Zaragoza      2      0      H   
13/01/13    SP1               Betis             Levante      2      0      H   
13/01/13    SP1              Malaga           Barcelona      1      3      A   
13/01/13    SP1            Sociedad           La Coruna      1      1      D   
14/01/13    SP1              Getafe             Granada      2      2      D   
18/01/13    SP1             Espanol            Mallorca      3      2      H   
19/01/13    SP1              Getafe             Sevilla      1      1      D   
19/01/13    SP1             Granada           Vallecano      2      0      H   
19/01/13    SP1              Malaga               Celta      1      1      D   
19/01/13    SP1            Sociedad           Barcelona      3      2      H   
20/01/13    SP1          Ath Madrid             Levante      2      0      H   
20/01/13    SP1             Osasuna           La Coruna      2      1      H   
20/01/13    SP1            Valencia         Real Madrid      0      5      A   
20/01/13    SP1          Valladolid            Zaragoza      2      0      H   
21/01/13    SP1               Betis          Ath Bilbao      1      1      D   
...         ...                 ...                 ...    ...    ...    ...   
27/04/13     D1           Wolfsburg          M'gladbach      3      1      H   
28/04/13     D1               Mainz       Ein Frankfurt      0      0      D   
28/04/13     D1          Schalke 04             Hamburg      4      1      H   
03/05/13     D1          M'gladbach          Schalke 04      0      1      A   
04/05/13     D1            Dortmund       Bayern Munich      1      1      D   
04/05/13     D1       Ein Frankfurt  Fortuna Dusseldorf      3      1      H   
04/05/13     D1            Hannover               Mainz      2      2      D   
04/05/13     D1            Nurnberg          Leverkusen      0      2      A   
04/05/13     D1           Stuttgart      Greuther Furth      0      2      A   
04/05/13     D1       Werder Bremen          Hoffenheim      2      2      D   
05/05/13     D1            Freiburg            Augsburg      2      0      H   
05/05/13     D1             Hamburg           Wolfsburg      1      1      D   
11/05/13     D1       Bayern Munich            Augsburg      3      0      H   
11/05/13     D1  Fortuna Dusseldorf            Nurnberg      1      2      A   
11/05/13     D1      Greuther Furth            Freiburg      1      2      A   
11/05/13     D1          Hoffenheim             Hamburg      1      4      A   
11/05/13     D1          Leverkusen            Hannover      3      1      H   
11/05/13     D1               Mainz          M'gladbach      2      4      A   
11/05/13     D1          Schalke 04           Stuttgart      1      2      A   
11/05/13     D1       Werder Bremen       Ein Frankfurt      1      1      D   
11/05/13     D1           Wolfsburg            Dortmund      3      3      D   
18/05/13     D1            Augsburg      Greuther Furth      3      1      H   
18/05/13     D1            Dortmund          Hoffenheim      1      2      A   
18/05/13     D1       Ein Frankfurt           Wolfsburg      2      2      D   
18/05/13     D1            Freiburg          Schalke 04      1      2      A   
18/05/13     D1             Hamburg          Leverkusen      0      1      A   
18/05/13     D1            Hannover  Fortuna Dusseldorf      3      0      H   
18/05/13     D1          M'gladbach       Bayern Munich      3      4      A   
18/05/13     D1            Nurnberg       Werder Bremen      3      2      H   
18/05/13     D1           Stuttgart               Mainz      2      2      D   

         season  
date             
04/01/13  12-13  
05/01/13  12-13  
05/01/13  12-13  
05/01/13  12-13  
05/01/13  12-13  
06/01/13  12-13  
06/01/13  12-13  
06/01/13  12-13  
06/01/13  12-13  
07/01/13  12-13  
11/01/13  12-13  
12/01/13  12-13  
12/01/13  12-13  
12/01/13  12-13  
12/01/13  12-13  
13/01/13  12-13  
13/01/13  12-13  
13/01/13  12-13  
13/01/13  12-13  
14/01/13  12-13  
18/01/13  12-13  
19/01/13  12-13  
19/01/13  12-13  
19/01/13  12-13  
19/01/13  12-13  
20/01/13  12-13  
20/01/13  12-13  
20/01/13  12-13  
20/01/13  12-13  
21/01/13  12-13  
...         ...  
27/04/13  12-13  
28/04/13  12-13  
28/04/13  12-13  
03/05/13  12-13  
04/05/13  12-13  
04/05/13  12-13  
04/05/13  12-13  
04/05/13  12-13  
04/05/13  12-13  
04/05/13  12-13  
05/05/13  12-13  
05/05/13  12-13  
11/05/13  12-13  
11/05/13  12-13  
11/05/13  12-13  
11/05/13  12-13  
11/05/13  12-13  
11/05/13  12-13  
11/05/13  12-13  
11/05/13  12-13  
11/05/13  12-13  
18/05/13  12-13  
18/05/13  12-13  
18/05/13  12-13  
18/05/13  12-13  
18/05/13  12-13  
18/05/13  12-13  
18/05/13  12-13  
18/05/13  12-13  
18/05/13  12-13  

[1880 rows x 7 columns]
14
         league           home           away  hgoal  agoal result season
date                                                                     
22/08/14     D1  Bayern Munich      Wolfsburg      2      1      H  14-15
23/08/14     D1       Dortmund     Leverkusen      0      2      A  14-15
23/08/14     D1  Ein Frankfurt       Freiburg      1      0      H  14-15
23/08/14     D1        FC Koln        Hamburg      0      0      D  14-15
23/08/14     D1       Hannover     Schalke 04      2      1      H  14-15
23/08/14     D1         Hertha  Werder Bremen      2      2      D  14-15
23/08/14     D1     Hoffenheim       Augsburg      2      0      H  14-15
24/08/14     D1     M'gladbach      Stuttgart      1      1      D  14-15
24/08/14     D1      Paderborn          Mainz      2      2      D  14-15
29/08/14     D1       Augsburg       Dortmund      2      3      A  14-15
30/08/14     D1        Hamburg      Paderborn      0      3      A  14-15
30/08/14     D1     Leverkusen         Hertha      4      2      H  14-15
30/08/14     D1     Schalke 04  Bayern Munich      1      1      D  14-15
30/08/14     D1      Stuttgart        FC Koln      0      2      A  14-15
30/08/14     D1  Werder Bremen     Hoffenheim      1      1      D  14-15
30/08/14     D1      Wolfsburg  Ein Frankfurt      2      2      D  14-15
31/08/14     D1       Freiburg     M'gladbach      0      0      D  14-15
31/08/14     D1          Mainz       Hannover      0      0      D  14-15
12/09/14     D1     Leverkusen  Werder Bremen      3      3      D  14-15
13/09/14     D1  Bayern Munich      Stuttgart      2      0      H  14-15
13/09/14     D1       Dortmund       Freiburg      3      1      H  14-15
13/09/14     D1         Hertha          Mainz      1      3      A  14-15
13/09/14     D1     Hoffenheim      Wolfsburg      1      1      D  14-15
13/09/14     D1     M'gladbach     Schalke 04      4      1      H  14-15
13/09/14     D1      Paderborn        FC Koln      0      0      D  14-15
14/09/14     D1  Ein Frankfurt       Augsburg      0      1      A  14-15
14/09/14     D1       Hannover        Hamburg      2      0      H  14-15
19/09/14     D1       Freiburg         Hertha      2      2      D  14-15
20/09/14     D1       Augsburg  Werder Bremen      4      2      H  14-15
20/09/14     D1        Hamburg  Bayern Munich      0      0      D  14-15
...         ...            ...            ...    ...    ...    ...    ...
01/12/14    SP1        Almeria      Vallecano      0      1      A  14-15
06/12/14    SP1     Ath Bilbao        Cordoba      0      1      A  14-15
06/12/14    SP1          Elche     Ath Madrid      0      2      A  14-15
06/12/14    SP1      La Coruna         Malaga      0      1      A  14-15
06/12/14    SP1    Real Madrid          Celta      3      0      H  14-15
07/12/14    SP1      Barcelona        Espanol      5      1      H  14-15
07/12/14    SP1        Granada       Valencia      1      1      D  14-15
07/12/14    SP1      Vallecano        Sevilla      0      1      A  14-15
07/12/14    SP1     Villarreal       Sociedad      4      0      H  14-15
08/12/14    SP1          Eibar        Almeria      5      2      H  14-15
08/12/14    SP1        Levante         Getafe      1      1      D  14-15
12/12/14    SP1        Almeria    Real Madrid      1      4      A  14-15
13/12/14    SP1        Cordoba        Levante      0      0      D  14-15
13/12/14    SP1         Getafe      Barcelona      0      0      D  14-15
13/12/14    SP1         Malaga          Celta      1      0      H  14-15
13/12/14    SP1       Valencia      Vallecano      3      0      H  14-15
14/12/14    SP1     Ath Madrid     Villarreal      0      1      A  14-15
14/12/14    SP1        Espanol        Granada      2      1      H  14-15
14/12/14    SP1        Sevilla          Eibar      0      0      D  14-15
14/12/14    SP1       Sociedad     Ath Bilbao      1      1      D  14-15
15/12/14    SP1      La Coruna          Elche      1      0      H  14-15
19/12/14    SP1          Celta        Almeria      0      1      A  14-15
20/12/14    SP1      Barcelona        Cordoba      5      0      H  14-15
20/12/14    SP1          Eibar       Valencia      0      1      A  14-15
20/12/14    SP1        Levante       Sociedad      1      1      D  14-15
20/12/14    SP1      Vallecano        Espanol      1      3      A  14-15
21/12/14    SP1     Ath Bilbao     Ath Madrid      1      4      A  14-15
21/12/14    SP1          Elche         Malaga      1      2      A  14-15
21/12/14    SP1        Granada         Getafe      1      1      D  14-15
21/12/14    SP1     Villarreal      La Coruna      3      0      H  14-15

[1865 rows x 7 columns]
15
         league              home              away  hgoal  agoal result  \
date                                                                       
30/01/15     D1         Wolfsburg     Bayern Munich      4      1      H   
31/01/15     D1          Freiburg     Ein Frankfurt      4      1      H   
31/01/15     D1           Hamburg           FC Koln      0      2      A   
31/01/15     D1        Leverkusen          Dortmund      0      0      D   
31/01/15     D1             Mainz         Paderborn      5      0      H   
31/01/15     D1        Schalke 04          Hannover      1      0      H   
31/01/15     D1         Stuttgart        M'gladbach      0      1      A   
01/02/15     D1          Augsburg        Hoffenheim      3      1      H   
01/02/15     D1     Werder Bremen            Hertha      2      0      H   
03/02/15     D1     Bayern Munich        Schalke 04      1      1      D   
03/02/15     D1     Ein Frankfurt         Wolfsburg      1      1      D   
03/02/15     D1          Hannover             Mainz      1      1      D   
03/02/15     D1        M'gladbach          Freiburg      1      0      H   
04/02/15     D1          Dortmund          Augsburg      0      1      A   
04/02/15     D1           FC Koln         Stuttgart      0      0      D   
04/02/15     D1            Hertha        Leverkusen      0      1      A   
04/02/15     D1        Hoffenheim     Werder Bremen      1      2      A   
04/02/15     D1         Paderborn           Hamburg      0      3      A   
06/02/15     D1        Schalke 04        M'gladbach      1      0      H   
07/02/15     D1           FC Koln         Paderborn      0      0      D   
07/02/15     D1          Freiburg          Dortmund      0      3      A   
07/02/15     D1           Hamburg          Hannover      2      1      H   
07/02/15     D1             Mainz            Hertha      0      2      A   
07/02/15     D1         Stuttgart     Bayern Munich      0      2      A   
07/02/15     D1         Wolfsburg        Hoffenheim      3      0      H   
08/02/15     D1          Augsburg     Ein Frankfurt      2      2      D   
08/02/15     D1     Werder Bremen        Leverkusen      2      1      H   
13/02/15     D1          Dortmund             Mainz      4      2      H   
14/02/15     D1     Bayern Munich           Hamburg      8      0      H   
14/02/15     D1     Ein Frankfurt        Schalke 04      1      0      H   
...         ...               ...               ...    ...    ...    ...   
19/12/15     E2          Barnsley             Wigan      0      2      A   
19/12/15     E2         Blackpool         Peterboro      2      0      H   
19/12/15     E2            Burton         Doncaster      3      3      D   
19/12/15     E2      Chesterfield          Bradford      0      1      A   
19/12/15     E2          Coventry            Oldham      1      1      D   
19/12/15     E2             Crewe    Fleetwood Town      1      1      D   
19/12/15     E2          Millwall        Gillingham      0      3      A   
19/12/15     E2          Rochdale        Colchester      3      1      H   
19/12/15     E2        Scunthorpe  Sheffield United      0      1      A   
19/12/15     E2        Shrewsbury           Swindon      0      1      A   
20/12/15     E2           Walsall         Port Vale      2      0      H   
26/12/15     E2        Colchester          Southend      0      2      A   
26/12/15     E2          Coventry         Port Vale      1      0      H   
26/12/15     E2         Doncaster        Scunthorpe      0      1      A   
26/12/15     E2          Millwall           Walsall      0      1      A   
26/12/15     E2         Peterboro      Chesterfield      2      0      H   
26/12/15     E2        Shrewsbury    Fleetwood Town      1      1      D   
26/12/15     E2           Swindon        Gillingham      1      3      A   
28/12/15     E2          Barnsley         Blackpool      4      2      H   
28/12/15     E2            Burton           Swindon      1      0      H   
28/12/15     E2      Chesterfield          Coventry      1      1      D   
28/12/15     E2             Crewe        Shrewsbury      1      2      A   
28/12/15     E2    Fleetwood Town             Wigan      1      3      A   
28/12/15     E2        Gillingham        Colchester      1      0      H   
28/12/15     E2            Oldham         Doncaster      1      2      A   
28/12/15     E2         Port Vale              Bury      1      0      H   
28/12/15     E2        Scunthorpe          Rochdale      1      1      D   
28/12/15     E2  Sheffield United          Bradford      3      1      H   
28/12/15     E2          Southend          Millwall      0      4      A   
28/12/15     E2           Walsall         Peterboro      2      0      H   

         season  
date             
30/01/15  14-15  
31/01/15  14-15  
31/01/15  14-15  
31/01/15  14-15  
31/01/15  14-15  
31/01/15  14-15  
31/01/15  14-15  
01/02/15  14-15  
01/02/15  14-15  
03/02/15  14-15  
03/02/15  14-15  
03/02/15  14-15  
03/02/15  14-15  
04/02/15  14-15  
04/02/15  14-15  
04/02/15  14-15  
04/02/15  14-15  
04/02/15  14-15  
06/02/15  14-15  
07/02/15  14-15  
07/02/15  14-15  
07/02/15  14-15  
07/02/15  14-15  
07/02/15  14-15  
07/02/15  14-15  
08/02/15  14-15  
08/02/15  14-15  
13/02/15  14-15  
14/02/15  14-15  
14/02/15  14-15  
...         ...  
19/12/15  15-16  
19/12/15  15-16  
19/12/15  15-16  
19/12/15  15-16  
19/12/15  15-16  
19/12/15  15-16  
19/12/15  15-16  
19/12/15  15-16  
19/12/15  15-16  
19/12/15  15-16  
20/12/15  15-16  
26/12/15  15-16  
26/12/15  15-16  
26/12/15  15-16  
26/12/15  15-16  
26/12/15  15-16  
26/12/15  15-16  
26/12/15  15-16  
28/12/15  15-16  
28/12/15  15-16  
28/12/15  15-16  
28/12/15  15-16  
28/12/15  15-16  
28/12/15  15-16  
28/12/15  15-16  
28/12/15  15-16  
28/12/15  15-16  
28/12/15  15-16  
28/12/15  15-16  
28/12/15  15-16  

[1951 rows x 7 columns]
16
         league                  home                  away  hgoal  agoal  \
date                                                                        
16/01/16     T1  Akhisar Belediyespor             Konyaspor      0      2   
16/01/16     T1           Galatasaray             Sivasspor      3      1   
16/01/16     T1             Kasimpasa         Gaziantepspor      1      2   
16/01/16     T1           Kayserispor           Osmanlispor      1      0   
17/01/16     T1           Antalyaspor            Buyuksehyr      1      2   
17/01/16     T1             Bursaspor           Trabzonspor      4      2   
17/01/16     T1              Rizespor        Genclerbirligi      2      3   
18/01/16     T1         Eskisehirspor            Fenerbahce      0      3   
23/01/16     T1             Konyaspor           Kayserispor      1      0   
23/01/16     T1    Mersin Idman Yurdu  Akhisar Belediyespor      0      0   
23/01/16     T1           Osmanlispor           Galatasaray      3      2   
24/01/16     T1            Fenerbahce              Rizespor      2      1   
24/01/16     T1         Gaziantepspor             Bursaspor      2      3   
24/01/16     T1        Genclerbirligi           Antalyaspor      1      0   
24/01/16     T1             Sivasspor         Eskisehirspor      1      2   
25/01/16     T1            Buyuksehyr             Kasimpasa      1      1   
05/02/16     T1           Antalyaspor            Fenerbahce      4      2   
05/02/16     T1           Osmanlispor             Sivasspor      4      0   
06/02/16     T1             Bursaspor            Buyuksehyr      3      3   
06/02/16     T1           Galatasaray             Konyaspor      0      0   
06/02/16     T1           Kayserispor    Mersin Idman Yurdu      0      1   
07/02/16     T1  Akhisar Belediyespor           Trabzonspor      2      1   
07/02/16     T1              Besiktas         Gaziantepspor      4      0   
07/02/16     T1              Rizespor         Eskisehirspor      1      1   
08/02/16     T1             Kasimpasa        Genclerbirligi      0      1   
12/02/16     T1            Fenerbahce             Kasimpasa      3      1   
13/02/16     T1        Genclerbirligi             Bursaspor      2      0   
13/02/16     T1             Konyaspor           Osmanlispor      1      1   
13/02/16     T1    Mersin Idman Yurdu           Galatasaray      2      1   
14/02/16     T1            Buyuksehyr              Besiktas      2      2   
...         ...                   ...                   ...    ...    ...   
23/04/16     E2             Peterboro            Scunthorpe      0      2   
23/04/16     E2             Port Vale              Rochdale      4      1   
23/04/16     E2      Sheffield United              Barnsley      0      0   
23/04/16     E2               Swindon          Chesterfield      1      0   
23/04/16     E2                 Wigan              Southend      4      1   
26/04/16     E2               Walsall            Shrewsbury      2      1   
30/04/16     E2              Barnsley            Colchester      2      2   
30/04/16     E2             Blackpool                 Wigan      0      4   
30/04/16     E2                Burton            Gillingham      2      1   
30/04/16     E2          Chesterfield                  Bury      3      0   
30/04/16     E2              Coventry      Sheffield United      3      1   
30/04/16     E2                 Crewe             Doncaster      3      1   
30/04/16     E2              Millwall                Oldham      3      0   
30/04/16     E2              Rochdale               Swindon      2      2   
30/04/16     E2            Scunthorpe             Port Vale      1      0   
30/04/16     E2            Shrewsbury             Peterboro      3      4   
30/04/16     E2              Southend              Bradford      0      1   
02/05/16     E2               Walsall        Fleetwood Town      3      1   
08/05/16     E2              Bradford          Chesterfield      2      0   
08/05/16     E2                  Bury              Southend      3      2   
08/05/16     E2            Colchester              Rochdale      1      2   
08/05/16     E2             Doncaster                Burton      0      0   
08/05/16     E2        Fleetwood Town                 Crewe      2      0   
08/05/16     E2            Gillingham              Millwall      1      2   
08/05/16     E2                Oldham              Coventry      0      2   
08/05/16     E2             Peterboro             Blackpool      5      1   
08/05/16     E2             Port Vale               Walsall      0      5   
08/05/16     E2      Sheffield United            Scunthorpe      0      2   
08/05/16     E2               Swindon            Shrewsbury      3      0   
08/05/16     E2                 Wigan              Barnsley      1      4   

         result season  
date                    
16/01/16      A  15-16  
16/01/16      H  15-16  
16/01/16      A  15-16  
16/01/16      H  15-16  
17/01/16      A  15-16  
17/01/16      H  15-16  
17/01/16      A  15-16  
18/01/16      A  15-16  
23/01/16      H  15-16  
23/01/16      D  15-16  
23/01/16      H  15-16  
24/01/16      H  15-16  
24/01/16      A  15-16  
24/01/16      H  15-16  
24/01/16      A  15-16  
25/01/16      D  15-16  
05/02/16      H  15-16  
05/02/16      H  15-16  
06/02/16      D  15-16  
06/02/16      D  15-16  
06/02/16      A  15-16  
07/02/16      H  15-16  
07/02/16      H  15-16  
07/02/16      D  15-16  
08/02/16      A  15-16  
12/02/16      H  15-16  
13/02/16      H  15-16  
13/02/16      D  15-16  
13/02/16      H  15-16  
14/02/16      D  15-16  
...         ...    ...  
23/04/16      A  15-16  
23/04/16      H  15-16  
23/04/16      D  15-16  
23/04/16      H  15-16  
23/04/16      H  15-16  
26/04/16      H  15-16  
30/04/16      D  15-16  
30/04/16      A  15-16  
30/04/16      H  15-16  
30/04/16      H  15-16  
30/04/16      H  15-16  
30/04/16      H  15-16  
30/04/16      H  15-16  
30/04/16      D  15-16  
30/04/16      H  15-16  
30/04/16      A  15-16  
30/04/16      A  15-16  
02/05/16      H  15-16  
08/05/16      H  15-16  
08/05/16      H  15-16  
08/05/16      A  15-16  
08/05/16      D  15-16  
08/05/16      H  15-16  
08/05/16      A  15-16  
08/05/16      A  15-16  
08/05/16      H  15-16  
08/05/16      A  15-16  
08/05/16      A  15-16  
08/05/16      H  15-16  
08/05/16      A  15-16  

[982 rows x 7 columns]

If we wished to group by individual month instead, we would need to apply groupby with a level argument, as follows:


In [11]:
# Same day games
for name, group in (seasonData.groupby(level=0)):
    print name
    print group
    print "\n"


01/01/13
         league          home                away  hgoal  agoal result season
date                                                                         
01/01/13     E2     Brentford         Bournemouth      0      0      D  12-13
01/01/13     E2          Bury            Tranmere      0      1      A  12-13
01/01/13     E2      Coventry          Shrewsbury      0      1      A  12-13
01/01/13     E2  Crawley Town          Colchester      3      0      H  12-13
01/01/13     E2         Crewe            Carlisle      1      0      H  12-13
01/01/13     E2     Doncaster    Sheffield United      2      2      D  12-13
01/01/13     E2    Hartlepool             Preston      0      1      A  12-13
01/01/13     E2  Notts County  Milton Keynes Dons      1      2      A  12-13
01/01/13     E2    Scunthorpe              Oldham      2      2      D  12-13
01/01/13     E2       Swindon          Portsmouth      5      0      H  12-13
01/01/13     E2       Walsall           Stevenage      1      0      H  12-13
01/01/13     E2        Yeovil       Leyton Orient      3      0      H  12-13


01/01/14
         league                home              away  hgoal  agoal result  \
date                                                                         
01/01/14     E2               Crewe          Carlisle      2      1      H   
01/01/14     E2  Milton Keynes Dons        Colchester      0      0      D   
01/01/14     E2        Notts County          Bradford      3      0      H   
01/01/14     E2              Oldham        Shrewsbury      1      2      A   
01/01/14     E2           Peterboro         Brentford      1      3      A   
01/01/14     E2             Preston         Port Vale      3      2      H   
01/01/14     E2           Rotherham          Coventry      1      3      A   
01/01/14     E2            Tranmere            Wolves      1      1      D   
01/01/14     E2             Walsall  Sheffield United      2      1      H   

         season  
date             
01/01/14  13-14  
01/01/14  13-14  
01/01/14  13-14  
01/01/14  13-14  
01/01/14  13-14  
01/01/14  13-14  
01/01/14  13-14  
01/01/14  13-14  
01/01/14  13-14  


01/02/12
         league            home           away  hgoal  agoal result season
date                                                                      
01/02/12     I1        Cagliari           Roma      4      2      H  11-12
01/02/12     I1           Inter        Palermo      4      4      D  11-12
01/02/12     I1           Lazio          Milan      2      0      H  11-12
01/02/12     I1          Napoli         Cesena      0      0      D  11-12
01/02/12     I1         Udinese          Lecce      2      1      H  11-12
01/02/12     T1     Galatasaray    Antalyaspor      1      1      D  11-12
01/02/12     T1  Genclerbirligi  Gaziantepspor      1      0      H  11-12
01/02/12     T1        Orduspor     Ankaragucu      2      0      H  11-12
01/02/12     T1     Trabzonspor      Bursaspor      2      1      H  11-12


01/02/13
         league                  home         away  hgoal  agoal result season
date                                                                          
01/02/13    SP1            Valladolid   Ath Bilbao      2      2      D  12-13
01/02/13     I1                  Roma     Cagliari      2      4      A  12-13
01/02/13     T1  Akhisar Belediyespor  Kayserispor      1      2      A  12-13
01/02/13     T1              Besiktas  Karabukspor      2      2      D  12-13
01/02/13     E2      Sheffield United     Coventry      1      2      A  12-13
01/02/13     D1         Werder Bremen     Hannover      2      0      H  12-13


01/02/14
         league                home              away  hgoal  agoal result  \
date                                                                         
01/02/14     D1            Augsburg     Werder Bremen      3      1      H   
01/02/14     D1            Hannover        M'gladbach      3      1      H   
01/02/14     D1          Hoffenheim           Hamburg      3      0      H   
01/02/14     D1          Leverkusen         Stuttgart      2      1      H   
01/02/14     D1               Mainz          Freiburg      2      0      H   
01/02/14     D1          Schalke 04         Wolfsburg      2      1      H   
01/02/14     T1         Antalyaspor     Gaziantepspor      0      1      A   
01/02/14     T1       Eskisehirspor        Fenerbahce      2      1      H   
01/02/14     T1         Kayserispor         Kasimpasa      0      0      D   
01/02/14     E2        Bristol City          Carlisle      2      1      H   
01/02/14     E2               Crewe  Sheffield United      3      0      H   
01/02/14     E2          Gillingham         Port Vale      3      2      H   
01/02/14     E2  Milton Keynes Dons          Tranmere      0      1      A   
01/02/14     E2             Preston      Notts County      2      0      H   
01/02/14     E2           Rotherham     Leyton Orient      2      1      H   
01/02/14     E2          Shrewsbury         Brentford      1      1      D   
01/02/14     E2             Swindon            Oldham      0      1      A   
01/02/14     E2              Wolves          Bradford      2      0      H   
01/02/14    SP1           Barcelona          Valencia      2      3      A   
01/02/14    SP1              Getafe        Valladolid      0      0      D   
01/02/14    SP1             Levante         Vallecano      0      0      D   
01/02/14    SP1              Malaga           Sevilla      3      2      H   
01/02/14     I1             Bologna           Udinese      0      2      A   
01/02/14     I1            Cagliari        Fiorentina      1      0      H   
01/02/14     I1               Milan            Torino      1      1      D   

         season  
date             
01/02/14  13-14  
01/02/14  13-14  
01/02/14  13-14  
01/02/14  13-14  
01/02/14  13-14  
01/02/14  13-14  
01/02/14  13-14  
01/02/14  13-14  
01/02/14  13-14  
01/02/14  13-14  
01/02/14  13-14  
01/02/14  13-14  
01/02/14  13-14  
01/02/14  13-14  
01/02/14  13-14  
01/02/14  13-14  
01/02/14  13-14  
01/02/14  13-14  
01/02/14  13-14  
01/02/14  13-14  
01/02/14  13-14  
01/02/14  13-14  
01/02/14  13-14  
01/02/14  13-14  
01/02/14  13-14  


01/02/15
         league            home                away  hgoal  agoal result  \
date                                                                       
01/02/15     D1        Augsburg          Hoffenheim      3      1      H   
01/02/15     D1   Werder Bremen              Hertha      2      0      H   
01/02/15     I1        Atalanta            Cagliari      2      1      H   
01/02/15     I1          Cesena               Lazio      2      1      H   
01/02/15     I1          Chievo              Napoli      1      2      A   
01/02/15     I1           Milan               Parma      3      1      H   
01/02/15     I1         Palermo              Verona      2      1      H   
01/02/15     I1        Sassuolo               Inter      3      1      H   
01/02/15     I1          Torino           Sampdoria      5      1      H   
01/02/15     I1         Udinese            Juventus      0      0      D   
01/02/15     T1        Besiktas  Mersin Idman Yurdu      2      1      H   
01/02/15     T1     Galatasaray           Bursaspor      2      2      D   
01/02/15     T1  Genclerbirligi            Rizespor      0      2      A   
01/02/15     T1       Konyaspor       Eskisehirspor      1      0      H   
01/02/15     E2    Bristol City      Fleetwood Town      2      0      H   
01/02/15     E2         Walsall          Gillingham      1      1      D   
01/02/15    SP1         Almeria              Getafe      1      0      H   
01/02/15    SP1       Barcelona          Villarreal      3      2      H   
01/02/15    SP1         Levante          Ath Bilbao      0      2      A   
01/02/15    SP1         Sevilla             Espanol      3      2      H   

         season  
date             
01/02/15  14-15  
01/02/15  14-15  
01/02/15  14-15  
01/02/15  14-15  
01/02/15  14-15  
01/02/15  14-15  
01/02/15  14-15  
01/02/15  14-15  
01/02/15  14-15  
01/02/15  14-15  
01/02/15  14-15  
01/02/15  14-15  
01/02/15  14-15  
01/02/15  14-15  
01/02/15  14-15  
01/02/15  14-15  
01/02/15  14-15  
01/02/15  14-15  
01/02/15  14-15  
01/02/15  14-15  


01/02/16
         league       home       away  hgoal  agoal result season
date                                                             
01/02/16    SP1  La Coruna  Vallecano      2      2      D  15-16


01/03/13
         league            home        away  hgoal  agoal result season
date                                                                   
01/03/13    SP1          Getafe    Zaragoza      2      0      H  12-13
01/03/13     I1          Napoli    Juventus      1      1      D  12-13
01/03/13     T1  Genclerbirligi  Buyuksehyr      0      0      D  12-13
01/03/13     D1   Ein Frankfurt  M'gladbach      0      1      A  12-13


01/03/14
         league                home              away  hgoal  agoal result  \
date                                                                         
01/03/14     D1            Augsburg          Hannover      1      1      D   
01/03/14     D1       Bayern Munich        Schalke 04      5      1      H   
01/03/14     D1        Braunschweig        M'gladbach      1      1      D   
01/03/14     D1            Dortmund          Nurnberg      3      0      H   
01/03/14     D1          Leverkusen             Mainz      0      1      A   
01/03/14     D1       Werder Bremen           Hamburg      1      0      H   
01/03/14     T1       Eskisehirspor         Kasimpasa      0      0      D   
01/03/14     T1          Fenerbahce    Genclerbirligi      2      0      H   
01/03/14     T1         Karabukspor     Gaziantepspor      0      1      A   
01/03/14     E2        Bristol City        Gillingham      2      1      H   
01/03/14     E2            Carlisle         Brentford      0      0      D   
01/03/14     E2        Crawley Town         Peterboro      1      0      H   
01/03/14     E2               Crewe           Swindon      1      1      D   
01/03/14     E2       Leyton Orient        Colchester      2      1      H   
01/03/14     E2  Milton Keynes Dons  Sheffield United      0      1      A   
01/03/14     E2             Preston           Walsall      2      1      H   
01/03/14     E2           Rotherham      Notts County      6      0      H   
01/03/14     E2            Tranmere            Oldham      2      2      D   
01/03/14     E2              Wolves         Port Vale      3      0      H   
01/03/14    SP1               Elche             Celta      1      0      H   
01/03/14    SP1              Getafe           Espanol      0      0      D   
01/03/14    SP1             Levante           Osasuna      2      0      H   
01/03/14    SP1              Malaga        Valladolid      1      1      D   
01/03/14     I1                Roma             Inter      0      0      D   

         season  
date             
01/03/14  13-14  
01/03/14  13-14  
01/03/14  13-14  
01/03/14  13-14  
01/03/14  13-14  
01/03/14  13-14  
01/03/14  13-14  
01/03/14  13-14  
01/03/14  13-14  
01/03/14  13-14  
01/03/14  13-14  
01/03/14  13-14  
01/03/14  13-14  
01/03/14  13-14  
01/03/14  13-14  
01/03/14  13-14  
01/03/14  13-14  
01/03/14  13-14  
01/03/14  13-14  
01/03/14  13-14  
01/03/14  13-14  
01/03/14  13-14  
01/03/14  13-14  
01/03/14  13-14  


01/03/15
         league                  home                away  hgoal  agoal  \
date                                                                      
01/03/15     D1            M'gladbach           Paderborn      2      0   
01/03/15     D1         Werder Bremen           Wolfsburg      3      5   
01/03/15     I1              Atalanta           Sampdoria      1      2   
01/03/15     I1              Cagliari              Verona      1      2   
01/03/15     I1                Cesena             Udinese      1      0   
01/03/15     I1                 Inter          Fiorentina      0      1   
01/03/15     I1               Palermo              Empoli      0      0   
01/03/15     I1              Sassuolo               Lazio      0      3   
01/03/15     I1                Torino              Napoli      1      0   
01/03/15     T1  Akhisar Belediyespor          Buyuksehyr      0      2   
01/03/15     T1              Besiktas       Balikesirspor      2      2   
01/03/15     T1             Bursaspor  Mersin Idman Yurdu      2      1   
01/03/15     T1         Gaziantepspor           Kasimpasa      0      2   
01/03/15    SP1                 Eibar          Ath Bilbao      0      1   
01/03/15    SP1           Real Madrid          Villarreal      1      1   
01/03/15    SP1               Sevilla          Ath Madrid      0      0   
01/03/15    SP1              Valencia            Sociedad      2      0   

         result season  
date                    
01/03/15      H  14-15  
01/03/15      A  14-15  
01/03/15      A  14-15  
01/03/15      A  14-15  
01/03/15      H  14-15  
01/03/15      A  14-15  
01/03/15      D  14-15  
01/03/15      A  14-15  
01/03/15      H  14-15  
01/03/15      A  14-15  
01/03/15      D  14-15  
01/03/15      H  14-15  
01/03/15      A  14-15  
01/03/15      A  14-15  
01/03/15      D  14-15  
01/03/15      D  14-15  
01/03/15      H  14-15  


01/03/16
         league              home        away  hgoal  agoal result season
date                                                                     
01/03/16     D1          Hannover   Wolfsburg      0      4      A  15-16
01/03/16     D1        Ingolstadt     FC Koln      1      1      D  15-16
01/03/16    SP1        Ath Madrid    Sociedad      3      0      H  15-16
01/03/16    SP1        Las Palmas      Getafe      4      0      H  15-16
01/03/16     E2          Barnsley    Coventry      2      0      H  15-16
01/03/16     E2          Bradford  Colchester      1      2      A  15-16
01/03/16     E2              Bury   Peterboro      3      1      H  15-16
01/03/16     E2      Chesterfield   Blackpool      1      1      D  15-16
01/03/16     E2    Fleetwood Town  Gillingham      2      1      H  15-16
01/03/16     E2          Millwall       Wigan      0      0      D  15-16
01/03/16     E2            Oldham   Port Vale      1      1      D  15-16
01/03/16     E2  Sheffield United      Burton      0      1      A  15-16
01/03/16     E2        Shrewsbury    Rochdale      2      0      H  15-16
01/03/16     E2          Southend       Crewe      1      1      D  15-16
01/03/16     E2           Swindon   Doncaster      2      0      H  15-16
01/03/16     E2           Walsall  Scunthorpe      0      0      D  15-16


01/04/12
         league         home        away  hgoal  agoal result season
date                                                                
01/04/12    SP1   Ath Madrid      Getafe      3      0      H  11-12
01/04/12    SP1     Sociedad   Vallecano      4      0      H  11-12
01/04/12    SP1     Valencia     Levante      1      1      D  11-12
01/04/12    SP1   Villarreal     Espanol      0      0      D  11-12
01/04/12     I1      Bologna     Palermo      1      3      A  11-12
01/04/12     I1     Cagliari    Atalanta      2      0      H  11-12
01/04/12     I1   Fiorentina      Chievo      1      2      A  11-12
01/04/12     I1        Inter       Genoa      5      4      H  11-12
01/04/12     I1     Juventus      Napoli      3      0      H  11-12
01/04/12     I1        Lecce      Cesena      0      0      D  11-12
01/04/12     I1         Roma      Novara      5      2      H  11-12
01/04/12     I1        Siena     Udinese      1      0      H  11-12
01/04/12     D1     Hannover  M'gladbach      2      1      H  11-12
01/04/12     D1   Hoffenheim  Schalke 04      1      1      D  11-12
01/04/12     T1  Antalyaspor   Bursaspor      1      3      A  11-12
01/04/12     T1     Besiktas  Samsunspor      0      1      A  11-12
01/04/12     T1  Trabzonspor  Fenerbahce      1      1      D  11-12


01/04/13
         league                home          away  hgoal  agoal result season
date                                                                         
01/04/13    SP1          Ath Bilbao       Granada      1      0      H  12-13
01/04/13    SP1               Betis        Getafe      0      0      D  12-13
01/04/13     T1         Karabukspor   Kayserispor      3      1      H  12-13
01/04/13     T1  Mersin Idman Yurdu      Besiktas      1      2      A  12-13
01/04/13     E2         Bournemouth    Scunthorpe      1      0      H  12-13
01/04/13     E2               Crewe       Preston      1      0      H  12-13
01/04/13     E2           Doncaster       Swindon      1      0      H  12-13
01/04/13     E2       Leyton Orient          Bury      2      0      H  12-13
01/04/13     E2  Milton Keynes Dons     Brentford      2      0      H  12-13
01/04/13     E2        Notts County        Yeovil      1      2      A  12-13
01/04/13     E2              Oldham    Colchester      1      1      D  12-13
01/04/13     E2          Portsmouth      Tranmere      1      0      H  12-13
01/04/13     E2    Sheffield United      Carlisle      0      0      D  12-13
01/04/13     E2          Shrewsbury  Crawley Town      3      0      H  12-13
01/04/13     E2           Stevenage    Hartlepool      1      0      H  12-13
01/04/13     E2             Walsall      Coventry      4      0      H  12-13


01/04/14
         league              home          away  hgoal  agoal result season
date                                                                       
01/04/14     E2          Coventry      Bradford      0      0      D  13-14
01/04/14     E2         Port Vale  Crawley Town      2      1      H  13-14
01/04/14     E2  Sheffield United     Brentford      0      0      D  13-14
01/04/14     E2         Stevenage        Wolves      0      0      D  13-14


01/04/15
         league      home           away  hgoal  agoal result season
date                                                                
01/04/15     E2  Coventry  Leyton Orient      0      1      A  14-15


01/04/16
         league        home       away  hgoal  agoal result season
date                                                              
01/04/16     D1  Leverkusen  Wolfsburg      3      0      H  15-16
01/04/16    SP1   Vallecano     Getafe      2      0      H  15-16


01/05/12
         league      home        away  hgoal  agoal result season
date                                                             
01/05/12    SP1    Getafe   Santander      1      1      D  11-12
01/05/12    SP1   Granada     Espanol      2      1      H  11-12
01/05/12    SP1  Sp Gijon  Villarreal      2      3      A  11-12
01/05/12     I1    Chievo        Roma      0      0      D  11-12
01/05/12     I1    Napoli     Palermo      2      0      H  11-12


01/05/15
         league      home     away  hgoal  agoal result season
date                                                          
01/05/15    SP1  Sociedad  Levante      3      0      H  14-15


01/05/16
         league         home                  away  hgoal  agoal result season
date                                                                          
01/05/16     T1  Antalyaspor             Konyaspor      1      0      H  15-16
01/05/16     T1   Fenerbahce         Gaziantepspor      3      0      H  15-16
01/05/16     T1    Sivasspor  Akhisar Belediyespor      1      1      D  15-16
01/05/16     I1       Empoli               Bologna      0      0      D  15-16
01/05/16     I1     Juventus                 Carpi      2      0      H  15-16
01/05/16     I1        Lazio                 Inter      2      0      H  15-16
01/05/16     I1        Milan             Frosinone      3      3      D  15-16
01/05/16     I1      Palermo             Sampdoria      2      0      H  15-16
01/05/16     I1     Sassuolo                Verona      1      0      H  15-16
01/05/16    SP1   Ath Bilbao                 Celta      2      1      H  15-16
01/05/16    SP1      Espanol               Sevilla      1      0      H  15-16
01/05/16    SP1    La Coruna                Getafe      0      2      A  15-16
01/05/16    SP1     Valencia            Villarreal      0      2      A  15-16


01/06/13
         league         home        away  hgoal  agoal result season
date                                                                
01/06/13    SP1    Barcelona      Malaga      4      1      H  12-13
01/06/13    SP1        Celta     Espanol      1      0      H  12-13
01/06/13    SP1      Granada      Getafe      2      0      H  12-13
01/06/13    SP1    La Coruna    Sociedad      0      1      A  12-13
01/06/13    SP1      Levante       Betis      1      1      D  12-13
01/06/13    SP1     Mallorca  Valladolid      4      2      H  12-13
01/06/13    SP1  Real Madrid     Osasuna      4      2      H  12-13
01/06/13    SP1      Sevilla    Valencia      4      3      H  12-13
01/06/13    SP1    Vallecano  Ath Bilbao      2      2      D  12-13
01/06/13    SP1     Zaragoza  Ath Madrid      1      3      A  12-13


01/09/12
         league                home                  away  hgoal  agoal  \
date                                                                      
01/09/12    SP1               Celta               Osasuna      2      0   
01/09/12    SP1           La Coruna                Getafe      1      1   
01/09/12    SP1            Mallorca              Sociedad      1      0   
01/09/12    SP1            Zaragoza                Malaga      0      1   
01/09/12     I1             Bologna                 Milan      1      3   
01/09/12     I1              Torino               Pescara      3      0   
01/09/12     T1          Buyuksehyr           Antalyaspor      0      1   
01/09/12     T1          Elazigspor             Kasimpasa      0      3   
01/09/12     T1         Karabukspor              Besiktas      0      3   
01/09/12     T1         Kayserispor  Akhisar Belediyespor      1      1   
01/09/12     E2                Bury          Notts County      0      2   
01/09/12     E2        Crawley Town         Leyton Orient      1      0   
01/09/12     E2               Crewe              Coventry      1      0   
01/09/12     E2          Hartlepool            Scunthorpe      2      0   
01/09/12     E2  Milton Keynes Dons              Carlisle      2      0   
01/09/12     E2          Portsmouth                Oldham      0      1   
01/09/12     E2    Sheffield United           Bournemouth      5      3   
01/09/12     E2           Stevenage            Shrewsbury      1      1   
01/09/12     E2            Tranmere            Colchester      4      0   
01/09/12     E2             Walsall             Brentford      2      2   
01/09/12     E2              Yeovil             Doncaster      2      1   
01/09/12     D1  Fortuna Dusseldorf            M'gladbach      0      0   
01/09/12     D1          Hoffenheim         Ein Frankfurt      0      4   
01/09/12     D1          Leverkusen              Freiburg      2      0   
01/09/12     D1            Nurnberg              Dortmund      1      1   
01/09/12     D1          Schalke 04              Augsburg      3      1   
01/09/12     D1       Werder Bremen               Hamburg      2      0   

         result season  
date                    
01/09/12      H  12-13  
01/09/12      D  12-13  
01/09/12      H  12-13  
01/09/12      A  12-13  
01/09/12      A  12-13  
01/09/12      H  12-13  
01/09/12      A  12-13  
01/09/12      A  12-13  
01/09/12      A  12-13  
01/09/12      D  12-13  
01/09/12      A  12-13  
01/09/12      H  12-13  
01/09/12      H  12-13  
01/09/12      H  12-13  
01/09/12      H  12-13  
01/09/12      A  12-13  
01/09/12      H  12-13  
01/09/12      D  12-13  
01/09/12      H  12-13  
01/09/12      D  12-13  
01/09/12      H  12-13  
01/09/12      D  12-13  
01/09/12      A  12-13  
01/09/12      H  12-13  
01/09/12      D  12-13  
01/09/12      H  12-13  
01/09/12      H  12-13  


01/09/13
         league                  home            away  hgoal  agoal result  \
date                                                                         
01/09/13     D1         Ein Frankfurt        Dortmund      1      2      A   
01/09/13     D1             Stuttgart      Hoffenheim      6      2      H   
01/09/13     T1  Akhisar Belediyespor     Trabzonspor      3      0      H   
01/09/13     T1              Besiktas   Gaziantepspor      2      0      H   
01/09/13     T1           Karabukspor  Genclerbirligi      1      0      H   
01/09/13     T1              Rizespor     Erciyesspor      2      1      H   
01/09/13    SP1               Espanol           Betis      0      0      D   
01/09/13    SP1           Real Madrid      Ath Bilbao      3      1      H   
01/09/13    SP1               Sevilla          Malaga      2      2      D   
01/09/13    SP1              Sociedad      Ath Madrid      1      2      A   
01/09/13    SP1              Valencia       Barcelona      2      3      A   
01/09/13     I1              Atalanta          Torino      2      0      H   
01/09/13     I1               Bologna       Sampdoria      2      2      D   
01/09/13     I1               Catania           Inter      0      3      A   
01/09/13     I1                 Genoa      Fiorentina      2      5      A   
01/09/13     I1                 Milan        Cagliari      3      1      H   
01/09/13     I1                  Roma          Verona      3      0      H   
01/09/13     I1              Sassuolo         Livorno      1      4      A   
01/09/13     I1               Udinese           Parma      3      1      H   

         season  
date             
01/09/13  13-14  
01/09/13  13-14  
01/09/13  13-14  
01/09/13  13-14  
01/09/13  13-14  
01/09/13  13-14  
01/09/13  13-14  
01/09/13  13-14  
01/09/13  13-14  
01/09/13  13-14  
01/09/13  13-14  
01/09/13  13-14  
01/09/13  13-14  
01/09/13  13-14  
01/09/13  13-14  
01/09/13  13-14  
01/09/13  13-14  
01/09/13  13-14  
01/09/13  13-14  


01/10/11
         league                home            away  hgoal  agoal result  \
date                                                                       
01/10/11    SP1              Malaga          Getafe      3      2      H   
01/10/11    SP1             Osasuna        Mallorca      2      2      D   
01/10/11    SP1           Santander       Vallecano      1      1      D   
01/10/11    SP1            Valencia         Granada      1      0      H   
01/10/11    SP1          Villarreal        Zaragoza      2      2      D   
01/10/11     I1               Inter          Napoli      0      3      A   
01/10/11     I1                Roma        Atalanta      3      1      H   
01/10/11     D1            Dortmund        Augsburg      4      0      H   
01/10/11     D1            Freiburg      M'gladbach      1      0      H   
01/10/11     D1              Hertha         FC Koln      3      0      H   
01/10/11     D1          Hoffenheim   Bayern Munich      0      0      D   
01/10/11     D1          Leverkusen       Wolfsburg      3      1      H   
01/10/11     D1            Nurnberg           Mainz      3      3      D   
01/10/11     T1         Antalyaspor       Sivasspor      2      2      D   
01/10/11     T1          Fenerbahce      Buyuksehyr      4      2      H   
01/10/11     T1         Karabukspor        Orduspor      1      2      A   
01/10/11     E2           Brentford    Huddersfield      0      4      A   
01/10/11     E2        Chesterfield      Colchester      0      1      A   
01/10/11     E2              Exeter          Oldham      2      0      H   
01/10/11     E2          Hartlepool  Sheffield Weds      0      1      A   
01/10/11     E2       Leyton Orient         Preston      2      1      H   
01/10/11     E2  Milton Keynes Dons    Notts County      3      0      H   
01/10/11     E2            Rochdale         Wycombe      2      1      H   
01/10/11     E2    Sheffield United        Charlton      0      2      A   
01/10/11     E2           Stevenage      Scunthorpe      1      2      A   
01/10/11     E2            Tranmere     Bournemouth      0      0      D   
01/10/11     E2             Walsall        Carlisle      1      1      D   
01/10/11     E2              Yeovil            Bury      1      3      A   

         season  
date             
01/10/11  11-12  
01/10/11  11-12  
01/10/11  11-12  
01/10/11  11-12  
01/10/11  11-12  
01/10/11  11-12  
01/10/11  11-12  
01/10/11  11-12  
01/10/11  11-12  
01/10/11  11-12  
01/10/11  11-12  
01/10/11  11-12  
01/10/11  11-12  
01/10/11  11-12  
01/10/11  11-12  
01/10/11  11-12  
01/10/11  11-12  
01/10/11  11-12  
01/10/11  11-12  
01/10/11  11-12  
01/10/11  11-12  
01/10/11  11-12  
01/10/11  11-12  
01/10/11  11-12  
01/10/11  11-12  
01/10/11  11-12  
01/10/11  11-12  
01/10/11  11-12  


01/10/12
         league      home       away  hgoal  agoal result season
date                                                            
01/10/12    SP1    Getafe   Mallorca      1      0      H  12-13
01/10/12     T1  Besiktas  Sivasspor      0      1      A  12-13


01/11/12
         league   home        away  hgoal  agoal result season
date                                                          
01/11/12     I1  Genoa  Fiorentina      0      1      A  12-13


01/11/13
         league         home       away  hgoal  agoal result season
date                                                               
01/11/13     D1     Dortmund  Stuttgart      6      1      H  13-14
01/11/13     T1  Galatasaray  Konyaspor      2      1      H  13-14
01/11/13    SP1    Barcelona    Espanol      1      0      H  13-14


01/11/14
         league                  home           away  hgoal  agoal result  \
date                                                                        
01/11/14     D1         Bayern Munich       Dortmund      2      1      H   
01/11/14     D1               Hamburg     Leverkusen      1      0      H   
01/11/14     D1              Hannover  Ein Frankfurt      1      0      H   
01/11/14     D1                 Mainz  Werder Bremen      1      2      A   
01/11/14     D1             Stuttgart      Wolfsburg      0      4      A   
01/11/14     I1                Empoli       Juventus      0      2      A   
01/11/14     I1                Napoli           Roma      2      0      H   
01/11/14     I1                 Parma          Inter      2      0      H   
01/11/14     T1  Akhisar Belediyespor    Trabzonspor      1      1      D   
01/11/14     T1             Bursaspor      Sivasspor      3      0      H   
01/11/14     T1        Genclerbirligi     Buyuksehyr      1      0      H   
01/11/14     E2              Bradford      Doncaster      1      2      A   
01/11/14     E2          Bristol City         Oldham      1      0      H   
01/11/14     E2          Chesterfield         Yeovil      0      0      D   
01/11/14     E2            Colchester      Port Vale      1      2      A   
01/11/14     E2          Crawley Town          Crewe      1      1      D   
01/11/14     E2        Fleetwood Town     Gillingham      1      0      H   
01/11/14     E2         Leyton Orient       Coventry      2      2      D   
01/11/14     E2    Milton Keynes Dons        Swindon      2      1      H   
01/11/14     E2          Notts County        Walsall      1      2      A   
01/11/14     E2             Peterboro     Scunthorpe      1      2      A   
01/11/14     E2              Rochdale        Preston      3      0      H   
01/11/14     E2      Sheffield United       Barnsley      0      1      A   
01/11/14    SP1            Ath Madrid        Cordoba      4      2      H   
01/11/14    SP1             Barcelona          Celta      0      1      A   
01/11/14    SP1               Granada    Real Madrid      0      4      A   
01/11/14    SP1              Sociedad         Malaga      0      1      A   

         season  
date             
01/11/14  14-15  
01/11/14  14-15  
01/11/14  14-15  
01/11/14  14-15  
01/11/14  14-15  
01/11/14  14-15  
01/11/14  14-15  
01/11/14  14-15  
01/11/14  14-15  
01/11/14  14-15  
01/11/14  14-15  
01/11/14  14-15  
01/11/14  14-15  
01/11/14  14-15  
01/11/14  14-15  
01/11/14  14-15  
01/11/14  14-15  
01/11/14  14-15  
01/11/14  14-15  
01/11/14  14-15  
01/11/14  14-15  
01/11/14  14-15  
01/11/14  14-15  
01/11/14  14-15  
01/11/14  14-15  
01/11/14  14-15  
01/11/14  14-15  


01/11/15
         league        home        away  hgoal  agoal result season
date                                                               
01/11/15     D1     Hamburg    Hannover      1      2      A  15-16
01/11/15     D1   Stuttgart   Darmstadt      2      0      H  15-16
01/11/15     I1     Bologna    Atalanta      3      0      H  15-16
01/11/15     I1       Carpi      Verona      0      0      D  15-16
01/11/15     I1  Fiorentina   Frosinone      4      1      H  15-16
01/11/15     I1       Genoa      Napoli      0      0      D  15-16
01/11/15     I1       Lazio       Milan      1      3      A  15-16
01/11/15     I1     Udinese    Sassuolo      0      0      D  15-16
01/11/15    SP1       Betis  Ath Bilbao      1      3      A  15-16
01/11/15    SP1       Eibar   Vallecano      1      0      H  15-16
01/11/15    SP1     Espanol     Granada      1      1      D  15-16
01/11/15    SP1    Sp Gijon      Malaga      1      0      H  15-16


01/12/12
         league                  home        away  hgoal  agoal result season
date                                                                         
01/12/12    SP1             Barcelona  Ath Bilbao      5      1      H  12-13
01/12/12    SP1                Getafe      Malaga      1      0      H  12-13
01/12/12    SP1           Real Madrid  Ath Madrid      2      0      H  12-13
01/12/12    SP1              Valencia    Sociedad      2      5      A  12-13
01/12/12     I1              Juventus      Torino      3      0      H  12-13
01/12/12     T1  Akhisar Belediyespor   Bursaspor      2      2      D  12-13
01/12/12     T1           Karabukspor  Elazigspor      0      1      A  12-13
01/12/12     T1              Orduspor    Besiktas      1      2      A  12-13
01/12/12     D1              Augsburg    Freiburg      1      1      D  12-13
01/12/12     D1         Bayern Munich    Dortmund      1      1      D  12-13
01/12/12     D1        Greuther Furth   Stuttgart      0      1      A  12-13
01/12/12     D1            Leverkusen    Nurnberg      1      0      H  12-13
01/12/12     D1                 Mainz    Hannover      2      1      H  12-13
01/12/12     D1            Schalke 04  M'gladbach      1      1      D  12-13


01/12/13
         league           home           away  hgoal  agoal result season
date                                                                     
01/12/13     D1       Hannover  Ein Frankfurt      2      0      H  13-14
01/12/13     D1     M'gladbach       Freiburg      1      0      H  13-14
01/12/13     T1  Eskisehirspor    Karabukspor      0      0      D  13-14
01/12/13     T1      Kasimpasa    Galatasaray      1      1      D  13-14
01/12/13     T1    Trabzonspor    Erciyesspor      3      1      H  13-14
01/12/13     E2         Oldham       Bradford      1      1      D  13-14
01/12/13    SP1     Ath Bilbao      Barcelona      1      0      H  13-14
01/12/13    SP1          Betis      Vallecano      2      2      D  13-14
01/12/13    SP1        Granada        Sevilla      1      2      A  13-14
01/12/13    SP1       Valencia        Osasuna      3      0      H  13-14
01/12/13     I1       Atalanta           Roma      1      1      D  13-14
01/12/13     I1       Cagliari       Sassuolo      2      2      D  13-14
01/12/13     I1        Catania          Milan      1      3      A  13-14
01/12/13     I1         Chievo        Livorno      3      0      H  13-14
01/12/13     I1          Inter      Sampdoria      1      1      D  13-14
01/12/13     I1       Juventus        Udinese      1      0      H  13-14


01/12/14
         league         home            away  hgoal  agoal result season
date                                                                    
01/12/14     I1    Sampdoria          Napoli      1      1      D  14-15
01/12/14     T1  Karabukspor        Besiktas      1      2      A  14-15
01/12/14     T1  Trabzonspor  Genclerbirligi      4      1      H  14-15
01/12/14    SP1      Almeria       Vallecano      0      1      A  14-15


01/12/15
         league        home      away  hgoal  agoal result season
date                                                             
01/12/15     E2      Burton  Millwall      2      1      H  15-16
01/12/15     E2  Shrewsbury   Walsall      1      3      A  15-16


02/01/12
         league                home              away  hgoal  agoal result  \
date                                                                         
02/01/12     E2         Bournemouth           Wycombe      2      0      H   
02/01/12     E2                Bury           Walsall      2      1      H   
02/01/12     E2            Carlisle  Sheffield United      3      2      H   
02/01/12     E2            Charlton         Brentford      2      0      H   
02/01/12     E2        Chesterfield            Oldham      1      1      D   
02/01/12     E2              Exeter            Yeovil      1      1      D   
02/01/12     E2          Hartlepool        Scunthorpe      1      2      A   
02/01/12     E2  Milton Keynes Dons        Colchester      1      0      H   
02/01/12     E2        Notts County      Huddersfield      2      2      D   
02/01/12     E2            Rochdale           Preston      1      1      D   
02/01/12     E2      Sheffield Weds          Tranmere      2      1      H   
02/01/12     E2           Stevenage     Leyton Orient      0      1      A   

         season  
date             
02/01/12  11-12  
02/01/12  11-12  
02/01/12  11-12  
02/01/12  11-12  
02/01/12  11-12  
02/01/12  11-12  
02/01/12  11-12  
02/01/12  11-12  
02/01/12  11-12  
02/01/12  11-12  
02/01/12  11-12  
02/01/12  11-12  


02/01/16
         league              home        away  hgoal  agoal result season
date                                                                     
02/01/16    SP1        Ath Madrid     Levante      1      0      H  15-16
02/01/16    SP1           Espanol   Barcelona      0      0      D  15-16
02/01/16    SP1            Malaga       Celta      2      0      H  15-16
02/01/16     E2          Barnsley    Millwall      2      1      H  15-16
02/01/16     E2            Burton   Blackpool      1      0      H  15-16
02/01/16     E2      Chesterfield  Shrewsbury      7      1      H  15-16
02/01/16     E2             Crewe    Coventry      0      5      A  15-16
02/01/16     E2    Fleetwood Town        Bury      2      0      H  15-16
02/01/16     E2        Gillingham    Bradford      3      0      H  15-16
02/01/16     E2            Oldham  Colchester      1      1      D  15-16
02/01/16     E2        Scunthorpe       Wigan      1      1      D  15-16
02/01/16     E2  Sheffield United   Peterboro      2      3      A  15-16
02/01/16     E2          Southend   Doncaster      0      3      A  15-16
02/01/16     E2           Walsall    Rochdale      0      3      A  15-16


02/02/12
         league        home                away  hgoal  agoal result season
date                                                                       
02/02/12     I1      Novara              Chievo      1      2      A  11-12
02/02/12     T1    Besiktas  Mersin Idman Yurdu      0      1      A  11-12
02/02/12     T1  Manisaspor       Eskisehirspor      2      3      A  11-12
02/02/12     T1  Samsunspor          Fenerbahce      3      1      H  11-12
02/02/12     T1   Sivasspor         Kayserispor      1      1      D  11-12


02/02/13
         league                home            away  hgoal  agoal result  \
date                                                                       
02/02/13    SP1             Espanol         Levante      3      2      H   
02/02/13    SP1              Getafe       La Coruna      3      1      H   
02/02/13    SP1             Granada     Real Madrid      1      0      H   
02/02/13    SP1             Osasuna           Celta      1      0      H   
02/02/13     I1              Napoli         Catania      2      0      H   
02/02/13     I1              Torino       Sampdoria      0      0      D   
02/02/13     T1         Antalyaspor      Buyuksehyr      1      0      H   
02/02/13     T1           Bursaspor     Galatasaray      1      1      D   
02/02/13     T1           Kasimpasa      Elazigspor      0      0      D   
02/02/13     E2                Bury       Doncaster      2      0      H   
02/02/13     E2        Crawley Town         Swindon      1      1      D   
02/02/13     E2               Crewe      Scunthorpe      1      0      H   
02/02/13     E2          Hartlepool    Notts County      2      1      H   
02/02/13     E2  Milton Keynes Dons     Bournemouth      0      3      A   
02/02/13     E2          Portsmouth      Colchester      2      3      A   
02/02/13     E2             Preston      Shrewsbury      1      2      A   
02/02/13     E2           Stevenage   Leyton Orient      0      1      A   
02/02/13     E2            Tranmere        Carlisle      0      1      A   
02/02/13     E2             Walsall          Oldham      3      1      H   
02/02/13     E2              Yeovil       Brentford      3      0      H   
02/02/13     D1  Fortuna Dusseldorf       Stuttgart      3      1      H   
02/02/13     D1             Hamburg   Ein Frankfurt      0      2      A   
02/02/13     D1          Hoffenheim        Freiburg      2      1      H   
02/02/13     D1               Mainz   Bayern Munich      0      3      A   
02/02/13     D1          Schalke 04  Greuther Furth      1      2      A   
02/02/13     D1           Wolfsburg        Augsburg      1      1      D   

         season  
date             
02/02/13  12-13  
02/02/13  12-13  
02/02/13  12-13  
02/02/13  12-13  
02/02/13  12-13  
02/02/13  12-13  
02/02/13  12-13  
02/02/13  12-13  
02/02/13  12-13  
02/02/13  12-13  
02/02/13  12-13  
02/02/13  12-13  
02/02/13  12-13  
02/02/13  12-13  
02/02/13  12-13  
02/02/13  12-13  
02/02/13  12-13  
02/02/13  12-13  
02/02/13  12-13  
02/02/13  12-13  
02/02/13  12-13  
02/02/13  12-13  
02/02/13  12-13  
02/02/13  12-13  
02/02/13  12-13  
02/02/13  12-13  


02/02/14
         league                  home            away  hgoal  agoal result  \
date                                                                         
02/02/14     D1         Bayern Munich   Ein Frankfurt      5      0      H   
02/02/14     D1                Hertha        Nurnberg      1      3      A   
02/02/14     T1  Akhisar Belediyespor  Genclerbirligi      3      1      H   
02/02/14     T1           Galatasaray       Bursaspor      6      0      H   
02/02/14     T1           Karabukspor      Elazigspor      3      1      H   
02/02/14     T1             Konyaspor       Sivasspor      3      0      H   
02/02/14    SP1            Ath Bilbao     Real Madrid      1      1      D   
02/02/14    SP1            Ath Madrid        Sociedad      4      0      H   
02/02/14    SP1                 Betis         Espanol      2      0      H   
02/02/14    SP1                 Elche         Almeria      1      0      H   
02/02/14     I1              Atalanta          Napoli      3      0      H   
02/02/14     I1               Catania         Livorno      3      3      D   
02/02/14     I1                Chievo           Lazio      0      2      A   
02/02/14     I1              Juventus           Inter      3      1      H   
02/02/14     I1              Sassuolo          Verona      1      2      A   

         season  
date             
02/02/14  13-14  
02/02/14  13-14  
02/02/14  13-14  
02/02/14  13-14  
02/02/14  13-14  
02/02/14  13-14  
02/02/14  13-14  
02/02/14  13-14  
02/02/14  13-14  
02/02/14  13-14  
02/02/14  13-14  
02/02/14  13-14  
02/02/14  13-14  
02/02/14  13-14  
02/02/14  13-14  


02/02/15
         league    home      away  hgoal  agoal result season
date                                                         
02/02/15    SP1  Malaga  Valencia      1      0      H  14-15


02/02/16
         league        home      away  hgoal  agoal result season
date                                                             
02/02/16     I1    Sassuolo      Roma      0      2      A  15-16
02/02/16     E2   Doncaster   Walsall      1      2      A  15-16
02/02/16     E2   Port Vale   Swindon      1      0      H  15-16
02/02/16     E2  Shrewsbury  Southend      1      2      A  15-16


02/03/13
         league                  home              away  hgoal  agoal result  \
date                                                                           
02/03/13    SP1             La Coruna         Vallecano      0      0      D   
02/03/13    SP1               Osasuna        Ath Bilbao      0      1      A   
02/03/13    SP1           Real Madrid         Barcelona      2      1      H   
02/03/13    SP1              Valencia           Levante      2      2      D   
02/03/13     I1                 Milan             Lazio      3      0      H   
02/03/13     T1  Akhisar Belediyespor        Elazigspor      0      1      A   
02/03/13     T1         Eskisehirspor       Galatasaray      0      0      D   
02/03/13     T1              Orduspor       Karabukspor      3      2      H   
02/03/13     E2             Brentford        Scunthorpe      1      0      H   
02/03/13     E2                  Bury      Crawley Town      0      2      A   
02/03/13     E2              Coventry           Swindon      1      2      A   
02/03/13     E2                 Crewe        Portsmouth      1      2      A   
02/03/13     E2             Doncaster        Hartlepool      3      0      H   
02/03/13     E2         Leyton Orient       Bournemouth      3      1      H   
02/03/13     E2    Milton Keynes Dons           Preston      1      1      D   
02/03/13     E2          Notts County          Carlisle      1      0      H   
02/03/13     E2                Oldham  Sheffield United      0      2      A   
02/03/13     E2             Stevenage        Colchester      0      2      A   
02/03/13     E2               Walsall        Shrewsbury      3      1      H   
02/03/13     E2                Yeovil          Tranmere      1      0      H   
02/03/13     D1              Dortmund          Hannover      3      1      H   
02/03/13     D1               Hamburg    Greuther Furth      1      1      D   
02/03/13     D1            Leverkusen         Stuttgart      2      1      H   
02/03/13     D1              Nurnberg          Freiburg      1      1      D   
02/03/13     D1         Werder Bremen          Augsburg      0      1      A   
02/03/13     D1             Wolfsburg        Schalke 04      1      4      A   

         season  
date             
02/03/13  12-13  
02/03/13  12-13  
02/03/13  12-13  
02/03/13  12-13  
02/03/13  12-13  
02/03/13  12-13  
02/03/13  12-13  
02/03/13  12-13  
02/03/13  12-13  
02/03/13  12-13  
02/03/13  12-13  
02/03/13  12-13  
02/03/13  12-13  
02/03/13  12-13  
02/03/13  12-13  
02/03/13  12-13  
02/03/13  12-13  
02/03/13  12-13  
02/03/13  12-13  
02/03/13  12-13  
02/03/13  12-13  
02/03/13  12-13  
02/03/13  12-13  
02/03/13  12-13  
02/03/13  12-13  
02/03/13  12-13  


02/03/14
         league           home         away  hgoal  agoal result season
date                                                                   
02/03/14     D1  Ein Frankfurt    Stuttgart      2      1      H  13-14
02/03/14     D1     Hoffenheim    Wolfsburg      6      2      H  13-14
02/03/14     T1    Kayserispor  Erciyesspor      0      4      A  13-14
02/03/14     T1      Konyaspor  Trabzonspor      0      0      D  13-14
02/03/14     T1       Rizespor  Galatasaray      1      1      D  13-14
02/03/14     T1      Sivasspor   Elazigspor      1      3      A  13-14
02/03/14     E2       Coventry   Shrewsbury      0      0      D  13-14
02/03/14    SP1     Ath Madrid  Real Madrid      2      2      D  13-14
02/03/14    SP1      Barcelona      Almeria      4      1      H  13-14
02/03/14    SP1        Sevilla     Sociedad      1      0      H  13-14
02/03/14    SP1      Vallecano     Valencia      1      0      H  13-14
02/03/14    SP1     Villarreal        Betis      1      1      D  13-14
02/03/14     I1       Atalanta       Chievo      2      1      H  13-14
02/03/14     I1       Cagliari      Udinese      3      0      H  13-14
02/03/14     I1     Fiorentina        Lazio      0      1      A  13-14
02/03/14     I1          Genoa      Catania      2      0      H  13-14
02/03/14     I1        Livorno       Napoli      1      1      D  13-14
02/03/14     I1          Milan     Juventus      0      2      A  13-14
02/03/14     I1       Sassuolo        Parma      0      1      A  13-14
02/03/14     I1         Torino    Sampdoria      0      2      A  13-14
02/03/14     I1         Verona      Bologna      0      0      D  13-14


02/03/15
         league         home         away  hgoal  agoal result season
date                                                                 
02/03/15     I1         Roma     Juventus      1      1      D  14-15
02/03/15     T1  Trabzonspor  Karabukspor      3      2      H  14-15
02/03/15    SP1        Celta        Elche      1      1      D  14-15


02/03/16
         league           home           away  hgoal  agoal result season
date                                                                     
02/03/16     D1  Bayern Munich          Mainz      1      2      A  15-16
02/03/16     D1      Darmstadt       Dortmund      0      2      A  15-16
02/03/16     D1         Hertha  Ein Frankfurt      2      0      H  15-16
02/03/16     D1     Hoffenheim       Augsburg      2      1      H  15-16
02/03/16     D1     Leverkusen  Werder Bremen      1      4      A  15-16
02/03/16     D1     M'gladbach      Stuttgart      4      0      H  15-16
02/03/16     D1     Schalke 04        Hamburg      3      2      H  15-16
02/03/16    SP1     Ath Bilbao      La Coruna      4      1      H  15-16
02/03/16    SP1          Celta     Villarreal      0      0      D  15-16
02/03/16    SP1        Levante    Real Madrid      1      3      A  15-16
02/03/16    SP1         Malaga       Valencia      1      2      A  15-16
02/03/16    SP1        Sevilla          Eibar      1      0      H  15-16


02/04/12
         league     home      away  hgoal  agoal result season
date                                                          
02/04/12    SP1  Sevilla  Mallorca      3      1      H  11-12


02/04/14
         league       home        away  hgoal  agoal result season
date                                                              
02/04/14     E2  Peterboro  Colchester      2      0      H  13-14


02/04/16
         league              home            away  hgoal  agoal result season
date                                                                         
02/04/16     T1     Eskisehirspor     Galatasaray      4      3      H  15-16
02/04/16     T1     Gaziantepspor     Trabzonspor      0      1      A  15-16
02/04/16     T1    Genclerbirligi       Konyaspor      0      1      A  15-16
02/04/16     D1     Bayern Munich   Ein Frankfurt      1      0      H  15-16
02/04/16     D1         Darmstadt       Stuttgart      2      2      D  15-16
02/04/16     D1          Dortmund   Werder Bremen      3      2      H  15-16
02/04/16     D1          Hannover         Hamburg      0      3      A  15-16
02/04/16     D1        Ingolstadt      Schalke 04      3      0      H  15-16
02/04/16     D1             Mainz        Augsburg      4      2      H  15-16
02/04/16     I1             Carpi        Sassuolo      1      3      A  15-16
02/04/16     I1          Juventus          Empoli      1      0      H  15-16
02/04/16    SP1        Ath Madrid           Betis      5      1      H  15-16
02/04/16    SP1         Barcelona     Real Madrid      1      2      A  15-16
02/04/16    SP1             Celta       La Coruna      1      1      D  15-16
02/04/16    SP1        Las Palmas        Valencia      2      1      H  15-16
02/04/16     E2         Blackpool        Southend      2      0      H  15-16
02/04/16     E2          Bradford      Scunthorpe      1      0      H  15-16
02/04/16     E2            Burton            Bury      1      1      D  15-16
02/04/16     E2      Chesterfield       Port Vale      4      2      H  15-16
02/04/16     E2        Colchester        Millwall      0      0      D  15-16
02/04/16     E2        Gillingham        Coventry      0      0      D  15-16
02/04/16     E2         Peterboro           Crewe      3      0      H  15-16
02/04/16     E2          Rochdale       Doncaster      2      2      D  15-16
02/04/16     E2  Sheffield United         Walsall      2      0      H  15-16
02/04/16     E2        Shrewsbury           Wigan      1      5      A  15-16
02/04/16     E2           Swindon  Fleetwood Town      1      1      D  15-16


02/05/12
         league        home         away  hgoal  agoal result season
date                                                                
02/05/12    SP1  Ath Bilbao  Real Madrid      0      3      A  11-12
02/05/12    SP1  Ath Madrid     Sociedad      1      1      D  11-12
02/05/12    SP1   Barcelona       Malaga      4      1      H  11-12
02/05/12    SP1    Mallorca    Vallecano      1      0      H  11-12
02/05/12    SP1     Sevilla        Betis      1      2      A  11-12
02/05/12    SP1    Valencia      Osasuna      4      0      H  11-12
02/05/12    SP1    Zaragoza      Levante      1      0      H  11-12
02/05/12     I1     Catania      Bologna      0      1      A  11-12
02/05/12     I1      Cesena      Udinese      0      1      A  11-12
02/05/12     I1  Fiorentina       Novara      2      2      D  11-12
02/05/12     I1       Genoa     Cagliari      2      1      H  11-12
02/05/12     I1    Juventus        Lecce      1      1      D  11-12
02/05/12     I1       Lazio        Siena      1      1      D  11-12
02/05/12     I1       Milan     Atalanta      2      0      H  11-12
02/05/12     I1       Parma        Inter      3      1      H  11-12


02/05/14
         league       home        away  hgoal  agoal result season
date                                                              
02/05/14    SP1  Vallecano  Ath Bilbao      0      3      A  13-14


02/05/15
         league                home           away  hgoal  agoal result season
date                                                                          
02/05/15     D1            Augsburg        FC Koln      0      0      D  14-15
02/05/15     D1            Freiburg      Paderborn      1      2      A  14-15
02/05/15     D1          Hoffenheim       Dortmund      1      1      D  14-15
02/05/15     D1          Leverkusen  Bayern Munich      2      0      H  14-15
02/05/15     D1          Schalke 04      Stuttgart      3      2      H  14-15
02/05/15     D1       Werder Bremen  Ein Frankfurt      1      0      H  14-15
02/05/15     D1           Wolfsburg       Hannover      2      2      D  14-15
02/05/15     I1           Sampdoria       Juventus      0      1      A  14-15
02/05/15     I1            Sassuolo        Palermo      0      0      D  14-15
02/05/15     T1          Buyuksehyr  Eskisehirspor      1      1      D  14-15
02/05/15     T1          Fenerbahce  Balikesirspor      4      3      H  14-15
02/05/15     T1         Karabukspor       Rizespor      2      0      H  14-15
02/05/15     T1  Mersin Idman Yurdu      Konyaspor      3      1      H  14-15
02/05/15    SP1          Ath Madrid     Ath Bilbao      0      0      D  14-15
02/05/15    SP1             Cordoba      Barcelona      0      8      A  14-15
02/05/15    SP1           La Coruna     Villarreal      1      1      D  14-15
02/05/15    SP1             Sevilla    Real Madrid      2      3      A  14-15


02/05/16
         league           home            away  hgoal  agoal result season
date                                                                      
02/05/16     T1      Kasimpasa     Osmanlispor      1      1      D  15-16
02/05/16     D1  Werder Bremen       Stuttgart      6      2      H  15-16
02/05/16     I1          Genoa            Roma      2      3      A  15-16
02/05/16     I1         Napoli        Atalanta      2      1      H  15-16
02/05/16    SP1         Malaga         Levante      3      1      H  15-16
02/05/16     E2        Walsall  Fleetwood Town      3      1      H  15-16


02/08/13
         league              home          away  hgoal  agoal result season
date                                                                       
02/08/13     E2  Sheffield United  Notts County      2      1      H  13-14


02/09/12
         league           home         away  hgoal  agoal result season
date                                                                   
02/09/12    SP1     Ath Bilbao   Valladolid      2      0      H  12-13
02/09/12    SP1      Barcelona     Valencia      1      0      H  12-13
02/09/12    SP1        Levante      Espanol      3      2      H  12-13
02/09/12    SP1    Real Madrid      Granada      3      0      H  12-13
02/09/12    SP1      Vallecano      Sevilla      0      0      D  12-13
02/09/12     I1       Cagliari     Atalanta      1      1      D  12-13
02/09/12     I1        Catania        Genoa      3      2      H  12-13
02/09/12     I1          Inter         Roma      1      3      A  12-13
02/09/12     I1          Lazio      Palermo      3      0      H  12-13
02/09/12     I1         Napoli   Fiorentina      2      1      H  12-13
02/09/12     I1          Parma       Chievo      2      0      H  12-13
02/09/12     I1      Sampdoria        Siena      2      1      H  12-13
02/09/12     I1        Udinese     Juventus      1      4      A  12-13
02/09/12     T1    Galatasaray    Bursaspor      3      2      H  12-13
02/09/12     T1  Gaziantepspor  Trabzonspor      1      0      H  12-13
02/09/12     T1      Sivasspor   Fenerbahce      0      0      D  12-13
02/09/12     E2        Preston      Swindon      4      1      H  12-13
02/09/12     D1  Bayern Munich    Stuttgart      6      1      H  12-13
02/09/12     D1      Wolfsburg     Hannover      0      4      A  12-13


02/10/11
         league           home                away  hgoal  agoal result season
date                                                                          
02/10/11    SP1     Ath Madrid             Sevilla      0      0      D  11-12
02/10/11    SP1          Betis             Levante      0      1      A  11-12
02/10/11    SP1        Espanol         Real Madrid      0      4      A  11-12
02/10/11    SP1       Sociedad          Ath Bilbao      1      2      A  11-12
02/10/11    SP1       Sp Gijon           Barcelona      0      1      A  11-12
02/10/11     I1         Cesena              Chievo      0      0      D  11-12
02/10/11     I1     Fiorentina               Lazio      1      2      A  11-12
02/10/11     I1       Juventus               Milan      2      0      H  11-12
02/10/11     I1          Lecce            Cagliari      0      2      A  11-12
02/10/11     I1         Novara             Catania      3      3      D  11-12
02/10/11     I1        Palermo               Siena      2      0      H  11-12
02/10/11     I1          Parma               Genoa      3      1      H  11-12
02/10/11     I1        Udinese             Bologna      2      0      H  11-12
02/10/11     D1        Hamburg          Schalke 04      1      2      A  11-12
02/10/11     D1       Hannover       Werder Bremen      3      2      H  11-12
02/10/11     T1     Ankaragucu         Galatasaray      0      3      A  11-12
02/10/11     T1  Eskisehirspor         Trabzonspor      0      2      A  11-12
02/10/11     T1    Kayserispor  Mersin Idman Yurdu      2      2      D  11-12
02/10/11     T1     Samsunspor          Manisaspor      1      2      A  11-12


02/10/12
         league          home                away  hgoal  agoal result season
date                                                                         
02/10/12     E2     Brentford          Shrewsbury      0      0      D  12-13
02/10/12     E2      Coventry  Milton Keynes Dons      1      1      D  12-13
02/10/12     E2  Crawley Town         Bournemouth      3      1      H  12-13
02/10/12     E2         Crewe              Oldham      0      2      A  12-13
02/10/12     E2     Doncaster             Preston      1      3      A  12-13
02/10/12     E2    Hartlepool    Sheffield United      1      2      A  12-13
02/10/12     E2  Notts County           Stevenage      1      2      A  12-13
02/10/12     E2    Scunthorpe            Tranmere      1      3      A  12-13
02/10/12     E2       Swindon          Colchester      0      1      A  12-13
02/10/12     E2       Walsall       Leyton Orient      1      2      A  12-13
02/10/12     E2        Yeovil          Portsmouth      1      2      A  12-13


02/10/15
         league         home                away  hgoal  agoal result season
date                                                                        
02/10/15     T1    Sivasspor  Mersin Idman Yurdu      2      2      D  15-16
02/10/15     T1  Trabzonspor           Konyaspor      1      2      A  15-16
02/10/15     D1    Darmstadt               Mainz      2      3      A  15-16
02/10/15    SP1        Celta              Getafe      0      0      D  15-16


02/11/12
         league           home            away  hgoal  agoal result season
date                                                                      
02/11/12     T1     Buyuksehyr     Galatasaray      1      3      A  12-13
02/11/12     D1  Ein Frankfurt  Greuther Furth      1      1      D  12-13


02/11/13
         league                home              away  hgoal  agoal result  \
date                                                                         
02/11/13     D1        Braunschweig        Leverkusen      1      0      H   
02/11/13     D1       Ein Frankfurt         Wolfsburg      1      2      A   
02/11/13     D1             Hamburg        M'gladbach      0      2      A   
02/11/13     D1              Hertha        Schalke 04      0      2      A   
02/11/13     D1          Hoffenheim     Bayern Munich      1      2      A   
02/11/13     D1            Nurnberg          Freiburg      0      3      A   
02/11/13     T1           Bursaspor        Fenerbahce      2      3      A   
02/11/13     T1         Erciyesspor         Kasimpasa      0      3      A   
02/11/13     E2        Bristol City            Oldham      1      1      D   
02/11/13     E2            Coventry      Notts County      3      0      H   
02/11/13     E2        Crawley Town         Brentford      0      1      A   
02/11/13     E2               Crewe          Bradford      0      0      D   
02/11/13     E2          Gillingham          Carlisle      1      0      H   
02/11/13     E2  Milton Keynes Dons           Walsall      1      0      H   
02/11/13     E2           Peterboro     Leyton Orient      1      3      A   
02/11/13     E2             Preston          Tranmere      1      1      D   
02/11/13     E2           Rotherham        Colchester      2      2      D   
02/11/13     E2          Shrewsbury  Sheffield United      2      0      H   
02/11/13     E2             Swindon         Port Vale      5      2      H   
02/11/13     E2              Wolves         Stevenage      2      0      H   
02/11/13    SP1             Almeria        Valladolid      1      0      H   
02/11/13    SP1             Sevilla             Celta      0      1      A   
02/11/13    SP1            Sociedad           Osasuna      5      0      H   
02/11/13    SP1           Vallecano       Real Madrid      2      3      A   
02/11/13     I1               Milan        Fiorentina      0      2      A   
02/11/13     I1              Napoli           Catania      2      1      H   
02/11/13     I1               Parma          Juventus      0      1      A   

         season  
date             
02/11/13  13-14  
02/11/13  13-14  
02/11/13  13-14  
02/11/13  13-14  
02/11/13  13-14  
02/11/13  13-14  
02/11/13  13-14  
02/11/13  13-14  
02/11/13  13-14  
02/11/13  13-14  
02/11/13  13-14  
02/11/13  13-14  
02/11/13  13-14  
02/11/13  13-14  
02/11/13  13-14  
02/11/13  13-14  
02/11/13  13-14  
02/11/13  13-14  
02/11/13  13-14  
02/11/13  13-14  
02/11/13  13-14  
02/11/13  13-14  
02/11/13  13-14  
02/11/13  13-14  
02/11/13  13-14  
02/11/13  13-14  
02/11/13  13-14  


02/11/14
         league           home                away  hgoal  agoal result season
date                                                                          
02/11/14     D1        FC Koln            Freiburg      0      1      A  14-15
02/11/14     D1     M'gladbach          Hoffenheim      3      1      H  14-15
02/11/14     D1      Paderborn              Hertha      3      1      H  14-15
02/11/14     I1         Chievo            Sassuolo      0      0      D  14-15
02/11/14     I1          Milan             Palermo      0      2      A  14-15
02/11/14     I1      Sampdoria          Fiorentina      3      1      H  14-15
02/11/14     I1         Torino            Atalanta      0      0      D  14-15
02/11/14     I1        Udinese               Genoa      2      4      A  14-15
02/11/14     T1       Besiktas          Fenerbahce      0      2      A  14-15
02/11/14     T1  Gaziantepspor  Mersin Idman Yurdu      1      0      H  14-15
02/11/14     T1       Rizespor         Erciyesspor      1      1      D  14-15
02/11/14    SP1     Ath Bilbao             Sevilla      1      0      H  14-15
02/11/14    SP1          Elche             Espanol      2      1      H  14-15
02/11/14    SP1        Levante             Almeria      2      1      H  14-15
02/11/14    SP1     Villarreal            Valencia      1      3      A  14-15


02/11/15
         league     home       away  hgoal  agoal result season
date                                                           
02/11/15     I1   Chievo  Sampdoria      1      1      D  15-16
02/11/15     I1  Palermo     Empoli      0      1      A  15-16


02/12/11
         league        home         away  hgoal  agoal result season
date                                                                
02/12/11     I1       Genoa        Milan      0      2      A  11-12
02/12/11     D1  Leverkusen   Hoffenheim      2      0      H  11-12
02/12/11     T1   Sivasspor  Trabzonspor      2      2      D  11-12


02/12/12
         league           home                away  hgoal  agoal result season
date                                                                          
02/12/12    SP1          Celta             Levante      1      1      D  12-13
02/12/12    SP1        Granada             Espanol      0      0      D  12-13
02/12/12    SP1      La Coruna               Betis      2      3      A  12-13
02/12/12    SP1       Mallorca            Zaragoza      1      1      D  12-13
02/12/12     I1        Bologna            Atalanta      2      1      H  12-13
02/12/12     I1     Fiorentina           Sampdoria      2      2      D  12-13
02/12/12     I1          Genoa              Chievo      2      4      A  12-13
02/12/12     I1          Inter             Palermo      1      0      H  12-13
02/12/12     I1          Lazio               Parma      2      1      H  12-13
02/12/12     I1         Napoli             Pescara      5      1      H  12-13
02/12/12     I1          Siena                Roma      1      3      A  12-13
02/12/12     I1        Udinese            Cagliari      4      1      H  12-13
02/12/12     T1    Antalyaspor  Mersin Idman Yurdu      1      0      H  12-13
02/12/12     T1     Buyuksehyr           Sivasspor      2      0      H  12-13
02/12/12     T1  Eskisehirspor           Kasimpasa      2      2      D  12-13
02/12/12     T1    Kayserispor          Fenerbahce      1      1      D  12-13
02/12/12     D1     Hoffenheim       Werder Bremen      1      4      A  12-13
02/12/12     D1      Wolfsburg             Hamburg      1      1      D  12-13


02/12/13
         league        home      away  hgoal  agoal result season
date                                                             
02/12/13     T1   Konyaspor  Rizespor      2      1      H  13-14
02/12/13     I1  Fiorentina    Verona      4      3      H  13-14
02/12/13     I1       Lazio    Napoli      2      4      A  13-14


02/12/14
         league              home                away  hgoal  agoal result  \
date                                                                         
02/12/14     E2          Barnsley           Doncaster      1      1      D   
02/12/14     E2  Sheffield United  Milton Keynes Dons      0      1      A   

         season  
date             
02/12/14  14-15  
02/12/14  14-15  


03/01/12
         league                home         away  hgoal  agoal result season
date                                                                        
03/01/12     T1         Galatasaray   Buyuksehyr      4      1      H  11-12
03/01/12     T1         Kayserispor    Bursaspor      0      2      A  11-12
03/01/12     T1  Mersin Idman Yurdu   Ankaragucu      1      2      A  11-12
03/01/12     T1           Sivasspor  Karabukspor      3      0      H  11-12
03/01/12     T1         Trabzonspor   Manisaspor      2      1      H  11-12


03/01/14
         league        home    away  hgoal  agoal result season
date                                                           
03/01/14     E2  Gillingham  Wolves      1      0      H  13-14


03/01/15
         league            home                  away  hgoal  agoal result  \
date                                                                         
03/01/15     T1       Bursaspor  Akhisar Belediyespor      3      1      H   
03/01/15     T1      Fenerbahce            Buyuksehyr      2      0      H   
03/01/15     T1        Rizespor             Konyaspor      1      1      D   
03/01/15     E2  Fleetwood Town               Swindon      2      2      D   
03/01/15     E2       Port Vale            Gillingham      2      1      H   
03/01/15     E2         Walsall              Coventry      0      2      A   
03/01/15    SP1      Ath Madrid               Levante      3      1      H   
03/01/15    SP1           Elche            Villarreal      2      2      D   
03/01/15    SP1       La Coruna            Ath Bilbao      1      0      H   
03/01/15    SP1          Malaga               Almeria      1      2      A   
03/01/15    SP1         Sevilla                 Celta      1      0      H   

         season  
date             
03/01/15  14-15  
03/01/15  14-15  
03/01/15  14-15  
03/01/15  14-15  
03/01/15  14-15  
03/01/15  14-15  
03/01/15  14-15  
03/01/15  14-15  
03/01/15  14-15  
03/01/15  14-15  
03/01/15  14-15  


03/01/16
         league        home         away  hgoal  agoal result season
date                                                                
03/01/16    SP1  Ath Bilbao   Las Palmas      2      2      D  15-16
03/01/16    SP1       Betis        Eibar      0      4      A  15-16
03/01/16    SP1     Granada      Sevilla      2      1      H  15-16
03/01/16    SP1   La Coruna   Villarreal      1      2      A  15-16
03/01/16    SP1    Valencia  Real Madrid      2      2      D  15-16
03/01/16    SP1   Vallecano     Sociedad      2      2      D  15-16


03/02/12
         league      home      away  hgoal  agoal result season
date                                                           
03/02/12     D1  Nurnberg  Dortmund      0      2      A  11-12


03/02/13
         league           home                away  hgoal  agoal result season
date                                                                          
03/02/13    SP1     Ath Madrid               Betis      1      0      H  12-13
03/02/13    SP1         Malaga            Zaragoza      1      1      D  12-13
03/02/13    SP1        Sevilla           Vallecano      2      1      H  12-13
03/02/13    SP1       Sociedad            Mallorca      3      0      H  12-13
03/02/13    SP1       Valencia           Barcelona      1      1      D  12-13
03/02/13     I1         Chievo            Juventus      1      2      A  12-13
03/02/13     I1     Fiorentina               Parma      2      0      H  12-13
03/02/13     I1          Genoa               Lazio      3      2      H  12-13
03/02/13     I1          Milan             Udinese      2      1      H  12-13
03/02/13     I1        Palermo            Atalanta      1      2      A  12-13
03/02/13     I1        Pescara             Bologna      2      3      A  12-13
03/02/13     I1          Siena               Inter      3      1      H  12-13
03/02/13     T1  Eskisehirspor  Mersin Idman Yurdu      0      0      D  12-13
03/02/13     T1     Fenerbahce           Sivasspor      1      2      A  12-13
03/02/13     T1       Orduspor      Genclerbirligi      2      1      H  12-13
03/02/13     T1    Trabzonspor       Gaziantepspor      4      1      H  12-13
03/02/13     D1     Leverkusen            Dortmund      2      3      A  12-13
03/02/13     D1       Nurnberg          M'gladbach      2      1      H  12-13


03/02/14
         league        home         away  hgoal  agoal result season
date                                                                
03/02/14     T1    Rizespor  Trabzonspor      0      0      D  13-14
03/02/14    SP1  Villarreal      Osasuna      3      1      H  13-14
03/02/14     I1       Genoa    Sampdoria      0      1      A  13-14


03/02/15
         league           home        away  hgoal  agoal result season
date                                                                  
03/02/15     D1  Bayern Munich  Schalke 04      1      1      D  14-15
03/02/15     D1  Ein Frankfurt   Wolfsburg      1      1      D  14-15
03/02/15     D1       Hannover       Mainz      1      1      D  14-15
03/02/15     D1     M'gladbach    Freiburg      1      0      H  14-15
03/02/15     E2       Barnsley      Oldham      1      0      H  14-15


03/02/16
         league        home      away  hgoal  agoal result season
date                                                             
03/02/16     I1      Empoli   Udinese      1      1      D  15-16
03/02/16     I1  Fiorentina     Carpi      2      1      H  15-16
03/02/16     I1   Frosinone   Bologna      1      0      H  15-16
03/02/16     I1       Inter    Chievo      1      0      H  15-16
03/02/16     I1    Juventus     Genoa      1      0      H  15-16
03/02/16     I1       Lazio    Napoli      0      2      A  15-16
03/02/16     I1     Palermo     Milan      0      2      A  15-16
03/02/16     I1   Sampdoria    Torino      2      2      D  15-16
03/02/16     I1      Verona  Atalanta      2      1      H  15-16


03/03/12
         league                home                away  hgoal  agoal result  \
date                                                                           
03/03/12    SP1           Barcelona            Sp Gijon      3      1      H   
03/03/12    SP1              Getafe              Malaga      1      3      A   
03/03/12    SP1            Mallorca             Osasuna      1      1      D   
03/03/12    SP1             Sevilla          Ath Madrid      1      1      D   
03/03/12    SP1           Vallecano           Santander      4      2      H   
03/03/12     I1            Juventus              Chievo      1      1      D   
03/03/12     I1             Palermo               Milan      0      4      A   
03/03/12     D1            Dortmund               Mainz      2      1      H   
03/03/12     D1            Freiburg          Schalke 04      2      1      H   
03/03/12     D1             Hamburg           Stuttgart      0      4      A   
03/03/12     D1            Hannover            Augsburg      2      2      D   
03/03/12     D1              Hertha       Werder Bremen      1      0      H   
03/03/12     D1      Kaiserslautern           Wolfsburg      0      0      D   
03/03/12     D1          Leverkusen       Bayern Munich      2      0      H   
03/03/12     T1          Ankaragucu       Eskisehirspor      2      5      A   
03/03/12     T1         Antalyaspor          Samsunspor      0      2      A   
03/03/12     T1          Fenerbahce      Genclerbirligi      6      1      H   
03/03/12     T1  Mersin Idman Yurdu            Orduspor      1      0      H   
03/03/12     E2         Bournemouth            Charlton      0      1      A   
03/03/12     E2                Bury        Huddersfield      3      3      D   
03/03/12     E2        Chesterfield            Tranmere      1      0      H   
03/03/12     E2          Colchester             Preston      3      0      H   
03/03/12     E2              Exeter           Stevenage      1      1      D   
03/03/12     E2          Hartlepool  Milton Keynes Dons      1      1      D   
03/03/12     E2       Leyton Orient             Walsall      1      1      D   
03/03/12     E2        Notts County            Carlisle      2      0      H   
03/03/12     E2            Rochdale      Sheffield Weds      0      0      D   
03/03/12     E2          Scunthorpe             Wycombe      4      1      H   
03/03/12     E2    Sheffield United              Oldham      2      3      A   
03/03/12     E2              Yeovil           Brentford      2      1      H   

         season  
date             
03/03/12  11-12  
03/03/12  11-12  
03/03/12  11-12  
03/03/12  11-12  
03/03/12  11-12  
03/03/12  11-12  
03/03/12  11-12  
03/03/12  11-12  
03/03/12  11-12  
03/03/12  11-12  
03/03/12  11-12  
03/03/12  11-12  
03/03/12  11-12  
03/03/12  11-12  
03/03/12  11-12  
03/03/12  11-12  
03/03/12  11-12  
03/03/12  11-12  
03/03/12  11-12  
03/03/12  11-12  
03/03/12  11-12  
03/03/12  11-12  
03/03/12  11-12  
03/03/12  11-12  
03/03/12  11-12  
03/03/12  11-12  
03/03/12  11-12  
03/03/12  11-12  
03/03/12  11-12  
03/03/12  11-12  


03/03/13
         league                home                away  hgoal  agoal result  \
date                                                                           
03/03/13    SP1             Espanol          Valladolid      0      0      D   
03/03/13    SP1             Granada            Mallorca      1      2      A   
03/03/13    SP1              Malaga          Ath Madrid      0      0      D   
03/03/13    SP1            Sociedad               Betis      3      3      D   
03/03/13     I1             Bologna            Cagliari      3      0      H   
03/03/13     I1             Catania               Inter      2      3      A   
03/03/13     I1          Fiorentina              Chievo      2      1      H   
03/03/13     I1             Pescara             Udinese      0      1      A   
03/03/13     I1                Roma               Genoa      3      1      H   
03/03/13     I1           Sampdoria               Parma      1      0      H   
03/03/13     I1               Siena            Atalanta      0      2      A   
03/03/13     I1              Torino             Palermo      0      0      D   
03/03/13     T1         Antalyaspor       Gaziantepspor      5      2      H   
03/03/13     T1            Besiktas          Fenerbahce      3      2      H   
03/03/13     T1           Bursaspor           Sivasspor      1      0      H   
03/03/13     T1         Kayserispor  Mersin Idman Yurdu      2      1      H   
03/03/13     D1  Fortuna Dusseldorf               Mainz      1      1      D   
03/03/13     D1          Hoffenheim       Bayern Munich      0      1      A   

         season  
date             
03/03/13  12-13  
03/03/13  12-13  
03/03/13  12-13  
03/03/13  12-13  
03/03/13  12-13  
03/03/13  12-13  
03/03/13  12-13  
03/03/13  12-13  
03/03/13  12-13  
03/03/13  12-13  
03/03/13  12-13  
03/03/13  12-13  
03/03/13  12-13  
03/03/13  12-13  
03/03/13  12-13  
03/03/13  12-13  
03/03/13  12-13  
03/03/13  12-13  


03/03/15
         league                home          away  hgoal  agoal result season
date                                                                         
03/03/15     E2            Barnsley      Coventry      1      0      H  14-15
03/03/15     E2            Bradford  Crawley Town      1      0      H  14-15
03/03/15     E2          Colchester  Notts County      0      1      A  14-15
03/03/15     E2      Fleetwood Town    Scunthorpe      2      2      D  14-15
03/03/15     E2       Leyton Orient  Bristol City      1      3      A  14-15
03/03/15     E2  Milton Keynes Dons  Chesterfield      1      2      A  14-15
03/03/15     E2           Port Vale        Oldham      0      1      A  14-15
03/03/15     E2             Preston     Doncaster      2      2      D  14-15
03/03/15     E2            Rochdale         Crewe      4      0      H  14-15
03/03/15     E2    Sheffield United     Peterboro      1      2      A  14-15
03/03/15     E2             Swindon    Gillingham      0      3      A  14-15
03/03/15     E2              Yeovil       Walsall      0      1      A  14-15


03/03/16
         league       home       away  hgoal  agoal result season
date                                                             
03/03/16    SP1    Espanol      Betis      0      3      A  15-16
03/03/16    SP1    Granada   Sp Gijon      2      0      H  15-16
03/03/16    SP1  Vallecano  Barcelona      1      5      A  15-16


03/04/12
         league           home          away  hgoal  agoal result season
date                                                                    
03/04/12     E2      Brentford        Oldham      2      0      H  11-12
03/04/12     E2  Leyton Orient  Huddersfield      1      3      A  11-12


03/04/13
         league       home   away  hgoal  agoal result season
date                                                         
03/04/13     I1  Sampdoria  Inter      0      2      A  12-13


03/04/15
         league        home            away  hgoal  agoal result season
date                                                                   
03/04/15     E2       Crewe    Crawley Town      0      0      D  14-15
03/04/15     E2   Doncaster        Bradford      0      3      A  14-15
03/04/15     E2  Gillingham  Fleetwood Town      0      1      A  14-15
03/04/15     E2      Oldham    Bristol City      1      1      D  14-15
03/04/15     E2   Port Vale      Colchester      1      2      A  14-15
03/04/15     E2     Preston        Rochdale      1      0      H  14-15
03/04/15     E2  Scunthorpe       Peterboro      2      0      H  14-15
03/04/15     E2     Walsall    Notts County      0      0      D  14-15
03/04/15     E2      Yeovil    Chesterfield      2      3      A  14-15
03/04/15    SP1       Eibar       Vallecano      1      2      A  14-15


03/04/16
         league         home                  away  hgoal  agoal result season
date                                                                          
03/04/16     T1  Antalyaspor  Akhisar Belediyespor      2      2      D  15-16
03/04/16     T1   Buyuksehyr    Mersin Idman Yurdu      3      0      H  15-16
03/04/16     T1   Fenerbahce           Osmanlispor      0      0      D  15-16
03/04/16     T1    Sivasspor             Bursaspor      1      2      A  15-16
03/04/16     D1   Hoffenheim               FC Koln      1      1      D  15-16
03/04/16     D1   M'gladbach                Hertha      5      0      H  15-16
03/04/16     I1     Atalanta                 Milan      2      1      H  15-16
03/04/16     I1       Chievo               Palermo      3      1      H  15-16
03/04/16     I1   Fiorentina             Sampdoria      1      1      D  15-16
03/04/16     I1        Genoa             Frosinone      4      0      H  15-16
03/04/16    SP1   Ath Bilbao               Granada      1      1      D  15-16


03/05/13
         league            home        away  hgoal  agoal result season
date                                                                   
03/05/13    SP1           Celta  Ath Bilbao      1      1      D  12-13
03/05/13     T1  Genclerbirligi   Kasimpasa      0      0      D  12-13
03/05/13     D1      M'gladbach  Schalke 04      0      1      A  12-13


03/05/14
         league                home            away  hgoal  agoal result  \
date                                                                       
03/05/14     D1        Braunschweig        Augsburg      0      1      A   
03/05/14     D1            Dortmund      Hoffenheim      3      2      H   
03/05/14     D1       Ein Frankfurt      Leverkusen      0      2      A   
03/05/14     D1            Freiburg      Schalke 04      0      2      A   
03/05/14     D1             Hamburg   Bayern Munich      1      4      A   
03/05/14     D1          M'gladbach           Mainz      3      1      H   
03/05/14     D1            Nurnberg        Hannover      0      2      A   
03/05/14     D1           Stuttgart       Wolfsburg      1      2      A   
03/05/14     D1       Werder Bremen          Hertha      2      0      H   
03/05/14     T1         Antalyaspor      Elazigspor      1      2      A   
03/05/14     T1            Besiktas       Kasimpasa      2      1      H   
03/05/14     T1         Erciyesspor   Gaziantepspor      1      0      H   
03/05/14     T1       Eskisehirspor     Kayserispor      1      4      A   
03/05/14     T1         Galatasaray  Genclerbirligi      3      2      H   
03/05/14     T1         Karabukspor       Konyaspor      2      2      D   
03/05/14     E2           Brentford       Stevenage      2      0      H   
03/05/14     E2        Crawley Town    Bristol City      1      1      D   
03/05/14     E2               Crewe         Preston      2      1      H   
03/05/14     E2          Gillingham      Shrewsbury      1      1      D   
03/05/14     E2  Milton Keynes Dons   Leyton Orient      1      3      A   
03/05/14     E2              Oldham    Notts County      1      1      D   
03/05/14     E2           Peterboro       Port Vale      0      0      D   
03/05/14     E2    Sheffield United        Coventry      2      1      H   
03/05/14     E2             Swindon       Rotherham      1      2      A   
03/05/14     E2            Tranmere        Bradford      1      2      A   
03/05/14     E2             Walsall      Colchester      0      1      A   
03/05/14     E2              Wolves        Carlisle      3      0      H   
03/05/14    SP1           Barcelona          Getafe      2      2      D   
03/05/14    SP1              Malaga           Elche      0      1      A   
03/05/14    SP1             Osasuna           Celta      0      2      A   
03/05/14    SP1          Valladolid         Espanol      1      0      H   

         season  
date             
03/05/14  13-14  
03/05/14  13-14  
03/05/14  13-14  
03/05/14  13-14  
03/05/14  13-14  
03/05/14  13-14  
03/05/14  13-14  
03/05/14  13-14  
03/05/14  13-14  
03/05/14  13-14  
03/05/14  13-14  
03/05/14  13-14  
03/05/14  13-14  
03/05/14  13-14  
03/05/14  13-14  
03/05/14  13-14  
03/05/14  13-14  
03/05/14  13-14  
03/05/14  13-14  
03/05/14  13-14  
03/05/14  13-14  
03/05/14  13-14  
03/05/14  13-14  
03/05/14  13-14  
03/05/14  13-14  
03/05/14  13-14  
03/05/14  13-14  
03/05/14  13-14  
03/05/14  13-14  
03/05/14  13-14  
03/05/14  13-14  


03/05/15
         league                home            away  hgoal  agoal result  \
date                                                                       
03/05/15     D1              Hertha      M'gladbach      1      2      A   
03/05/15     D1               Mainz         Hamburg      1      2      A   
03/05/15     I1            Atalanta           Lazio      1      1      D   
03/05/15     I1          Fiorentina          Cesena      3      1      H   
03/05/15     I1               Inter          Chievo      0      0      D   
03/05/15     I1              Napoli           Milan      3      0      H   
03/05/15     I1                Roma           Genoa      2      0      H   
03/05/15     I1              Verona         Udinese      0      1      A   
03/05/15     T1       Gaziantepspor  Genclerbirligi      0      3      A   
03/05/15     T1           Kasimpasa       Bursaspor      5      3      H   
03/05/15     T1         Trabzonspor        Besiktas      0      2      A   
03/05/15     E2            Barnsley        Rochdale      5      0      H   
03/05/15     E2        Bristol City         Walsall      8      2      H   
03/05/15     E2          Colchester         Preston      1      0      H   
03/05/15     E2        Crawley Town        Coventry      1      2      A   
03/05/15     E2               Crewe        Bradford      0      1      A   
03/05/15     E2           Doncaster      Scunthorpe      5      2      H   
03/05/15     E2          Gillingham    Notts County      3      1      H   
03/05/15     E2  Milton Keynes Dons          Yeovil      5      1      H   
03/05/15     E2              Oldham       Peterboro      1      1      D   
03/05/15     E2           Port Vale  Fleetwood Town      1      2      A   
03/05/15     E2    Sheffield United    Chesterfield      1      1      D   
03/05/15     E2             Swindon   Leyton Orient      2      2      D   
03/05/15    SP1             Espanol       Vallecano      1      1      D   
03/05/15    SP1              Getafe         Granada      1      2      A   
03/05/15    SP1              Malaga           Elche      1      2      A   
03/05/15    SP1            Valencia           Eibar      3      1      H   

         season  
date             
03/05/15  14-15  
03/05/15  14-15  
03/05/15  14-15  
03/05/15  14-15  
03/05/15  14-15  
03/05/15  14-15  
03/05/15  14-15  
03/05/15  14-15  
03/05/15  14-15  
03/05/15  14-15  
03/05/15  14-15  
03/05/15  14-15  
03/05/15  14-15  
03/05/15  14-15  
03/05/15  14-15  
03/05/15  14-15  
03/05/15  14-15  
03/05/15  14-15  
03/05/15  14-15  
03/05/15  14-15  
03/05/15  14-15  
03/05/15  14-15  
03/05/15  14-15  
03/05/15  14-15  
03/05/15  14-15  
03/05/15  14-15  
03/05/15  14-15  


03/08/13
         league          home                away  hgoal  agoal result season
date                                                                         
03/08/13     E2  Bristol City            Bradford      2      2      D  13-14
03/08/13     E2      Carlisle       Leyton Orient      1      5      A  13-14
03/08/13     E2  Crawley Town            Coventry      3      2      H  13-14
03/08/13     E2         Crewe           Rotherham      3      3      D  13-14
03/08/13     E2    Gillingham          Colchester      0      1      A  13-14
03/08/13     E2     Peterboro             Swindon      1      0      H  13-14
03/08/13     E2     Port Vale           Brentford      1      1      D  13-14
03/08/13     E2       Preston              Wolves      0      0      D  13-14
03/08/13     E2    Shrewsbury  Milton Keynes Dons      0      0      D  13-14
03/08/13     E2     Stevenage              Oldham      3      4      A  13-14
03/08/13     E2       Walsall            Tranmere      3      1      H  13-14


03/09/11
         league              home                away  hgoal  agoal result  \
date                                                                         
03/09/11     E2          Carlisle  Milton Keynes Dons      1      3      A   
03/09/11     E2      Chesterfield       Leyton Orient      0      0      D   
03/09/11     E2        Hartlepool              Exeter      2      0      H   
03/09/11     E2      Notts County         Bournemouth      3      1      H   
03/09/11     E2            Oldham        Huddersfield      1      1      D   
03/09/11     E2        Scunthorpe          Colchester      1      1      D   
03/09/11     E2  Sheffield United                Bury      4      0      H   
03/09/11     E2         Stevenage            Rochdale      4      2      H   
03/09/11     E2          Tranmere              Yeovil      0      0      D   
03/09/11     E2           Walsall           Brentford      0      1      A   

         season  
date             
03/09/11  11-12  
03/09/11  11-12  
03/09/11  11-12  
03/09/11  11-12  
03/09/11  11-12  
03/09/11  11-12  
03/09/11  11-12  
03/09/11  11-12  
03/09/11  11-12  
03/09/11  11-12  


03/10/11
         league           home      away  hgoal  agoal result season
date                                                                
03/10/11     T1  Gaziantepspor  Besiktas      0      0      D  11-12


03/10/14
         league                home       away  hgoal  agoal result season
date                                                                      
03/10/14     D1              Hertha  Stuttgart      3      2      H  14-15
03/10/14     T1  Mersin Idman Yurdu  Bursaspor      2      1      H  14-15
03/10/14    SP1              Getafe    Cordoba      1      1      D  14-15


03/10/15
         league            home              away  hgoal  agoal result season
date                                                                         
03/10/15     T1      Buyuksehyr       Galatasaray      0      2      A  15-16
03/10/15     T1   Gaziantepspor       Osmanlispor      2      1      H  15-16
03/10/15     T1  Genclerbirligi       Kayserispor      2      0      H  15-16
03/10/15     D1        Hannover     Werder Bremen      1      0      H  15-16
03/10/15     D1          Hertha           Hamburg      3      0      H  15-16
03/10/15     D1      Hoffenheim         Stuttgart      2      2      D  15-16
03/10/15     D1      Ingolstadt     Ein Frankfurt      2      0      H  15-16
03/10/15     D1      M'gladbach         Wolfsburg      2      0      H  15-16
03/10/15     I1           Carpi            Torino      2      1      H  15-16
03/10/15     I1          Chievo            Verona      1      1      D  15-16
03/10/15    SP1         Espanol          Sp Gijon      1      2      A  15-16
03/10/15    SP1         Granada         La Coruna      1      1      D  15-16
03/10/15    SP1      Las Palmas             Eibar      0      2      A  15-16
03/10/15    SP1          Malaga          Sociedad      3      1      H  15-16
03/10/15    SP1         Sevilla         Barcelona      2      1      H  15-16
03/10/15     E2       Blackpool           Swindon      1      0      H  15-16
03/10/15     E2          Burton          Southend      1      0      H  15-16
03/10/15     E2      Colchester              Bury      0      1      A  15-16
03/10/15     E2        Coventry        Shrewsbury      3      0      H  15-16
03/10/15     E2           Crewe      Chesterfield      1      2      A  15-16
03/10/15     E2       Doncaster          Barnsley      2      1      H  15-16
03/10/15     E2      Gillingham            Oldham      3      3      D  15-16
03/10/15     E2       Peterboro          Millwall      5      3      H  15-16
03/10/15     E2       Port Vale  Sheffield United      2      1      H  15-16
03/10/15     E2        Rochdale          Bradford      1      3      A  15-16
03/10/15     E2      Scunthorpe    Fleetwood Town      1      0      H  15-16
03/10/15     E2           Wigan           Walsall      0      0      D  15-16


03/11/12
         league                  home           away  hgoal  agoal result  \
date                                                                        
03/11/12    SP1             Barcelona          Celta      3      1      H   
03/11/12    SP1                Malaga      Vallecano      1      2      A   
03/11/12    SP1           Real Madrid       Zaragoza      4      0      H   
03/11/12    SP1              Valencia     Ath Madrid      2      0      H   
03/11/12     I1              Juventus          Inter      1      3      A   
03/11/12     I1                 Milan         Chievo      5      1      H   
03/11/12     T1  Akhisar Belediyespor     Fenerbahce      1      2      A   
03/11/12     T1         Eskisehirspor  Gaziantepspor      4      0      H   
03/11/12     T1           Kayserispor    Karabukspor      3      0      H   
03/11/12     D1              Dortmund      Stuttgart      0      0      D   
03/11/12     D1               Hamburg  Bayern Munich      0      3      A   
03/11/12     D1              Hannover       Augsburg      2      0      H   
03/11/12     D1            Hoffenheim     Schalke 04      3      2      H   
03/11/12     D1            M'gladbach       Freiburg      1      1      D   
03/11/12     D1              Nurnberg      Wolfsburg      1      0      H   

         season  
date             
03/11/12  12-13  
03/11/12  12-13  
03/11/12  12-13  
03/11/12  12-13  
03/11/12  12-13  
03/11/12  12-13  
03/11/12  12-13  
03/11/12  12-13  
03/11/12  12-13  
03/11/12  12-13  
03/11/12  12-13  
03/11/12  12-13  
03/11/12  12-13  
03/11/12  12-13  
03/11/12  12-13  


03/11/13
         league           home                  away  hgoal  agoal result  \
date                                                                        
03/11/13     D1       Augsburg                 Mainz      2      1      H   
03/11/13     D1  Werder Bremen              Hannover      3      2      H   
03/11/13     T1       Besiktas           Karabukspor      0      0      D   
03/11/13     T1       Rizespor  Akhisar Belediyespor      0      0      D   
03/11/13     T1    Trabzonspor            Elazigspor      4      0      H   
03/11/13    SP1     Ath Madrid            Ath Bilbao      2      0      H   
03/11/13    SP1         Getafe              Valencia      0      1      A   
03/11/13    SP1        Levante               Granada      0      1      A   
03/11/13    SP1         Malaga                 Betis      3      2      H   
03/11/13     I1          Lazio                 Genoa      0      2      A   
03/11/13     I1        Livorno              Atalanta      1      0      H   
03/11/13     I1      Sampdoria              Sassuolo      3      4      A   
03/11/13     I1         Torino                  Roma      1      1      D   
03/11/13     I1        Udinese                 Inter      0      3      A   
03/11/13     I1         Verona              Cagliari      2      1      H   

         season  
date             
03/11/13  13-14  
03/11/13  13-14  
03/11/13  13-14  
03/11/13  13-14  
03/11/13  13-14  
03/11/13  13-14  
03/11/13  13-14  
03/11/13  13-14  
03/11/13  13-14  
03/11/13  13-14  
03/11/13  13-14  
03/11/13  13-14  
03/11/13  13-14  
03/11/13  13-14  
03/11/13  13-14  


03/11/14
         league           home           away  hgoal  agoal result season
date                                                                     
03/11/14     I1         Cesena         Verona      1      1      D  14-15
03/11/14     I1          Lazio       Cagliari      4      2      H  14-15
03/11/14     T1  Eskisehirspor  Balikesirspor      2      2      D  14-15
03/11/14     T1      Konyaspor    Karabukspor      1      0      H  14-15
03/11/14    SP1      Vallecano          Eibar      2      3      A  14-15


03/11/15
         league      home       away  hgoal  agoal result season
date                                                            
03/11/15     E2  Bradford  Blackpool      1      0      H  15-16
03/11/15     E2  Coventry   Barnsley      4      3      H  15-16


03/12/11
         league            home           away  hgoal  agoal result season
date                                                                      
03/12/11    SP1       Barcelona        Levante      5      0      H  11-12
03/12/11    SP1       Santander     Villarreal      1      0      H  11-12
03/12/11    SP1        Sp Gijon    Real Madrid      0      3      A  11-12
03/12/11    SP1        Valencia        Espanol      2      1      H  11-12
03/12/11     I1           Inter        Udinese      0      1      A  11-12
03/12/11     I1          Napoli          Lecce      4      2      H  11-12
03/12/11     D1   Bayern Munich  Werder Bremen      4      1      H  11-12
03/12/11     D1        Freiburg       Hannover      1      1      D  11-12
03/12/11     D1  Kaiserslautern         Hertha      1      1      D  11-12
03/12/11     D1      M'gladbach       Dortmund      1      1      D  11-12
03/12/11     D1       Stuttgart        FC Koln      2      2      D  11-12
03/12/11     D1       Wolfsburg          Mainz      2      2      D  11-12
03/12/11     T1      Fenerbahce     Ankaragucu      4      2      H  11-12
03/12/11     T1   Gaziantepspor     Samsunspor      1      0      H  11-12
03/12/11     T1  Genclerbirligi    Galatasaray      0      1      A  11-12


03/12/12
         league            home         away  hgoal  agoal result season
date                                                                    
03/12/12    SP1         Sevilla   Valladolid      1      2      A  12-13
03/12/12     T1  Genclerbirligi  Trabzonspor      0      4      A  12-13


04/01/12
         league            home           away  hgoal  agoal result season
date                                                                      
04/01/12     T1        Besiktas  Eskisehirspor      2      0      H  11-12
04/01/12     T1   Gaziantepspor    Antalyaspor      1      0      H  11-12
04/01/12     T1  Genclerbirligi     Samsunspor      1      1      D  11-12
04/01/12     T1        Orduspor     Fenerbahce      1      1      D  11-12


04/01/13
         league      home        away  hgoal  agoal result season
date                                                             
04/01/13    SP1  Zaragoza       Betis      1      2      A  12-13
04/01/13     E2   Walsall  Portsmouth      2      0      H  12-13


04/01/14
         league        home        away  hgoal  agoal result season
date                                                               
04/01/14    SP1     Almeria     Granada      3      0      H  13-14
04/01/14    SP1      Malaga  Ath Madrid      0      1      A  13-14
04/01/14    SP1    Valencia     Levante      2      0      H  13-14
04/01/14    SP1  Valladolid       Betis      0      0      D  13-14


04/01/15
         league           home           away  hgoal  agoal result season
date                                                                     
04/01/15     T1       Besiktas    Galatasaray      0      2      A  14-15
04/01/15     T1    Erciyesspor      Kasimpasa      2      5      A  14-15
04/01/15     T1  Eskisehirspor  Gaziantepspor      1      3      A  14-15
04/01/15     T1      Sivasspor    Karabukspor      2      0      H  14-15
04/01/15    SP1        Espanol          Eibar      1      2      A  14-15
04/01/15    SP1         Getafe      Vallecano      1      2      A  14-15
04/01/15    SP1       Sociedad      Barcelona      1      0      H  14-15
04/01/15    SP1       Valencia    Real Madrid      2      1      H  14-15


04/01/16
         league      home    away  hgoal  agoal result season
date                                                         
04/01/16    SP1  Sp Gijon  Getafe      1      2      A  15-16


04/02/12
         league            home                away  hgoal  agoal result  \
date                                                                       
04/02/12    SP1      Ath Bilbao             Espanol      3      3      D   
04/02/12    SP1       Barcelona            Sociedad      2      1      H   
04/02/12    SP1          Getafe         Real Madrid      0      1      A   
04/02/12    SP1         Levante           Santander      1      1      D   
04/02/12    SP1        Mallorca               Betis      1      0      H   
04/02/12     I1            Roma               Inter      4      0      H   
04/02/12     D1         Hamburg       Bayern Munich      1      1      D   
04/02/12     D1          Hertha            Hannover      0      1      A   
04/02/12     D1      Hoffenheim            Augsburg      2      2      D   
04/02/12     D1      Leverkusen           Stuttgart      2      2      D   
04/02/12     D1      Schalke 04               Mainz      1      1      D   
04/02/12     D1       Wolfsburg          M'gladbach      0      0      D   
04/02/12     T1     Antalyaspor         Trabzonspor      2      1      H   
04/02/12     T1   Gaziantepspor         Galatasaray      1      2      A   
04/02/12     E2        Carlisle        Chesterfield      2      1      H   
04/02/12     E2    Huddersfield  Milton Keynes Dons      1      1      D   
04/02/12     E2  Sheffield Weds              Yeovil      2      1      H   
04/02/12     E2         Wycombe            Tranmere      2      1      H   

         season  
date             
04/02/12  11-12  
04/02/12  11-12  
04/02/12  11-12  
04/02/12  11-12  
04/02/12  11-12  
04/02/12  11-12  
04/02/12  11-12  
04/02/12  11-12  
04/02/12  11-12  
04/02/12  11-12  
04/02/12  11-12  
04/02/12  11-12  
04/02/12  11-12  
04/02/12  11-12  
04/02/12  11-12  
04/02/12  11-12  
04/02/12  11-12  
04/02/12  11-12  


04/02/14
         league          home        away  hgoal  agoal result season
date                                                                 
04/02/14     E2  Bristol City    Coventry      1      2      A  13-14
04/02/14     E2     Stevenage  Gillingham      3      1      H  13-14


04/02/15
         league         home           away  hgoal  agoal result season
date                                                                   
04/02/15     D1     Dortmund       Augsburg      0      1      A  14-15
04/02/15     D1      FC Koln      Stuttgart      0      0      D  14-15
04/02/15     D1       Hertha     Leverkusen      0      1      A  14-15
04/02/15     D1   Hoffenheim  Werder Bremen      1      2      A  14-15
04/02/15     D1    Paderborn        Hamburg      0      3      A  14-15
04/02/15    SP1  Real Madrid        Sevilla      2      1      H  14-15


04/03/12
         league           home         away  hgoal  agoal result season
date                                                                   
04/03/12    SP1     Ath Bilbao     Sociedad      2      0      H  11-12
04/03/12    SP1        Granada     Valencia      0      1      A  11-12
04/03/12    SP1    Real Madrid      Espanol      5      0      H  11-12
04/03/12    SP1       Zaragoza   Villarreal      2      1      H  11-12
04/03/12     I1        Bologna       Novara      1      0      H  11-12
04/03/12     I1     Fiorentina       Cesena      2      0      H  11-12
04/03/12     I1          Inter      Catania      2      2      D  11-12
04/03/12     I1          Lecce        Genoa      2      2      D  11-12
04/03/12     I1          Parma       Napoli      1      2      A  11-12
04/03/12     I1           Roma        Lazio      1      2      A  11-12
04/03/12     I1          Siena     Cagliari      3      0      H  11-12
04/03/12     I1        Udinese     Atalanta      0      0      D  11-12
04/03/12     D1     Hoffenheim      FC Koln      1      1      D  11-12
04/03/12     D1       Nurnberg   M'gladbach      1      0      H  11-12
04/03/12     T1       Besiktas  Trabzonspor      1      2      A  11-12
04/03/12     T1      Bursaspor  Karabukspor      3      0      H  11-12
04/03/12     T1  Gaziantepspor   Buyuksehyr      5      0      H  11-12
04/03/12     T1    Kayserispor   Manisaspor      2      0      H  11-12


04/03/13
         league       home         away  hgoal  agoal result season
date                                                               
04/03/13    SP1    Sevilla        Celta      4      1      H  12-13
04/03/13     T1  Kasimpasa  Trabzonspor      2      0      H  12-13


04/03/14
         league              home       away  hgoal  agoal result season
date                                                                    
04/03/14     E2        Colchester  Rotherham      0      0      D  13-14
04/03/14     E2      Crawley Town  Stevenage      1      1      D  13-14
04/03/14     E2  Sheffield United  Peterboro      2      0      H  13-14


04/03/16
         league                home        away  hgoal  agoal result season
date                                                                       
04/03/16     T1  Mersin Idman Yurdu   Sivasspor      1      0      H  15-16
04/03/16     I1                Roma  Fiorentina      4      1      H  15-16


04/04/14
         league           home        away  hgoal  agoal result season
date                                                                  
04/04/14     D1        Hamburg  Leverkusen      2      1      H  13-14
04/04/14     T1  Gaziantepspor   Kasimpasa      2      2      D  13-14


04/04/15
         league            home                away  hgoal  agoal result  \
date                                                                       
04/04/15     D1        Dortmund       Bayern Munich      0      1      A   
04/04/15     D1   Ein Frankfurt            Hannover      2      2      D   
04/04/15     D1        Freiburg             FC Koln      1      0      H   
04/04/15     D1      Hoffenheim          M'gladbach      1      4      A   
04/04/15     D1      Leverkusen             Hamburg      4      0      H   
04/04/15     D1   Werder Bremen               Mainz      0      0      D   
04/04/15     D1       Wolfsburg           Stuttgart      3      1      H   
04/04/15     I1        Atalanta              Torino      1      2      A   
04/04/15     I1        Cagliari               Lazio      1      3      A   
04/04/15     I1      Fiorentina           Sampdoria      2      0      H   
04/04/15     I1           Genoa             Udinese      1      1      D   
04/04/15     I1           Inter               Parma      1      1      D   
04/04/15     I1        Juventus              Empoli      2      0      H   
04/04/15     I1         Palermo               Milan      1      2      A   
04/04/15     I1            Roma              Napoli      1      0      H   
04/04/15     I1        Sassuolo              Chievo      1      0      H   
04/04/15     I1          Verona              Cesena      3      3      D   
04/04/15     T1   Balikesirspor  Mersin Idman Yurdu      1      3      A   
04/04/15     T1   Eskisehirspor           Sivasspor      1      3      A   
04/04/15     T1  Genclerbirligi           Kasimpasa      5      2      H   
04/04/15     T1        Rizespor          Fenerbahce      1      5      A   
04/04/15     E2        Barnsley    Sheffield United      0      2      A   
04/04/15     E2         Swindon  Milton Keynes Dons      0      3      A   
04/04/15    SP1         Almeria             Levante      1      4      A   
04/04/15    SP1         Cordoba          Ath Madrid      0      2      A   
04/04/15    SP1          Malaga            Sociedad      1      1      D   
04/04/15    SP1         Sevilla          Ath Bilbao      2      0      H   

         season  
date             
04/04/15  14-15  
04/04/15  14-15  
04/04/15  14-15  
04/04/15  14-15  
04/04/15  14-15  
04/04/15  14-15  
04/04/15  14-15  
04/04/15  14-15  
04/04/15  14-15  
04/04/15  14-15  
04/04/15  14-15  
04/04/15  14-15  
04/04/15  14-15  
04/04/15  14-15  
04/04/15  14-15  
04/04/15  14-15  
04/04/15  14-15  
04/04/15  14-15  
04/04/15  14-15  
04/04/15  14-15  
04/04/15  14-15  
04/04/15  14-15  
04/04/15  14-15  
04/04/15  14-15  
04/04/15  14-15  
04/04/15  14-15  
04/04/15  14-15  


04/04/16
         league       home         away  hgoal  agoal result season
date                                                               
04/04/16     T1  Kasimpasa     Besiktas      2      1      H  15-16
04/04/16     T1   Rizespor  Kayserispor      0      0      D  15-16


04/05/13
         league           home                away  hgoal  agoal result season
date                                                                          
04/05/13    SP1        Granada              Malaga      1      0      H  12-13
04/05/13    SP1      La Coruna          Ath Madrid      0      0      D  12-13
04/05/13    SP1    Real Madrid          Valladolid      4      3      H  12-13
04/05/13    SP1       Valencia             Osasuna      4      0      H  12-13
04/05/13     I1         Chievo            Cagliari      0      0      D  12-13
04/05/13     I1     Fiorentina                Roma      0      1      A  12-13
04/05/13     T1    Kayserispor         Trabzonspor      2      1      H  12-13
04/05/13     T1       Orduspor           Bursaspor      2      4      A  12-13
04/05/13     D1       Dortmund       Bayern Munich      1      1      D  12-13
04/05/13     D1  Ein Frankfurt  Fortuna Dusseldorf      3      1      H  12-13
04/05/13     D1       Hannover               Mainz      2      2      D  12-13
04/05/13     D1       Nurnberg          Leverkusen      0      2      A  12-13
04/05/13     D1      Stuttgart      Greuther Furth      0      2      A  12-13
04/05/13     D1  Werder Bremen          Hoffenheim      2      2      D  12-13


04/05/14
         league                  home         away  hgoal  agoal result season
date                                                                          
04/05/14     T1  Akhisar Belediyespor   Fenerbahce      3      1      H  13-14
04/05/14     T1             Bursaspor  Trabzonspor      2      2      D  13-14
04/05/14     T1              Rizespor    Sivasspor      1      1      D  13-14
04/05/14    SP1               Almeria        Betis      3      2      H  13-14
04/05/14    SP1               Levante   Ath Madrid      2      0      H  13-14
04/05/14    SP1           Real Madrid     Valencia      2      2      D  13-14
04/05/14    SP1               Sevilla   Villarreal      0      0      D  13-14
04/05/14     I1               Catania         Roma      4      1      H  13-14
04/05/14     I1                Chievo       Torino      0      1      A  13-14
04/05/14     I1                 Genoa      Bologna      0      0      D  13-14
04/05/14     I1                 Milan        Inter      1      0      H  13-14
04/05/14     I1                 Parma    Sampdoria      2      0      H  13-14
04/05/14     I1               Udinese      Livorno      5      3      H  13-14


04/05/15
         league                  home         away  hgoal  agoal result season
date                                                                          
04/05/15     I1              Cagliari        Parma      4      0      H  14-15
04/05/15     T1  Akhisar Belediyespor  Galatasaray      0      2      A  14-15
04/05/15     T1           Erciyesspor    Sivasspor      2      3      A  14-15
04/05/15    SP1               Almeria        Celta      2      2      D  14-15


04/10/13
         league              home          away  hgoal  agoal result season
date                                                                       
04/10/13     D1          Hannover        Hertha      1      1      D  13-14
04/10/13     T1       Karabukspor     Bursaspor      0      1      A  13-14
04/10/13     E2  Sheffield United  Crawley Town      1      1      D  13-14
04/10/13    SP1            Malaga       Osasuna      0      1      A  13-14
04/10/13    SP1        Villarreal       Granada      3      0      H  13-14


04/10/14
         league            home                away  hgoal  agoal result  \
date                                                                       
04/10/14     D1   Bayern Munich            Hannover      4      0      H   
04/10/14     D1        Dortmund             Hamburg      0      1      A   
04/10/14     D1   Ein Frankfurt             FC Koln      3      2      H   
04/10/14     D1      Hoffenheim          Schalke 04      2      1      H   
04/10/14     D1      Leverkusen           Paderborn      2      2      D   
04/10/14     D1   Werder Bremen            Freiburg      1      1      D   
04/10/14     I1           Milan              Chievo      2      0      H   
04/10/14     I1          Verona            Cagliari      1      0      H   
04/10/14     T1     Erciyesspor         Galatasaray      1      2      A   
04/10/14     T1      Fenerbahce           Konyaspor      2      1      H   
04/10/14     T1       Kasimpasa       Gaziantepspor      4      2      H   
04/10/14     T1       Sivasspor      Genclerbirligi      1      0      H   
04/10/14     E2        Bradford               Crewe      2      0      H   
04/10/14     E2    Chesterfield    Sheffield United      3      2      H   
04/10/14     E2        Coventry        Crawley Town      2      2      D   
04/10/14     E2  Fleetwood Town           Port Vale      1      0      H   
04/10/14     E2   Leyton Orient             Swindon      1      2      A   
04/10/14     E2    Notts County          Gillingham      1      0      H   
04/10/14     E2       Peterboro              Oldham      2      2      D   
04/10/14     E2         Preston          Colchester      4      2      H   
04/10/14     E2        Rochdale            Barnsley      0      1      A   
04/10/14     E2      Scunthorpe           Doncaster      1      2      A   
04/10/14     E2         Walsall        Bristol City      1      1      D   
04/10/14     E2          Yeovil  Milton Keynes Dons      0      2      A   
04/10/14    SP1         Almeria               Elche      2      2      D   
04/10/14    SP1           Eibar             Levante      3      3      D   
04/10/14    SP1          Malaga             Granada      2      1      H   
04/10/14    SP1        Valencia          Ath Madrid      3      1      H   
04/10/14    SP1       Vallecano           Barcelona      0      2      A   

         season  
date             
04/10/14  14-15  
04/10/14  14-15  
04/10/14  14-15  
04/10/14  14-15  
04/10/14  14-15  
04/10/14  14-15  
04/10/14  14-15  
04/10/14  14-15  
04/10/14  14-15  
04/10/14  14-15  
04/10/14  14-15  
04/10/14  14-15  
04/10/14  14-15  
04/10/14  14-15  
04/10/14  14-15  
04/10/14  14-15  
04/10/14  14-15  
04/10/14  14-15  
04/10/14  14-15  
04/10/14  14-15  
04/10/14  14-15  
04/10/14  14-15  
04/10/14  14-15  
04/10/14  14-15  
04/10/14  14-15  
04/10/14  14-15  
04/10/14  14-15  
04/10/14  14-15  
04/10/14  14-15  


04/10/15
         league           home                  away  hgoal  agoal result  \
date                                                                        
04/10/15     T1    Antalyaspor             Kasimpasa      0      0      D   
04/10/15     T1  Eskisehirspor              Besiktas      1      2      A   
04/10/15     T1     Fenerbahce  Akhisar Belediyespor      2      2      D   
04/10/15     T1       Rizespor             Bursaspor      2      3      A   
04/10/15     D1  Bayern Munich              Dortmund      5      1      H   
04/10/15     D1     Leverkusen              Augsburg      1      1      D   
04/10/15     D1     Schalke 04               FC Koln      0      3      A   
04/10/15     I1         Empoli              Sassuolo      1      0      H   
04/10/15     I1     Fiorentina              Atalanta      3      0      H   
04/10/15     I1       Juventus               Bologna      3      1      H   
04/10/15     I1          Lazio             Frosinone      2      0      H   
04/10/15     I1          Milan                Napoli      0      4      A   
04/10/15     I1        Palermo                  Roma      2      4      A   
04/10/15     I1      Sampdoria                 Inter      1      1      D   
04/10/15     I1        Udinese                 Genoa      1      1      D   
04/10/15    SP1     Ath Bilbao              Valencia      3      1      H   
04/10/15    SP1     Ath Madrid           Real Madrid      1      1      D   
04/10/15    SP1        Levante            Villarreal      1      0      H   
04/10/15    SP1      Vallecano                 Betis      0      2      A   

         season  
date             
04/10/15  15-16  
04/10/15  15-16  
04/10/15  15-16  
04/10/15  15-16  
04/10/15  15-16  
04/10/15  15-16  
04/10/15  15-16  
04/10/15  15-16  
04/10/15  15-16  
04/10/15  15-16  
04/10/15  15-16  
04/10/15  15-16  
04/10/15  15-16  
04/10/15  15-16  
04/10/15  15-16  
04/10/15  15-16  
04/10/15  15-16  
04/10/15  15-16  
04/10/15  15-16  


04/11/11
         league        home        away  hgoal  agoal result season
date                                                               
04/11/11     D1       Mainz   Stuttgart      3      1      H  11-12
04/11/11     T1  Samsunspor  Ankaragucu      2      2      D  11-12
04/11/11     T1   Sivasspor  Fenerbahce      2      0      H  11-12


04/11/12
         league            home                away  hgoal  agoal result  \
date                                                                       
04/11/12    SP1         Granada          Ath Bilbao      1      2      A   
04/11/12    SP1       La Coruna            Mallorca      1      0      H   
04/11/12    SP1         Osasuna          Valladolid      0      1      A   
04/11/12    SP1         Sevilla             Levante      0      0      D   
04/11/12    SP1        Sociedad             Espanol      0      1      A   
04/11/12     I1         Bologna             Udinese      1      1      D   
04/11/12     I1         Catania               Lazio      4      0      H   
04/11/12     I1      Fiorentina            Cagliari      4      1      H   
04/11/12     I1          Napoli              Torino      1      1      D   
04/11/12     I1         Pescara               Parma      2      0      H   
04/11/12     I1            Roma             Palermo      4      1      H   
04/11/12     I1       Sampdoria            Atalanta      1      2      A   
04/11/12     I1           Siena               Genoa      1      0      H   
04/11/12     T1        Besiktas  Mersin Idman Yurdu      3      0      H   
04/11/12     T1  Genclerbirligi          Elazigspor      1      2      A   
04/11/12     T1        Orduspor           Sivasspor      2      0      H   
04/11/12     D1      Leverkusen  Fortuna Dusseldorf      3      2      H   
04/11/12     D1   Werder Bremen               Mainz      2      1      H   

         season  
date             
04/11/12  12-13  
04/11/12  12-13  
04/11/12  12-13  
04/11/12  12-13  
04/11/12  12-13  
04/11/12  12-13  
04/11/12  12-13  
04/11/12  12-13  
04/11/12  12-13  
04/11/12  12-13  
04/11/12  12-13  
04/11/12  12-13  
04/11/12  12-13  
04/11/12  12-13  
04/11/12  12-13  
04/11/12  12-13  
04/11/12  12-13  
04/11/12  12-13  


04/11/13
         league            home           away  hgoal  agoal result season
date                                                                      
04/11/13     T1     Antalyaspor    Kayserispor      2      2      D  13-14
04/11/13     T1   Gaziantepspor      Sivasspor      0      4      A  13-14
04/11/13     T1  Genclerbirligi  Eskisehirspor      2      0      H  13-14
04/11/13    SP1           Elche     Villarreal      0      1      A  13-14
04/11/13     I1         Bologna         Chievo      0      0      D  13-14


04/11/14
         league     home     away  hgoal  agoal result season
date                                                         
04/11/14     E2  Swindon  Preston      1      0      H  14-15


04/12/11
         league                home           away  hgoal  agoal result season
date                                                                          
04/12/11    SP1          Ath Madrid      Vallecano      3      1      H  11-12
04/12/11    SP1             Granada       Zaragoza      1      0      H  11-12
04/12/11    SP1            Mallorca     Ath Bilbao      1      1      D  11-12
04/12/11    SP1             Osasuna          Betis      2      1      H  11-12
04/12/11    SP1            Sociedad         Malaga      3      2      H  11-12
04/12/11     I1             Bologna          Siena      1      0      H  11-12
04/12/11     I1             Catania       Cagliari      0      1      A  11-12
04/12/11     I1              Chievo       Atalanta      0      0      D  11-12
04/12/11     I1          Fiorentina           Roma      3      0      H  11-12
04/12/11     I1            Juventus         Cesena      2      0      H  11-12
04/12/11     I1               Parma        Palermo      0      0      D  11-12
04/12/11     D1             Hamburg       Nurnberg      2      0      H  11-12
04/12/11     D1          Schalke 04       Augsburg      3      1      H  11-12
04/12/11     T1         Antalyaspor    Karabukspor      2      1      H  11-12
04/12/11     T1           Bursaspor  Eskisehirspor      0      1      A  11-12
04/12/11     T1         Kayserispor     Buyuksehyr      1      0      H  11-12
04/12/11     T1  Mersin Idman Yurdu     Manisaspor      0      0      D  11-12


04/12/15
         league         home       away  hgoal  agoal result season
date                                                               
04/12/15     T1  Galatasaray  Bursaspor      3      0      H  15-16
04/12/15     D1   Schalke 04   Hannover      3      1      H  15-16
04/12/15     I1        Lazio   Juventus      0      2      A  15-16


05/01/13
         league       home        away  hgoal  agoal result season
date                                                              
05/01/13    SP1    Granada    Valencia      1      2      A  12-13
05/01/13    SP1  La Coruna      Malaga      1      0      H  12-13
05/01/13    SP1    Levante  Ath Bilbao      3      1      H  12-13
05/01/13    SP1    Sevilla     Osasuna      1      0      H  12-13
05/01/13     I1    Catania      Torino      0      0      D  12-13
05/01/13     I1      Lazio    Cagliari      2      1      H  12-13
05/01/13     E2      Crewe   Stevenage      1      2      A  12-13
05/01/13     E2  Doncaster  Colchester      1      0      H  12-13


05/01/14
         league        home        away  hgoal  agoal result season
date                                                               
05/01/14    SP1   Barcelona       Elche      4      0      H  13-14
05/01/14    SP1     Osasuna     Espanol      1      0      H  13-14
05/01/14    SP1     Sevilla      Getafe      3      0      H  13-14
05/01/14    SP1    Sociedad  Ath Bilbao      2      0      H  13-14
05/01/14     I1      Chievo    Cagliari      0      0      D  13-14
05/01/14     I1  Fiorentina     Livorno      1      0      H  13-14
05/01/14     I1    Juventus        Roma      3      0      H  13-14


05/01/15
         league                home            away  hgoal  agoal result  \
date                                                                       
05/01/15     I1               Lazio       Sampdoria      3      0      H   
05/01/15     T1       Balikesirspor     Trabzonspor      2      2      D   
05/01/15     T1  Mersin Idman Yurdu  Genclerbirligi      1      1      D   
05/01/15    SP1             Cordoba         Granada      2      0      H   

         season  
date             
05/01/15  14-15  
05/01/15  14-15  
05/01/15  14-15  
05/01/15  14-15  


05/01/16
         league   home       away  hgoal  agoal result season
date                                                         
05/01/16     I1  Genoa  Sampdoria      2      3      A  15-16


05/02/12
         league                home            away  hgoal  agoal result  \
date                                                                       
05/02/12    SP1          Ath Madrid        Valencia      0      0      D   
05/02/12    SP1             Sevilla      Villarreal      1      2      A   
05/02/12    SP1            Sp Gijon         Osasuna      1      1      D   
05/02/12    SP1            Zaragoza       Vallecano      1      2      A   
05/02/12     I1              Chievo           Parma      1      2      A   
05/02/12     I1          Fiorentina         Udinese      3      2      H   
05/02/12     I1               Genoa           Lazio      3      2      H   
05/02/12     I1            Juventus           Siena      0      0      D   
05/02/12     I1               Lecce         Bologna      0      0      D   
05/02/12     I1               Milan          Napoli      0      0      D   
05/02/12     I1              Novara        Cagliari      0      0      D   
05/02/12     I1             Palermo        Atalanta      2      1      H   
05/02/12     D1            Freiburg   Werder Bremen      2      2      D   
05/02/12     D1      Kaiserslautern         FC Koln      0      1      A   
05/02/12     T1           Bursaspor        Orduspor      0      0      D   
05/02/12     T1          Fenerbahce        Besiktas      2      0      H   
05/02/12     T1         Kayserispor  Genclerbirligi      2      3      A   
05/02/12     T1  Mersin Idman Yurdu       Sivasspor      1      5      A   

         season  
date             
05/02/12  11-12  
05/02/12  11-12  
05/02/12  11-12  
05/02/12  11-12  
05/02/12  11-12  
05/02/12  11-12  
05/02/12  11-12  
05/02/12  11-12  
05/02/12  11-12  
05/02/12  11-12  
05/02/12  11-12  
05/02/12  11-12  
05/02/12  11-12  
05/02/12  11-12  
05/02/12  11-12  
05/02/12  11-12  
05/02/12  11-12  
05/02/12  11-12  


05/02/13
         league        home          away  hgoal  agoal result season
date                                                                 
05/02/13     E2  Colchester       Swindon      0      1      A  12-13
05/02/13     E2  Scunthorpe    Portsmouth      2      1      H  12-13
05/02/13     E2   Stevenage  Notts County      2      0      H  12-13


05/02/16
         league         home           away  hgoal  agoal result season
date                                                                   
05/02/16     T1  Antalyaspor     Fenerbahce      4      2      H  15-16
05/02/16     T1  Osmanlispor      Sivasspor      4      0      H  15-16
05/02/16     D1   M'gladbach  Werder Bremen      5      1      H  15-16
05/02/16    SP1       Malaga         Getafe      3      0      H  15-16


05/03/12
         league       home         away  hgoal  agoal result season
date                                                               
05/03/12    SP1    Levante        Betis      3      1      H  11-12
05/03/12     T1  Sivasspor  Galatasaray      0      4      A  11-12


05/03/13
         league                home        away  hgoal  agoal result season
date                                                                       
05/03/13     E2        Crawley Town    Carlisle      1      1      D  12-13
05/03/13     E2          Hartlepool  Colchester      0      0      D  12-13
05/03/13     E2  Milton Keynes Dons   Doncaster      3      0      H  12-13
05/03/13     E2           Stevenage   Brentford      1      0      H  12-13


05/03/14
         league      home     away  hgoal  agoal result season
date                                                          
05/03/14     E2  Coventry  Walsall      2      1      H  13-14


05/03/16
         league            home              away  hgoal  agoal result season
date                                                                         
05/03/16     T1       Bursaspor          Rizespor      1      0      H  15-16
05/03/16     T1     Kayserispor    Genclerbirligi      0      2      A  15-16
05/03/16     T1     Osmanlispor     Gaziantepspor      1      1      D  15-16
05/03/16     D1        Augsburg        Leverkusen      3      3      D  15-16
05/03/16     D1        Dortmund     Bayern Munich      0      0      D  15-16
05/03/16     D1   Ein Frankfurt        Ingolstadt      1      1      D  15-16
05/03/16     D1         FC Koln        Schalke 04      1      3      A  15-16
05/03/16     D1       Stuttgart        Hoffenheim      5      1      H  15-16
05/03/16     D1   Werder Bremen          Hannover      4      1      H  15-16
05/03/16     D1       Wolfsburg        M'gladbach      2      1      H  15-16
05/03/16     I1          Napoli            Chievo      3      1      H  15-16
05/03/16     I1          Verona         Sampdoria      0      3      A  15-16
05/03/16    SP1          Getafe           Sevilla      1      1      D  15-16
05/03/16    SP1       La Coruna            Malaga      3      3      D  15-16
05/03/16    SP1     Real Madrid             Celta      7      1      H  15-16
05/03/16    SP1      Villarreal        Las Palmas      0      1      A  15-16
05/03/16     E2            Bury          Bradford      0      0      D  15-16
05/03/16     E2        Coventry          Rochdale      0      1      A  15-16
05/03/16     E2           Crewe            Burton      1      1      D  15-16
05/03/16     E2       Doncaster        Shrewsbury      0      1      A  15-16
05/03/16     E2  Fleetwood Town  Sheffield United      2      2      D  15-16
05/03/16     E2        Millwall         Blackpool      3      0      H  15-16
05/03/16     E2       Port Vale        Colchester      2      0      H  15-16
05/03/16     E2      Scunthorpe        Gillingham      0      0      D  15-16
05/03/16     E2        Southend      Chesterfield      0      1      A  15-16
05/03/16     E2         Walsall          Barnsley      1      3      A  15-16
05/03/16     E2           Wigan         Peterboro      1      1      D  15-16


05/04/13
         league         home                away  hgoal  agoal result season
date                                                                        
05/04/13    SP1      Granada               Betis      1      5      A  12-13
05/04/13     T1  Antalyaspor           Kasimpasa      3      2      H  12-13
05/04/13     D1   Hoffenheim  Fortuna Dusseldorf      3      0      H  12-13


05/04/14
         league                  home                away  hgoal  agoal  \
date                                                                      
05/04/14     D1              Augsburg       Bayern Munich      1      0   
05/04/14     D1              Dortmund           Wolfsburg      2      1   
05/04/14     D1         Ein Frankfurt               Mainz      2      0   
05/04/14     D1              Nurnberg          M'gladbach      0      2   
05/04/14     D1             Stuttgart            Freiburg      2      0   
05/04/14     D1         Werder Bremen          Schalke 04      1      1   
05/04/14     T1  Akhisar Belediyespor       Eskisehirspor      0      0   
05/04/14     T1           Antalyaspor           Konyaspor      1      1   
05/04/14     T1              Besiktas         Kayserispor      2      1   
05/04/14     T1              Rizespor         Karabukspor      0      1   
05/04/14     E2              Bradford              Oldham      2      3   
05/04/14     E2             Brentford        Notts County      3      1   
05/04/14     E2          Bristol City             Preston      1      1   
05/04/14     E2              Carlisle             Swindon      1      0   
05/04/14     E2            Colchester            Tranmere      1      2   
05/04/14     E2              Coventry  Milton Keynes Dons      1      2   
05/04/14     E2          Crawley Town               Crewe      1      2   
05/04/14     E2            Gillingham           Rotherham      3      4   
05/04/14     E2             Port Vale             Walsall      1      0   
05/04/14     E2      Sheffield United       Leyton Orient      1      1   
05/04/14     E2            Shrewsbury           Stevenage      1      0   
05/04/14     E2                Wolves           Peterboro      2      0   
05/04/14    SP1            Ath Madrid          Villarreal      1      0   
05/04/14    SP1             Barcelona               Betis      3      1   
05/04/14    SP1              Sociedad         Real Madrid      0      4   
05/04/14    SP1             Vallecano               Celta      3      0   
05/04/14     I1                 Inter             Bologna      2      2   

         result season  
date                    
05/04/14      H  13-14  
05/04/14      H  13-14  
05/04/14      H  13-14  
05/04/14      A  13-14  
05/04/14      H  13-14  
05/04/14      D  13-14  
05/04/14      D  13-14  
05/04/14      D  13-14  
05/04/14      H  13-14  
05/04/14      A  13-14  
05/04/14      A  13-14  
05/04/14      H  13-14  
05/04/14      D  13-14  
05/04/14      H  13-14  
05/04/14      A  13-14  
05/04/14      A  13-14  
05/04/14      A  13-14  
05/04/14      A  13-14  
05/04/14      H  13-14  
05/04/14      D  13-14  
05/04/14      H  13-14  
05/04/14      H  13-14  
05/04/14      H  13-14  
05/04/14      H  13-14  
05/04/14      A  13-14  
05/04/14      H  13-14  
05/04/14      D  13-14  


05/04/15
         league                  home           away  hgoal  agoal result  \
date                                                                        
05/04/15     D1              Augsburg     Schalke 04      0      0      D   
05/04/15     D1                Hertha      Paderborn      2      0      H   
05/04/15     T1  Akhisar Belediyespor  Gaziantepspor      3      0      H   
05/04/15     T1             Bursaspor    Erciyesspor      3      0      H   
05/04/15     T1           Galatasaray    Karabukspor      4      2      H   
05/04/15     T1             Konyaspor    Trabzonspor      1      0      H   
05/04/15    SP1                 Celta      Barcelona      0      1      A   
05/04/15    SP1                Getafe      La Coruna      2      1      H   
05/04/15    SP1           Real Madrid        Granada      9      1      H   
05/04/15    SP1              Valencia     Villarreal      0      0      D   

         season  
date             
05/04/15  14-15  
05/04/15  14-15  
05/04/15  14-15  
05/04/15  14-15  
05/04/15  14-15  
05/04/15  14-15  
05/04/15  14-15  
05/04/15  14-15  
05/04/15  14-15  
05/04/15  14-15  


05/04/16
         league            home       away  hgoal  agoal result season
date                                                                  
05/04/16     E2  Fleetwood Town  Peterboro      2      0      H  15-16
05/04/16     E2          Oldham    Swindon      2      0      H  15-16


05/05/12
         league                home              away  hgoal  agoal result  \
date                                                                         
05/05/12    SP1          Ath Bilbao            Getafe      0      0      D   
05/05/12    SP1          Ath Madrid            Malaga      2      1      H   
05/05/12    SP1           Barcelona           Espanol      4      0      H   
05/05/12    SP1             Granada       Real Madrid      1      2      A   
05/05/12    SP1            Mallorca           Levante      1      0      H   
05/05/12    SP1             Osasuna          Sociedad      1      0      H   
05/05/12    SP1             Sevilla         Vallecano      5      2      H   
05/05/12    SP1            Sp Gijon             Betis      2      1      H   
05/05/12    SP1            Valencia        Villarreal      1      0      H   
05/05/12    SP1            Zaragoza         Santander      2      1      H   
05/05/12     I1               Lecce        Fiorentina      0      1      A   
05/05/12     I1                Roma           Catania      2      2      D   
05/05/12     D1            Augsburg           Hamburg      1      0      H   
05/05/12     D1            Dortmund          Freiburg      4      0      H   
05/05/12     D1             FC Koln     Bayern Munich      1      4      A   
05/05/12     D1            Hannover    Kaiserslautern      2      1      H   
05/05/12     D1              Hertha        Hoffenheim      3      1      H   
05/05/12     D1               Mainz        M'gladbach      0      3      A   
05/05/12     D1            Nurnberg        Leverkusen      1      4      A   
05/05/12     D1           Stuttgart         Wolfsburg      3      2      H   
05/05/12     D1       Werder Bremen        Schalke 04      2      3      A   
05/05/12     E2         Bournemouth           Preston      1      0      H   
05/05/12     E2            Charlton        Hartlepool      3      2      H   
05/05/12     E2        Chesterfield         Brentford      2      3      A   
05/05/12     E2              Exeter  Sheffield United      2      2      D   
05/05/12     E2        Huddersfield            Yeovil      2      0      H   
05/05/12     E2       Leyton Orient          Rochdale      2      1      H   
05/05/12     E2  Milton Keynes Dons           Walsall      0      1      A   
05/05/12     E2        Notts County        Colchester      4      1      H   
05/05/12     E2              Oldham          Carlisle      2      1      H   
05/05/12     E2      Sheffield Weds           Wycombe      2      0      H   
05/05/12     E2           Stevenage              Bury      3      0      H   
05/05/12     E2            Tranmere        Scunthorpe      1      1      D   

         season  
date             
05/05/12  11-12  
05/05/12  11-12  
05/05/12  11-12  
05/05/12  11-12  
05/05/12  11-12  
05/05/12  11-12  
05/05/12  11-12  
05/05/12  11-12  
05/05/12  11-12  
05/05/12  11-12  
05/05/12  11-12  
05/05/12  11-12  
05/05/12  11-12  
05/05/12  11-12  
05/05/12  11-12  
05/05/12  11-12  
05/05/12  11-12  
05/05/12  11-12  
05/05/12  11-12  
05/05/12  11-12  
05/05/12  11-12  
05/05/12  11-12  
05/05/12  11-12  
05/05/12  11-12  
05/05/12  11-12  
05/05/12  11-12  
05/05/12  11-12  
05/05/12  11-12  
05/05/12  11-12  
05/05/12  11-12  
05/05/12  11-12  
05/05/12  11-12  
05/05/12  11-12  


05/05/13
         league                home                  away  hgoal  agoal  \
date                                                                      
05/05/13    SP1           Barcelona                 Betis      4      2   
05/05/13    SP1            Mallorca               Levante      1      1   
05/05/13    SP1             Sevilla               Espanol      3      0   
05/05/13    SP1            Zaragoza             Vallecano      3      0   
05/05/13     I1             Catania                 Siena      3      0   
05/05/13     I1               Genoa               Pescara      4      1   
05/05/13     I1            Juventus               Palermo      1      0   
05/05/13     I1               Lazio               Bologna      6      0   
05/05/13     I1               Milan                Torino      1      0   
05/05/13     I1              Napoli                 Inter      3      1   
05/05/13     I1               Parma              Atalanta      2      0   
05/05/13     I1             Udinese             Sampdoria      3      1   
05/05/13     T1         Antalyaspor  Akhisar Belediyespor      4      3   
05/05/13     T1          Buyuksehyr            Fenerbahce      2      0   
05/05/13     T1       Eskisehirspor              Besiktas      1      2   
05/05/13     T1         Galatasaray             Sivasspor      4      2   
05/05/13     T1         Karabukspor         Gaziantepspor      0      2   
05/05/13     T1  Mersin Idman Yurdu            Elazigspor      0      2   
05/05/13     D1            Freiburg              Augsburg      2      0   
05/05/13     D1             Hamburg             Wolfsburg      1      1   

         result season  
date                    
05/05/13      H  12-13  
05/05/13      D  12-13  
05/05/13      H  12-13  
05/05/13      H  12-13  
05/05/13      H  12-13  
05/05/13      H  12-13  
05/05/13      H  12-13  
05/05/13      H  12-13  
05/05/13      H  12-13  
05/05/13      H  12-13  
05/05/13      H  12-13  
05/05/13      H  12-13  
05/05/13      H  12-13  
05/05/13      H  12-13  
05/05/13      A  12-13  
05/05/13      H  12-13  
05/05/13      A  12-13  
05/05/13      A  12-13  
05/05/13      H  12-13  
05/05/13      D  12-13  


05/05/14
         league      home      away  hgoal  agoal result season
date                                                           
05/05/14    SP1  Sociedad   Granada      1      1      D  13-14
05/05/14     I1  Juventus  Atalanta      1      0      H  13-14
05/05/14     I1     Lazio    Verona      3      3      D  13-14


05/08/11
         league      home     away  hgoal  agoal result season
date                                                          
05/08/11     D1  Dortmund  Hamburg      3      1      H  11-12


05/09/11
         league      home            away  hgoal  agoal result season
date                                                                 
05/09/11     E2  Charlton  Sheffield Weds      1      1      D  11-12


05/09/14
         league      home        away  hgoal  agoal result season
date                                                             
05/09/14     E2  Coventry  Gillingham      1      0      H  14-15


05/09/15
         league            home        away  hgoal  agoal result season
date                                                                   
05/09/15     E2        Barnsley  Shrewsbury      1      2      A  15-16
05/09/15     E2    Chesterfield       Wigan      2      3      A  15-16
05/09/15     E2           Crewe     Swindon      1      3      A  15-16
05/09/15     E2  Fleetwood Town    Rochdale      1      1      D  15-16
05/09/15     E2      Gillingham   Doncaster      1      0      H  15-16
05/09/15     E2          Oldham    Bradford      1      2      A  15-16
05/09/15     E2      Scunthorpe   Blackpool      0      1      A  15-16
05/09/15     E2        Southend   Peterboro      2      1      H  15-16
05/09/15     E2         Walsall        Bury      0      1      A  15-16


05/10/12
         league           home           away  hgoal  agoal result season
date                                                                     
05/10/12    SP1          Celta        Sevilla      2      0      H  12-13
05/10/12     T1  Gaziantepspor    Antalyaspor      0      1      A  12-13
05/10/12     T1    Karabukspor       Orduspor      1      1      D  12-13
05/10/12     T1    Trabzonspor      Kasimpasa      1      0      H  12-13
05/10/12     D1       Augsburg  Werder Bremen      3      1      H  12-13


05/10/13
         league           home                away  hgoal  agoal result season
date                                                                          
05/10/13     D1     Leverkusen       Bayern Munich      1      1      D  13-14
05/10/13     D1          Mainz          Hoffenheim      2      2      D  13-14
05/10/13     D1     M'gladbach            Dortmund      2      0      H  13-14
05/10/13     D1     Schalke 04            Augsburg      4      1      H  13-14
05/10/13     D1      Stuttgart       Werder Bremen      1      1      D  13-14
05/10/13     D1      Wolfsburg        Braunschweig      0      2      A  13-14
05/10/13     T1  Eskisehirspor            Besiktas      0      1      A  13-14
05/10/13     T1    Kayserispor       Gaziantepspor      0      1      A  13-14
05/10/13     T1      Konyaspor         Erciyesspor      1      0      H  13-14
05/10/13     E2      Brentford           Rotherham      0      1      A  13-14
05/10/13     E2     Colchester              Wolves      0      3      A  13-14
05/10/13     E2     Gillingham  Milton Keynes Dons      3      2      H  13-14
05/10/13     E2   Notts County               Crewe      4      0      H  13-14
05/10/13     E2         Oldham       Leyton Orient      1      1      D  13-14
05/10/13     E2      Peterboro             Preston      2      0      H  13-14
05/10/13     E2      Port Vale        Bristol City      1      1      D  13-14
05/10/13     E2     Shrewsbury            Carlisle      2      2      D  13-14
05/10/13     E2      Stevenage            Coventry      0      1      A  13-14
05/10/13     E2        Swindon            Tranmere      1      0      H  13-14
05/10/13     E2        Walsall            Bradford      0      2      A  13-14
05/10/13    SP1      Barcelona          Valladolid      4      1      H  13-14
05/10/13    SP1          Elche             Espanol      2      1      H  13-14
05/10/13    SP1        Levante         Real Madrid      2      3      A  13-14
05/10/13    SP1      Vallecano            Sociedad      1      0      H  13-14
05/10/13     I1         Chievo            Atalanta      0      1      A  13-14
05/10/13     I1          Inter                Roma      0      3      A  13-14


05/10/14
         league           home                  away  hgoal  agoal result  \
date                                                                        
05/10/14     D1     M'gladbach                 Mainz      1      1      D   
05/10/14     D1      Wolfsburg              Augsburg      1      0      H   
05/10/14     I1         Empoli               Palermo      3      0      H   
05/10/14     I1     Fiorentina                 Inter      3      0      H   
05/10/14     I1       Juventus                  Roma      3      2      H   
05/10/14     I1          Lazio              Sassuolo      3      2      H   
05/10/14     I1         Napoli                Torino      2      1      H   
05/10/14     I1          Parma                 Genoa      1      2      A   
05/10/14     I1      Sampdoria              Atalanta      1      0      H   
05/10/14     I1        Udinese                Cesena      1      1      D   
05/10/14     T1  Balikesirspor              Besiktas      0      1      A   
05/10/14     T1     Buyuksehyr  Akhisar Belediyespor      4      0      H   
05/10/14     T1  Eskisehirspor              Rizespor      1      2      A   
05/10/14     T1    Karabukspor           Trabzonspor      3      0      H   
05/10/14    SP1          Celta            Villarreal      1      3      A   
05/10/14    SP1        Espanol              Sociedad      2      0      H   
05/10/14    SP1    Real Madrid            Ath Bilbao      5      0      H   
05/10/14    SP1        Sevilla             La Coruna      4      1      H   

         season  
date             
05/10/14  14-15  
05/10/14  14-15  
05/10/14  14-15  
05/10/14  14-15  
05/10/14  14-15  
05/10/14  14-15  
05/10/14  14-15  
05/10/14  14-15  
05/10/14  14-15  
05/10/14  14-15  
05/10/14  14-15  
05/10/14  14-15  
05/10/14  14-15  
05/10/14  14-15  
05/10/14  14-15  
05/10/14  14-15  
05/10/14  14-15  
05/10/14  14-15  


05/11/11
         league                home                away  hgoal  agoal result  \
date                                                                           
05/11/11    SP1               Betis              Malaga      0      0      D   
05/11/11    SP1             Levante            Valencia      0      2      A   
05/11/11    SP1            Mallorca             Sevilla      0      0      D   
05/11/11     I1              Novara                Roma      0      2      A   
05/11/11     I1             Palermo             Bologna      3      1      H   
05/11/11     D1            Dortmund           Wolfsburg      5      1      H   
05/11/11     D1              Hertha          M'gladbach      1      2      A   
05/11/11     D1          Hoffenheim      Kaiserslautern      1      1      D   
05/11/11     D1          Leverkusen             Hamburg      2      2      D   
05/11/11     D1            Nurnberg            Freiburg      1      2      A   
05/11/11     D1       Werder Bremen             FC Koln      3      2      H   
05/11/11     T1         Galatasaray  Mersin Idman Yurdu      0      0      D   
05/11/11     T1         Karabukspor       Eskisehirspor      1      2      A   
05/11/11     T1          Manisaspor         Antalyaspor      1      0      H   
05/11/11     T1            Orduspor       Gaziantepspor      0      0      D   
05/11/11     E2         Bournemouth          Scunthorpe      2      0      H   
05/11/11     E2            Charlton             Preston      5      2      H   
05/11/11     E2        Chesterfield              Yeovil      2      2      D   
05/11/11     E2              Exeter            Carlisle      0      0      D   
05/11/11     E2        Huddersfield             Walsall      1      1      D   
05/11/11     E2       Leyton Orient          Hartlepool      1      1      D   
05/11/11     E2  Milton Keynes Dons            Rochdale      3      1      H   
05/11/11     E2        Notts County             Wycombe      1      1      D   
05/11/11     E2              Oldham                Bury      0      2      A   
05/11/11     E2      Sheffield Weds           Brentford      0      0      D   
05/11/11     E2           Stevenage    Sheffield United      2      1      H   
05/11/11     E2            Tranmere          Colchester      0      0      D   

         season  
date             
05/11/11  11-12  
05/11/11  11-12  
05/11/11  11-12  
05/11/11  11-12  
05/11/11  11-12  
05/11/11  11-12  
05/11/11  11-12  
05/11/11  11-12  
05/11/11  11-12  
05/11/11  11-12  
05/11/11  11-12  
05/11/11  11-12  
05/11/11  11-12  
05/11/11  11-12  
05/11/11  11-12  
05/11/11  11-12  
05/11/11  11-12  
05/11/11  11-12  
05/11/11  11-12  
05/11/11  11-12  
05/11/11  11-12  
05/11/11  11-12  
05/11/11  11-12  
05/11/11  11-12  
05/11/11  11-12  
05/11/11  11-12  
05/11/11  11-12  


05/11/12
         league         home         away  hgoal  agoal result season
date                                                                 
05/11/12    SP1       Getafe        Betis      2      4      A  12-13
05/11/12     T1  Antalyaspor  Trabzonspor      2      1      H  12-13
05/11/12     T1    Bursaspor    Kasimpasa      1      2      A  12-13


05/11/13
         league          home          away  hgoal  agoal result season
date                                                                   
05/11/13     E2  Bristol City  Crawley Town      2      0      H  13-14
05/11/13     E2      Carlisle        Wolves      2      2      D  13-14


05/12/11
         league      home      away  hgoal  agoal result season
date                                                           
05/12/11    SP1   Sevilla    Getafe      3      0      H  11-12
05/12/11     I1     Lazio    Novara      3      0      H  11-12
05/12/11     T1  Besiktas  Orduspor      2      1      H  11-12


05/12/14
         league        home        away  hgoal  agoal result season
date                                                               
05/12/14     D1    Dortmund  Hoffenheim      1      0      H  14-15
05/12/14     I1  Fiorentina    Juventus      0      0      D  14-15


05/12/15
         league         home           away  hgoal  agoal result season
date                                                                   
05/12/15     T1  Kayserispor       Besiktas      1      2      A  15-16
05/12/15     T1    Konyaspor    Antalyaspor      3      2      H  15-16
05/12/15     T1  Osmanlispor      Kasimpasa      0      1      A  15-16
05/12/15     D1      FC Koln       Augsburg      0      1      A  15-16
05/12/15     D1      Hamburg          Mainz      1      3      A  15-16
05/12/15     D1       Hertha     Leverkusen      2      1      H  15-16
05/12/15     D1   Ingolstadt     Hoffenheim      1      1      D  15-16
05/12/15     D1   M'gladbach  Bayern Munich      3      1      H  15-16
05/12/15     D1    Wolfsburg       Dortmund      1      2      A  15-16
05/12/15     I1        Inter          Genoa      1      0      H  15-16
05/12/15     I1       Torino           Roma      1      1      D  15-16
05/12/15    SP1        Betis          Celta      1      1      D  15-16
05/12/15    SP1      Granada     Ath Madrid      0      2      A  15-16
05/12/15    SP1    La Coruna        Sevilla      1      1      D  15-16
05/12/15    SP1  Real Madrid         Getafe      4      1      H  15-16
05/12/15    SP1     Valencia      Barcelona      1      1      D  15-16


06/01/12
         league     home          away  hgoal  agoal result season
date                                                              
06/01/12     E2  Wycombe  Huddersfield      0      6      A  11-12


06/01/13
         league         home        away  hgoal  agoal result season
date                                                                
06/01/13    SP1    Barcelona     Espanol      4      0      H  12-13
06/01/13    SP1        Celta  Valladolid      3      1      H  12-13
06/01/13    SP1     Mallorca  Ath Madrid      1      1      D  12-13
06/01/13    SP1  Real Madrid    Sociedad      4      3      H  12-13
06/01/13     I1       Chievo    Atalanta      1      0      H  12-13
06/01/13     I1   Fiorentina     Pescara      0      2      A  12-13
06/01/13     I1        Genoa     Bologna      2      0      H  12-13
06/01/13     I1     Juventus   Sampdoria      1      2      A  12-13
06/01/13     I1        Milan       Siena      2      1      H  12-13
06/01/13     I1       Napoli        Roma      4      1      H  12-13
06/01/13     I1        Parma     Palermo      2      1      H  12-13
06/01/13     I1      Udinese       Inter      3      0      H  12-13


06/01/14
         league         home        away  hgoal  agoal result season
date                                                                
06/01/14    SP1  Real Madrid       Celta      3      0      H  13-14
06/01/14    SP1    Vallecano  Villarreal      2      5      A  13-14
06/01/14     I1      Catania     Bologna      2      0      H  13-14
06/01/14     I1        Genoa    Sassuolo      2      0      H  13-14
06/01/14     I1        Lazio       Inter      1      0      H  13-14
06/01/14     I1        Milan    Atalanta      3      0      H  13-14
06/01/14     I1       Napoli   Sampdoria      2      0      H  13-14
06/01/14     I1        Parma      Torino      3      1      H  13-14
06/01/14     I1      Udinese      Verona      1      3      A  13-14


06/01/15
         league      home        away  hgoal  agoal result season
date                                                             
06/01/15     I1    Cesena      Napoli      1      4      A  14-15
06/01/15     I1    Chievo      Torino      0      0      D  14-15
06/01/15     I1    Empoli      Verona      0      0      D  14-15
06/01/15     I1     Genoa    Atalanta      2      2      D  14-15
06/01/15     I1  Juventus       Inter      1      1      D  14-15
06/01/15     I1     Milan    Sassuolo      1      2      A  14-15
06/01/15     I1   Palermo    Cagliari      5      0      H  14-15
06/01/15     I1     Parma  Fiorentina      1      0      H  14-15
06/01/15     I1   Udinese        Roma      0      1      A  14-15


06/01/16
         league      home        away  hgoal  agoal result season
date                                                             
06/01/16     I1    Chievo        Roma      3      3      D  15-16
06/01/16     I1    Empoli       Inter      0      1      A  15-16
06/01/16     I1  Juventus      Verona      3      0      H  15-16
06/01/16     I1     Lazio       Carpi      0      0      D  15-16
06/01/16     I1     Milan     Bologna      0      1      A  15-16
06/01/16     I1    Napoli      Torino      2      1      H  15-16
06/01/16     I1   Palermo  Fiorentina      1      3      A  15-16
06/01/16     I1  Sassuolo   Frosinone      2      2      D  15-16
06/01/16     I1   Udinese    Atalanta      2      1      H  15-16


06/02/12
         league           home        away  hgoal  agoal result season
date                                                                  
06/02/12    SP1        Granada      Malaga      2      1      H  11-12
06/02/12     T1     Ankaragucu  Manisaspor      0      1      A  11-12
06/02/12     T1  Eskisehirspor  Buyuksehyr      3      1      H  11-12
06/02/12     T1    Karabukspor  Samsunspor      2      1      H  11-12


06/02/15
         league        home         away  hgoal  agoal result season
date                                                                
06/02/15     D1  Schalke 04   M'gladbach      1      0      H  14-15
06/02/15     T1  Buyuksehyr  Karabukspor      2      2      D  14-15
06/02/15    SP1   La Coruna        Eibar      2      0      H  14-15


06/02/16
         league              home                away  hgoal  agoal result  \
date                                                                         
06/02/16     T1         Bursaspor          Buyuksehyr      3      3      D   
06/02/16     T1       Galatasaray           Konyaspor      0      0      D   
06/02/16     T1       Kayserispor  Mersin Idman Yurdu      0      1      A   
06/02/16     D1     Ein Frankfurt           Stuttgart      2      4      A   
06/02/16     D1          Hannover               Mainz      0      1      A   
06/02/16     D1            Hertha            Dortmund      0      0      D   
06/02/16     D1        Ingolstadt            Augsburg      2      1      H   
06/02/16     D1        Leverkusen       Bayern Munich      0      0      D   
06/02/16     D1        Schalke 04           Wolfsburg      3      0      H   
06/02/16     I1           Bologna          Fiorentina      1      1      D   
06/02/16     I1             Genoa               Lazio      0      0      D   
06/02/16    SP1        Ath Bilbao          Villarreal      0      0      D   
06/02/16    SP1        Ath Madrid               Eibar      3      1      H   
06/02/16    SP1          Sp Gijon           La Coruna      1      1      D   
06/02/16    SP1         Vallecano          Las Palmas      2      0      H   
06/02/16     E2            Burton            Bradford      3      1      H   
06/02/16     E2      Chesterfield           Peterboro      0      1      A   
06/02/16     E2             Crewe            Rochdale      2      0      H   
06/02/16     E2        Gillingham             Swindon      0      0      D   
06/02/16     E2  Sheffield United               Wigan      0      2      A   
06/02/16     E2          Southend          Colchester      3      0      H   
06/02/16     E2           Walsall            Millwall      0      3      A   

         season  
date             
06/02/16  15-16  
06/02/16  15-16  
06/02/16  15-16  
06/02/16  15-16  
06/02/16  15-16  
06/02/16  15-16  
06/02/16  15-16  
06/02/16  15-16  
06/02/16  15-16  
06/02/16  15-16  
06/02/16  15-16  
06/02/16  15-16  
06/02/16  15-16  
06/02/16  15-16  
06/02/16  15-16  
06/02/16  15-16  
06/02/16  15-16  
06/02/16  15-16  
06/02/16  15-16  
06/02/16  15-16  
06/02/16  15-16  
06/02/16  15-16  


06/03/12
         league                home              away  hgoal  agoal result  \
date                                                                         
06/03/12     E2           Brentford            Exeter      2      0      H   
06/03/12     E2            Carlisle          Rochdale      2      1      H   
06/03/12     E2            Charlton        Colchester      0      2      A   
06/03/12     E2        Huddersfield        Hartlepool      1      0      H   
06/03/12     E2  Milton Keynes Dons            Yeovil      0      1      A   
06/03/12     E2              Oldham        Scunthorpe      1      2      A   
06/03/12     E2             Preston      Chesterfield      0      0      D   
06/03/12     E2      Sheffield Weds              Bury      4      1      H   
06/03/12     E2            Tranmere      Notts County      1      1      D   
06/03/12     E2             Walsall  Sheffield United      3      2      H   
06/03/12     E2             Wycombe     Leyton Orient      4      2      H   

         season  
date             
06/03/12  11-12  
06/03/12  11-12  
06/03/12  11-12  
06/03/12  11-12  
06/03/12  11-12  
06/03/12  11-12  
06/03/12  11-12  
06/03/12  11-12  
06/03/12  11-12  
06/03/12  11-12  
06/03/12  11-12  


06/03/13
         league          home           away  hgoal  agoal result season
date                                                                    
06/03/13     E2  Notts County  Leyton Orient      1      1      D  12-13


06/03/15
         league       home                  away  hgoal  agoal result season
date                                                                        
06/03/15     D1  Stuttgart                Hertha      0      0      D  14-15
06/03/15     T1  Kasimpasa  Akhisar Belediyespor      2      2      D  14-15
06/03/15    SP1    Levante                 Eibar      2      1      H  14-15


06/03/16
         league                  home         away  hgoal  agoal result season
date                                                                          
06/03/16     T1  Akhisar Belediyespor   Fenerbahce      0      3      A  15-16
06/03/16     T1           Galatasaray   Buyuksehyr      3      3      D  15-16
06/03/16     T1             Kasimpasa  Antalyaspor      2      1      H  15-16
06/03/16     T1             Konyaspor  Trabzonspor      2      0      H  15-16
06/03/16     D1               Hamburg       Hertha      2      0      H  15-16
06/03/16     D1                 Mainz    Darmstadt      0      0      D  15-16
06/03/16     I1              Atalanta     Juventus      0      2      A  15-16
06/03/16     I1               Bologna        Carpi      0      0      D  15-16
06/03/16     I1             Frosinone      Udinese      2      0      H  15-16
06/03/16     I1                 Genoa       Empoli      1      0      H  15-16
06/03/16     I1                 Inter      Palermo      3      1      H  15-16
06/03/16     I1              Sassuolo        Milan      2      0      H  15-16
06/03/16     I1                Torino        Lazio      1      1      D  15-16
06/03/16    SP1                 Betis      Granada      2      0      H  15-16
06/03/16    SP1                 Eibar    Barcelona      0      4      A  15-16
06/03/16    SP1              Sociedad      Levante      1      1      D  15-16
06/03/16    SP1              Sp Gijon   Ath Bilbao      0      2      A  15-16
06/03/16    SP1              Valencia   Ath Madrid      1      3      A  15-16


06/04/12
         league           home          away  hgoal  agoal result season
date                                                                    
06/04/12     T1    Karabukspor      Besiktas      1      1      D  11-12
06/04/12     E2     Colchester    Hartlepool      1      1      D  11-12
06/04/12     E2  Leyton Orient  Notts County      0      3      A  11-12
06/04/12     E2     Scunthorpe        Exeter      1      0      H  11-12
06/04/12     E2       Tranmere     Stevenage      3      0      H  11-12
06/04/12     E2        Wycombe      Carlisle      1      1      D  11-12


06/04/13
         league                home                away  hgoal  agoal result  \
date                                                                           
06/04/13    SP1           Barcelona            Mallorca      5      0      H   
06/04/13    SP1           La Coruna            Zaragoza      3      2      H   
06/04/13    SP1         Real Madrid             Levante      5      1      H   
06/04/13    SP1            Sociedad              Malaga      4      2      H   
06/04/13     I1             Bologna              Torino      2      2      D   
06/04/13     I1            Juventus             Pescara      2      1      H   
06/04/13     T1          Buyuksehyr         Karabukspor      2      2      D   
06/04/13     T1         Galatasaray  Mersin Idman Yurdu      3      1      H   
06/04/13     T1         Kayserispor          Elazigspor      4      1      H   
06/04/13     E2         Bournemouth        Notts County      3      1      H   
06/04/13     E2          Colchester       Leyton Orient      2      1      H   
06/04/13     E2            Coventry           Brentford      1      1      D   
06/04/13     E2           Doncaster            Tranmere      1      0      H   
06/04/13     E2          Hartlepool                Bury      2      0      H   
06/04/13     E2  Milton Keynes Dons        Crawley Town      0      0      D   
06/04/13     E2              Oldham            Carlisle      1      2      A   
06/04/13     E2          Portsmouth           Stevenage      0      0      D   
06/04/13     E2             Preston          Scunthorpe      3      0      H   
06/04/13     E2             Walsall    Sheffield United      1      1      D   
06/04/13     E2              Yeovil          Shrewsbury      2      1      H   
06/04/13     D1            Dortmund            Augsburg      4      2      H   
06/04/13     D1       Ein Frankfurt       Bayern Munich      0      1      A   
06/04/13     D1             Hamburg            Freiburg      0      1      A   
06/04/13     D1          Leverkusen           Wolfsburg      1      1      D   
06/04/13     D1          M'gladbach      Greuther Furth      1      0      H   
06/04/13     D1       Werder Bremen          Schalke 04      0      2      A   

         season  
date             
06/04/13  12-13  
06/04/13  12-13  
06/04/13  12-13  
06/04/13  12-13  
06/04/13  12-13  
06/04/13  12-13  
06/04/13  12-13  
06/04/13  12-13  
06/04/13  12-13  
06/04/13  12-13  
06/04/13  12-13  
06/04/13  12-13  
06/04/13  12-13  
06/04/13  12-13  
06/04/13  12-13  
06/04/13  12-13  
06/04/13  12-13  
06/04/13  12-13  
06/04/13  12-13  
06/04/13  12-13  
06/04/13  12-13  
06/04/13  12-13  
06/04/13  12-13  
06/04/13  12-13  
06/04/13  12-13  
06/04/13  12-13  


06/04/14
         league          home        away  hgoal  agoal result season
date                                                                 
06/04/14     D1  Braunschweig    Hannover      3      0      H  13-14
06/04/14     D1        Hertha  Hoffenheim      1      1      D  13-14
06/04/14     T1     Bursaspor   Sivasspor      4      3      H  13-14
06/04/14     T1   Erciyesspor  Elazigspor      3      0      H  13-14
06/04/14     T1   Galatasaray  Fenerbahce      1      0      H  13-14
06/04/14    SP1         Elche      Getafe      1      0      H  13-14
06/04/14    SP1        Malaga     Granada      4      1      H  13-14
06/04/14    SP1       Sevilla     Espanol      4      1      H  13-14
06/04/14    SP1    Valladolid    Valencia      0      0      D  13-14
06/04/14     I1      Atalanta    Sassuolo      0      2      A  13-14
06/04/14     I1      Cagliari        Roma      1      3      A  13-14
06/04/14     I1       Catania      Torino      1      2      A  13-14
06/04/14     I1    Fiorentina     Udinese      2      1      H  13-14
06/04/14     I1         Lazio   Sampdoria      2      0      H  13-14
06/04/14     I1         Parma      Napoli      1      0      H  13-14


06/04/15
         league            home        away  hgoal  agoal result season
date                                                                   
06/04/15     T1        Besiktas  Buyuksehyr      0      0      D  14-15
06/04/15     E2        Bradford     Preston      0      3      A  14-15
06/04/15     E2    Chesterfield       Crewe      1      0      H  14-15
06/04/15     E2      Colchester    Barnsley      3      1      H  14-15
06/04/15     E2    Crawley Town      Oldham      2      0      H  14-15
06/04/15     E2  Fleetwood Town      Yeovil      4      0      H  14-15
06/04/15     E2   Leyton Orient  Gillingham      3      3      D  14-15
06/04/15     E2    Notts County    Coventry      0      0      D  14-15
06/04/15     E2       Peterboro     Walsall      0      0      D  14-15
06/04/15     E2        Rochdale   Port Vale      1      0      H  14-15
06/04/15    SP1         Espanol       Elche      1      1      D  14-15


06/05/12
         league      home      away  hgoal  agoal result season
date                                                           
06/05/12     I1  Atalanta     Lazio      0      2      A  11-12
06/05/12     I1   Bologna    Napoli      2      0      H  11-12
06/05/12     I1  Cagliari  Juventus      0      2      A  11-12
06/05/12     I1     Inter     Milan      4      2      H  11-12
06/05/12     I1    Novara    Cesena      3      0      H  11-12
06/05/12     I1   Palermo    Chievo      4      4      D  11-12
06/05/12     I1     Siena     Parma      0      2      A  11-12
06/05/12     I1   Udinese     Genoa      2      0      H  11-12


06/05/13
         league    home      away  hgoal  agoal result season
date                                                         
06/05/13    SP1  Getafe  Sociedad      2      1      H  12-13


06/05/14
         league        home      away  hgoal  agoal result season
date                                                             
06/05/14     I1  Fiorentina  Sassuolo      3      4      A  13-14
06/05/14     I1      Napoli  Cagliari      3      0      H  13-14


06/05/15
         league    home    away  hgoal  agoal result season
date                                                       
06/05/15     I1  Torino  Empoli      0      1      A  14-15


06/08/11
         league                home              away  hgoal  agoal result  \
date                                                                         
06/08/11     D1            Augsburg          Freiburg      2      2      D   
06/08/11     D1             FC Koln         Wolfsburg      0      3      A   
06/08/11     D1            Hannover        Hoffenheim      2      1      H   
06/08/11     D1              Hertha          Nurnberg      0      1      A   
06/08/11     D1           Stuttgart        Schalke 04      3      0      H   
06/08/11     D1       Werder Bremen    Kaiserslautern      2      0      H   
06/08/11     E2           Brentford            Yeovil      2      0      H   
06/08/11     E2            Carlisle      Notts County      0      3      A   
06/08/11     E2            Charlton       Bournemouth      3      0      H   
06/08/11     E2        Huddersfield              Bury      1      1      D   
06/08/11     E2  Milton Keynes Dons        Hartlepool      2      2      D   
06/08/11     E2              Oldham  Sheffield United      0      2      A   
06/08/11     E2             Preston        Colchester      2      4      A   
06/08/11     E2      Sheffield Weds          Rochdale      2      0      H   
06/08/11     E2           Stevenage            Exeter      0      0      D   
06/08/11     E2            Tranmere      Chesterfield      1      0      H   
06/08/11     E2             Walsall     Leyton Orient      1      0      H   
06/08/11     E2             Wycombe        Scunthorpe      1      1      D   

         season  
date             
06/08/11  11-12  
06/08/11  11-12  
06/08/11  11-12  
06/08/11  11-12  
06/08/11  11-12  
06/08/11  11-12  
06/08/11  11-12  
06/08/11  11-12  
06/08/11  11-12  
06/08/11  11-12  
06/08/11  11-12  
06/08/11  11-12  
06/08/11  11-12  
06/08/11  11-12  
06/08/11  11-12  
06/08/11  11-12  
06/08/11  11-12  
06/08/11  11-12  


06/09/14
         league          home            away  hgoal  agoal result season
date                                                                     
06/09/14     E2      Bradford          Yeovil      1      3      A  14-15
06/09/14     E2  Bristol City      Scunthorpe      2      0      H  14-15
06/09/14     E2  Crawley Town        Rochdale      0      4      A  14-15
06/09/14     E2        Oldham  Fleetwood Town      1      0      H  14-15
06/09/14     E2     Peterboro       Port Vale      3      1      H  14-15
06/09/14     E2       Walsall      Colchester      0      0      D  14-15


06/09/15
         league    home      away  hgoal  agoal result season
date                                                         
06/09/15     E2  Burton  Coventry      1      2      A  15-16


06/10/12
         league                home                  away  hgoal  agoal  \
date                                                                      
06/10/12    SP1               Betis              Sociedad      2      0   
06/10/12    SP1          Valladolid               Espanol      1      1   
06/10/12    SP1           Vallecano             La Coruna      2      1   
06/10/12    SP1            Zaragoza                Getafe      0      1   
06/10/12     I1              Chievo             Sampdoria      2      1   
06/10/12     I1               Genoa               Palermo      1      1   
06/10/12     T1          Buyuksehyr        Genclerbirligi      0      2   
06/10/12     T1          Elazigspor  Akhisar Belediyespor      0      0   
06/10/12     T1         Galatasaray         Eskisehirspor      1      1   
06/10/12     E2           Brentford          Crawley Town      2      1   
06/10/12     E2                Bury               Swindon      0      1   
06/10/12     E2            Coventry           Bournemouth      1      0   
06/10/12     E2               Crewe            Hartlepool      2      1   
06/10/12     E2           Doncaster            Shrewsbury      1      0   
06/10/12     E2       Leyton Orient      Sheffield United      0      1   
06/10/12     E2  Milton Keynes Dons            Portsmouth      2      2   
06/10/12     E2        Notts County              Tranmere      0      1   
06/10/12     E2              Oldham               Preston      3      1   
06/10/12     E2           Stevenage            Scunthorpe      1      0   
06/10/12     E2             Walsall              Carlisle      1      2   
06/10/12     E2              Yeovil            Colchester      3      1   
06/10/12     D1       Bayern Munich            Hoffenheim      2      0   
06/10/12     D1            Freiburg              Nurnberg      3      0   
06/10/12     D1      Greuther Furth               Hamburg      0      1   
06/10/12     D1               Mainz    Fortuna Dusseldorf      1      0   
06/10/12     D1          Schalke 04             Wolfsburg      3      0   

         result season  
date                    
06/10/12      H  12-13  
06/10/12      D  12-13  
06/10/12      H  12-13  
06/10/12      A  12-13  
06/10/12      H  12-13  
06/10/12      D  12-13  
06/10/12      A  12-13  
06/10/12      D  12-13  
06/10/12      D  12-13  
06/10/12      H  12-13  
06/10/12      A  12-13  
06/10/12      H  12-13  
06/10/12      H  12-13  
06/10/12      H  12-13  
06/10/12      A  12-13  
06/10/12      D  12-13  
06/10/12      A  12-13  
06/10/12      H  12-13  
06/10/12      H  12-13  
06/10/12      A  12-13  
06/10/12      H  12-13  
06/10/12      H  12-13  
06/10/12      H  12-13  
06/10/12      A  12-13  
06/10/12      H  12-13  
06/10/12      H  12-13  


06/10/13
         league                  home            away  hgoal  agoal result  \
date                                                                         
06/10/13     D1              Freiburg   Ein Frankfurt      1      1      D   
06/10/13     D1              Nurnberg         Hamburg      0      5      A   
06/10/13     T1  Akhisar Belediyespor     Galatasaray      2      1      H   
06/10/13     T1            Fenerbahce     Trabzonspor      0      0      D   
06/10/13     T1             Kasimpasa      Elazigspor      4      0      H   
06/10/13     T1              Rizespor     Antalyaspor      1      2      A   
06/10/13     T1             Sivasspor  Genclerbirligi      2      0      H   
06/10/13    SP1            Ath Bilbao        Valencia      1      1      D   
06/10/13    SP1            Ath Madrid           Celta      2      1      H   
06/10/13    SP1                Getafe           Betis      3      1      H   
06/10/13    SP1               Sevilla         Almeria      2      1      H   
06/10/13     I1               Bologna          Verona      1      4      A   
06/10/13     I1               Catania           Genoa      1      1      D   
06/10/13     I1              Juventus           Milan      3      2      H   
06/10/13     I1                 Lazio      Fiorentina      0      0      D   
06/10/13     I1                Napoli         Livorno      4      0      H   
06/10/13     I1                 Parma        Sassuolo      3      1      H   
06/10/13     I1             Sampdoria          Torino      2      2      D   
06/10/13     I1               Udinese        Cagliari      2      0      H   

         season  
date             
06/10/13  13-14  
06/10/13  13-14  
06/10/13  13-14  
06/10/13  13-14  
06/10/13  13-14  
06/10/13  13-14  
06/10/13  13-14  
06/10/13  13-14  
06/10/13  13-14  
06/10/13  13-14  
06/10/13  13-14  
06/10/13  13-14  
06/10/13  13-14  
06/10/13  13-14  
06/10/13  13-14  
06/10/13  13-14  
06/10/13  13-14  
06/10/13  13-14  
06/10/13  13-14  


06/11/11
         league            home           away  hgoal  agoal result season
date                                                                      
06/11/11    SP1      Ath Bilbao      Barcelona      2      2      D  11-12
06/11/11    SP1         Espanol     Villarreal      0      0      D  11-12
06/11/11    SP1          Getafe     Ath Madrid      3      2      H  11-12
06/11/11    SP1         Granada      Santander      0      0      D  11-12
06/11/11    SP1     Real Madrid        Osasuna      7      1      H  11-12
06/11/11    SP1       Vallecano       Sociedad      4      0      H  11-12
06/11/11    SP1        Zaragoza       Sp Gijon      2      2      D  11-12
06/11/11     I1        Atalanta       Cagliari      1      0      H  11-12
06/11/11     I1          Cesena          Lecce      0      1      A  11-12
06/11/11     I1          Chievo     Fiorentina      1      0      H  11-12
06/11/11     I1           Lazio          Parma      1      0      H  11-12
06/11/11     I1           Milan        Catania      4      0      H  11-12
06/11/11     I1         Udinese          Siena      2      1      H  11-12
06/11/11     D1        Augsburg  Bayern Munich      1      2      A  11-12
06/11/11     D1        Hannover     Schalke 04      2      2      D  11-12
06/11/11     T1      Buyuksehyr      Bursaspor      0      0      D  11-12
06/11/11     T1  Genclerbirligi       Besiktas      4      2      H  11-12
06/11/11     T1     Trabzonspor    Kayserispor      2      1      H  11-12


06/11/12
         league         home              away  hgoal  agoal result season
date                                                                      
06/11/12     E2  Bournemouth        Shrewsbury      2      1      H  12-13
06/11/12     E2   Colchester      Notts County      0      2      A  12-13
06/11/12     E2     Coventry      Crawley Town      3      1      H  12-13
06/11/12     E2    Doncaster             Crewe      0      2      A  12-13
06/11/12     E2       Oldham              Bury      1      2      A  12-13
06/11/12     E2   Portsmouth         Brentford      0      1      A  12-13
06/11/12     E2      Preston          Carlisle      1      1      D  12-13
06/11/12     E2      Swindon  Sheffield United      0      0      D  12-13
06/11/12     E2      Walsall        Scunthorpe      1      4      A  12-13
06/11/12     E2       Yeovil         Stevenage      1      3      A  12-13


06/11/15
         league            home                away  hgoal  agoal result  \
date                                                                       
06/11/15     T1   Eskisehirspor         Osmanlispor      0      2      A   
06/11/15     T1  Genclerbirligi  Mersin Idman Yurdu      1      1      D   
06/11/15     D1        Hannover              Hertha      1      3      A   
06/11/15    SP1      Las Palmas            Sociedad      2      0      H   

         season  
date             
06/11/15  15-16  
06/11/15  15-16  
06/11/15  15-16  
06/11/15  15-16  


06/12/13
         league         home        away  hgoal  agoal result season
date                                                                
06/12/13     D1     Nurnberg       Mainz      1      1      D  13-14
06/12/13     T1  Galatasaray  Elazigspor      2      0      H  13-14
06/12/13     I1      Bologna    Juventus      0      2      A  13-14


06/12/14
         league            home                  away  hgoal  agoal result  \
date                                                                         
06/12/14     D1   Bayern Munich            Leverkusen      1      0      H   
06/12/14     D1         FC Koln              Augsburg      1      2      A   
06/12/14     D1        Hannover             Wolfsburg      1      3      A   
06/12/14     D1      M'gladbach                Hertha      3      2      H   
06/12/14     D1       Paderborn              Freiburg      1      1      D   
06/12/14     D1       Stuttgart            Schalke 04      0      4      A   
06/12/14     I1            Roma              Sassuolo      2      2      D   
06/12/14     I1          Torino               Palermo      2      2      D   
06/12/14     T1   Balikesirspor            Fenerbahce      0      1      A   
06/12/14     T1     Galatasaray  Akhisar Belediyespor      2      1      H   
06/12/14     T1  Genclerbirligi         Gaziantepspor      2      0      H   
06/12/14     T1       Konyaspor    Mersin Idman Yurdu      2      0      H   
06/12/14    SP1      Ath Bilbao               Cordoba      0      1      A   
06/12/14    SP1           Elche            Ath Madrid      0      2      A   
06/12/14    SP1       La Coruna                Malaga      0      1      A   
06/12/14    SP1     Real Madrid                 Celta      3      0      H   

         season  
date             
06/12/14  14-15  
06/12/14  14-15  
06/12/14  14-15  
06/12/14  14-15  
06/12/14  14-15  
06/12/14  14-15  
06/12/14  14-15  
06/12/14  14-15  
06/12/14  14-15  
06/12/14  14-15  
06/12/14  14-15  
06/12/14  14-15  
06/12/14  14-15  
06/12/14  14-15  
06/12/14  14-15  
06/12/14  14-15  


06/12/15
         league                home            away  hgoal  agoal result  \
date                                                                       
06/12/15     T1          Buyuksehyr  Genclerbirligi      2      0      H   
06/12/15     T1       Gaziantepspor      Fenerbahce      2      2      D   
06/12/15     T1  Mersin Idman Yurdu        Rizespor      3      0      H   
06/12/15     D1       Ein Frankfurt       Darmstadt      0      1      A   
06/12/15     D1           Stuttgart   Werder Bremen      1      1      D   
06/12/15     I1            Atalanta         Palermo      3      0      H   
06/12/15     I1             Bologna          Napoli      3      2      H   
06/12/15     I1               Carpi           Milan      0      0      D   
06/12/15     I1          Fiorentina         Udinese      3      0      H   
06/12/15     I1           Frosinone          Chievo      0      2      A   
06/12/15     I1           Sampdoria        Sassuolo      1      3      A   
06/12/15     I1              Verona          Empoli      0      1      A   
06/12/15    SP1          Ath Bilbao          Malaga      0      0      D   
06/12/15    SP1            Sociedad           Eibar      2      1      H   
06/12/15    SP1            Sp Gijon      Las Palmas      3      1      H   
06/12/15    SP1          Villarreal       Vallecano      2      1      H   

         season  
date             
06/12/15  15-16  
06/12/15  15-16  
06/12/15  15-16  
06/12/15  15-16  
06/12/15  15-16  
06/12/15  15-16  
06/12/15  15-16  
06/12/15  15-16  
06/12/15  15-16  
06/12/15  15-16  
06/12/15  15-16  
06/12/15  15-16  
06/12/15  15-16  
06/12/15  15-16  
06/12/15  15-16  
06/12/15  15-16  


07/01/12
         league          home                away  hgoal  agoal result season
date                                                                         
07/01/12    SP1       Levante            Mallorca      0      0      D  11-12
07/01/12    SP1        Malaga          Ath Madrid      0      0      D  11-12
07/01/12    SP1   Real Madrid             Granada      5      1      H  11-12
07/01/12    SP1     Santander            Zaragoza      1      0      H  11-12
07/01/12    SP1      Sociedad             Osasuna      0      0      D  11-12
07/01/12     I1         Inter               Parma      5      0      H  11-12
07/01/12     I1         Siena               Lazio      4      0      H  11-12
07/01/12     T1     Bursaspor  Mersin Idman Yurdu      1      0      H  11-12
07/01/12     T1    Buyuksehyr         Trabzonspor      0      2      A  11-12
07/01/12     T1    Samsunspor         Galatasaray      2      4      A  11-12
07/01/12     E2      Carlisle       Leyton Orient      4      1      H  11-12
07/01/12     E2  Chesterfield              Exeter      0      2      A  11-12
07/01/12     E2    Hartlepool            Rochdale      2      0      H  11-12
07/01/12     E2      Tranmere           Brentford      2      2      D  11-12
07/01/12     E2       Walsall         Bournemouth      2      2      D  11-12


07/01/13
         league       home    away  hgoal  agoal result season
date                                                          
07/01/13    SP1  Vallecano  Getafe      3      1      H  12-13


07/01/14
         league        home           away  hgoal  agoal result season
date                                                                  
07/01/14     E2  Shrewsbury  Leyton Orient      0      2      A  13-14


07/01/16
         league   home        away  hgoal  agoal result season
date                                                          
07/01/16     E2  Wigan  Gillingham      3      2      H  15-16


07/02/12
         league         home    away  hgoal  agoal result season
date                                                            
07/02/12     E2  Bournemouth  Exeter      2      0      H  11-12


07/02/14
         league           home        away  hgoal  agoal result season
date                                                                  
07/02/14     D1     M'gladbach  Leverkusen      0      1      A  13-14
07/02/14     T1  Gaziantepspor    Besiktas      1      2      A  13-14
07/02/14     T1      Kasimpasa   Konyaspor      1      3      A  13-14
07/02/14    SP1        Espanol     Granada      1      0      H  13-14


07/02/15
         league                home                  away  hgoal  agoal  \
date                                                                      
07/02/15     D1             FC Koln             Paderborn      0      0   
07/02/15     D1            Freiburg              Dortmund      0      3   
07/02/15     D1             Hamburg              Hannover      2      1   
07/02/15     D1               Mainz                Hertha      0      2   
07/02/15     D1           Stuttgart         Bayern Munich      0      2   
07/02/15     D1           Wolfsburg            Hoffenheim      3      0   
07/02/15     I1            Juventus                 Milan      3      1   
07/02/15     I1              Verona                Torino      1      3   
07/02/15     T1         Erciyesspor         Gaziantepspor      0      1   
07/02/15     T1          Fenerbahce           Trabzonspor      0      0   
07/02/15     T1           Sivasspor  Akhisar Belediyespor      2      0   
07/02/15     E2          Colchester                 Crewe      2      3   
07/02/15     E2           Doncaster               Walsall      0      2   
07/02/15     E2      Fleetwood Town             Peterboro      1      1   
07/02/15     E2          Gillingham      Sheffield United      2      0   
07/02/15     E2  Milton Keynes Dons          Bristol City      0      0   
07/02/15     E2        Notts County          Chesterfield      0      1   
07/02/15     E2           Port Vale              Bradford      2      2   
07/02/15     E2             Preston              Coventry      1      0   
07/02/15     E2          Scunthorpe                Oldham      0      1   
07/02/15     E2             Swindon              Barnsley      2      0   
07/02/15     E2              Yeovil          Crawley Town      2      1   
07/02/15    SP1          Ath Madrid           Real Madrid      4      0   
07/02/15    SP1             Levante                Malaga      4      1   
07/02/15    SP1            Sociedad                 Celta      1      1   
07/02/15    SP1          Villarreal               Granada      2      0   

         result season  
date                    
07/02/15      D  14-15  
07/02/15      A  14-15  
07/02/15      H  14-15  
07/02/15      A  14-15  
07/02/15      A  14-15  
07/02/15      H  14-15  
07/02/15      H  14-15  
07/02/15      A  14-15  
07/02/15      A  14-15  
07/02/15      D  14-15  
07/02/15      H  14-15  
07/02/15      A  14-15  
07/02/15      A  14-15  
07/02/15      D  14-15  
07/02/15      H  14-15  
07/02/15      D  14-15  
07/02/15      A  14-15  
07/02/15      D  14-15  
07/02/15      H  14-15  
07/02/15      A  14-15  
07/02/15      H  14-15  
07/02/15      H  14-15  
07/02/15      H  14-15  
07/02/15      H  14-15  
07/02/15      D  14-15  
07/02/15      H  14-15  


07/02/16
         league                  home           away  hgoal  agoal result  \
date                                                                        
07/02/16     T1  Akhisar Belediyespor    Trabzonspor      2      1      H   
07/02/16     T1              Besiktas  Gaziantepspor      4      0      H   
07/02/16     T1              Rizespor  Eskisehirspor      1      1      D   
07/02/16     D1               Hamburg        FC Koln      1      1      D   
07/02/16     D1            Hoffenheim      Darmstadt      0      2      A   
07/02/16     I1              Atalanta         Empoli      0      0      D   
07/02/16     I1             Frosinone       Juventus      0      2      A   
07/02/16     I1                 Milan        Udinese      1      1      D   
07/02/16     I1                Napoli          Carpi      1      0      H   
07/02/16     I1                  Roma      Sampdoria      2      1      H   
07/02/16     I1              Sassuolo        Palermo      2      2      D   
07/02/16     I1                Torino         Chievo      1      2      A   
07/02/16     I1                Verona          Inter      3      3      D   
07/02/16    SP1                 Betis       Valencia      1      0      H   
07/02/16    SP1                 Celta        Sevilla      1      1      D   
07/02/16    SP1               Granada    Real Madrid      1      2      A   
07/02/16    SP1               Levante      Barcelona      0      2      A   
07/02/16     E2              Barnsley           Bury      3      0      H   
07/02/16     E2        Fleetwood Town     Shrewsbury      0      0      D   
07/02/16     E2             Port Vale       Coventry      1      1      D   

         season  
date             
07/02/16  15-16  
07/02/16  15-16  
07/02/16  15-16  
07/02/16  15-16  
07/02/16  15-16  
07/02/16  15-16  
07/02/16  15-16  
07/02/16  15-16  
07/02/16  15-16  
07/02/16  15-16  
07/02/16  15-16  
07/02/16  15-16  
07/02/16  15-16  
07/02/16  15-16  
07/02/16  15-16  
07/02/16  15-16  
07/02/16  15-16  
07/02/16  15-16  
07/02/16  15-16  
07/02/16  15-16  


07/03/12
         league     home        away  hgoal  agoal result season
date                                                            
07/03/12     I1  Bologna    Juventus      1      1      D  11-12
07/03/12     I1   Cesena     Catania      0      0      D  11-12
07/03/12     I1    Parma  Fiorentina      2      2      D  11-12


07/03/15
         league                home            away  hgoal  agoal result  \
date                                                                       
07/03/15     D1            Augsburg       Wolfsburg      1      0      H   
07/03/15     D1            Freiburg   Werder Bremen      0      1      A   
07/03/15     D1             Hamburg        Dortmund      0      0      D   
07/03/15     D1            Hannover   Bayern Munich      1      3      A   
07/03/15     D1               Mainz      M'gladbach      2      2      D   
07/03/15     D1          Schalke 04      Hoffenheim      3      1      H   
07/03/15     I1               Milan          Verona      2      2      D   
07/03/15     I1           Sampdoria        Cagliari      2      0      H   
07/03/15     T1       Balikesirspor        Rizespor      2      2      D   
07/03/15     T1         Erciyesspor  Genclerbirligi      2      4      A   
07/03/15     T1       Eskisehirspor       Bursaspor      0      0      D   
07/03/15     E2            Barnsley         Walsall      3      0      H   
07/03/15     E2            Coventry       Port Vale      2      3      A   
07/03/15     E2        Crawley Town    Bristol City      1      2      A   
07/03/15     E2               Crewe      Scunthorpe      2      0      H   
07/03/15     E2          Gillingham       Doncaster      1      1      D   
07/03/15     E2  Milton Keynes Dons         Preston      0      2      A   
07/03/15     E2           Peterboro   Leyton Orient      1      0      H   
07/03/15     E2            Rochdale      Colchester      2      1      H   
07/03/15     E2    Sheffield United  Fleetwood Town      1      2      A   
07/03/15     E2             Swindon    Notts County      3      0      H   
07/03/15     E2              Yeovil          Oldham      2      1      H   
07/03/15    SP1          Ath Bilbao     Real Madrid      1      0      H   
07/03/15    SP1               Elche         Almeria      1      0      H   
07/03/15    SP1             Granada          Malaga      1      0      H   
07/03/15    SP1           La Coruna         Sevilla      3      4      A   

         season  
date             
07/03/15  14-15  
07/03/15  14-15  
07/03/15  14-15  
07/03/15  14-15  
07/03/15  14-15  
07/03/15  14-15  
07/03/15  14-15  
07/03/15  14-15  
07/03/15  14-15  
07/03/15  14-15  
07/03/15  14-15  
07/03/15  14-15  
07/03/15  14-15  
07/03/15  14-15  
07/03/15  14-15  
07/03/15  14-15  
07/03/15  14-15  
07/03/15  14-15  
07/03/15  14-15  
07/03/15  14-15  
07/03/15  14-15  
07/03/15  14-15  
07/03/15  14-15  
07/03/15  14-15  
07/03/15  14-15  
07/03/15  14-15  


07/03/16
         league      home           away  hgoal  agoal result season
date                                                                
07/03/16     T1  Besiktas  Eskisehirspor      3      1      H  15-16
07/03/16    SP1   Espanol      Vallecano      2      1      H  15-16


07/04/12
         league              home                away  hgoal  agoal result  \
date                                                                         
07/04/12    SP1             Betis          Villarreal      3      1      H   
07/04/12    SP1           Espanol            Sociedad      2      2      D   
07/04/12    SP1            Getafe            Sp Gijon      2      0      H   
07/04/12    SP1         Vallecano             Osasuna      6      0      H   
07/04/12    SP1          Zaragoza           Barcelona      1      4      A   
07/04/12     I1          Atalanta               Siena      1      2      A   
07/04/12     I1          Cagliari               Inter      2      2      D   
07/04/12     I1            Cesena             Bologna      0      0      D   
07/04/12     I1            Chievo             Catania      3      2      H   
07/04/12     I1             Lazio              Napoli      3      1      H   
07/04/12     I1             Lecce                Roma      4      2      H   
07/04/12     D1     Bayern Munich            Augsburg      2      1      H   
07/04/12     D1           FC Koln       Werder Bremen      1      1      D   
07/04/12     D1          Freiburg            Nurnberg      2      2      D   
07/04/12     D1    Kaiserslautern          Hoffenheim      1      2      A   
07/04/12     D1        M'gladbach              Hertha      0      0      D   
07/04/12     D1         Stuttgart               Mainz      4      1      H   
07/04/12     D1         Wolfsburg            Dortmund      1      3      A   
07/04/12     T1        Ankaragucu         Kayserispor      0      5      A   
07/04/12     T1         Bursaspor       Gaziantepspor      0      2      A   
07/04/12     T1        Buyuksehyr      Genclerbirligi      1      0      H   
07/04/12     T1     Eskisehirspor  Mersin Idman Yurdu      2      0      H   
07/04/12     T1        Fenerbahce         Antalyaspor      2      0      H   
07/04/12     T1        Samsunspor           Sivasspor      1      2      A   
07/04/12     E2         Brentford                Bury      3      0      H   
07/04/12     E2      Huddersfield      Sheffield Weds      0      2      A   
07/04/12     E2            Oldham            Charlton      0      1      A   
07/04/12     E2           Preston  Milton Keynes Dons      1      1      D   
07/04/12     E2  Sheffield United         Bournemouth      2      1      H   
07/04/12     E2           Walsall        Chesterfield      3      2      H   
07/04/12     E2            Yeovil            Rochdale      3      1      H   

         season  
date             
07/04/12  11-12  
07/04/12  11-12  
07/04/12  11-12  
07/04/12  11-12  
07/04/12  11-12  
07/04/12  11-12  
07/04/12  11-12  
07/04/12  11-12  
07/04/12  11-12  
07/04/12  11-12  
07/04/12  11-12  
07/04/12  11-12  
07/04/12  11-12  
07/04/12  11-12  
07/04/12  11-12  
07/04/12  11-12  
07/04/12  11-12  
07/04/12  11-12  
07/04/12  11-12  
07/04/12  11-12  
07/04/12  11-12  
07/04/12  11-12  
07/04/12  11-12  
07/04/12  11-12  
07/04/12  11-12  
07/04/12  11-12  
07/04/12  11-12  
07/04/12  11-12  
07/04/12  11-12  
07/04/12  11-12  
07/04/12  11-12  


07/04/13
         league                  home           away  hgoal  agoal result  \
date                                                                        
07/04/13    SP1                 Celta      Vallecano      0      2      A   
07/04/13    SP1                Getafe     Ath Madrid      0      0      D   
07/04/13    SP1               Osasuna        Espanol      0      2      A   
07/04/13    SP1              Valencia     Valladolid      2      1      H   
07/04/13     I1               Catania       Cagliari      0      0      D   
07/04/13     I1            Fiorentina          Milan      2      2      D   
07/04/13     I1                 Inter       Atalanta      3      4      A   
07/04/13     I1                Napoli          Genoa      2      0      H   
07/04/13     T1  Akhisar Belediyespor    Trabzonspor      1      0      H   
07/04/13     T1         Eskisehirspor      Sivasspor      2      1      H   
07/04/13     T1        Genclerbirligi  Gaziantepspor      2      2      D   
07/04/13     T1              Orduspor     Fenerbahce      0      2      A   
07/04/13     D1              Hannover      Stuttgart      0      0      D   
07/04/13     D1              Nurnberg          Mainz      2      1      H   

         season  
date             
07/04/13  12-13  
07/04/13  12-13  
07/04/13  12-13  
07/04/13  12-13  
07/04/13  12-13  
07/04/13  12-13  
07/04/13  12-13  
07/04/13  12-13  
07/04/13  12-13  
07/04/13  12-13  
07/04/13  12-13  
07/04/13  12-13  
07/04/13  12-13  
07/04/13  12-13  


07/04/14
         league         home            away  hgoal  agoal result season
date                                                                    
07/04/14     T1  Trabzonspor  Genclerbirligi      3      0      H  13-14
07/04/14    SP1      Levante      Ath Bilbao      1      2      A  13-14
07/04/14     I1        Genoa           Milan      1      2      A  13-14
07/04/14     I1     Juventus         Livorno      2      0      H  13-14


07/04/15
         league                home        away  hgoal  agoal result season
date                                                                       
07/04/15     E2        Bristol City     Swindon      3      0      H  14-15
07/04/15     E2  Milton Keynes Dons  Scunthorpe      2      0      H  14-15
07/04/15     E2    Sheffield United   Doncaster      3      2      H  14-15
07/04/15    SP1          Ath Madrid    Sociedad      2      0      H  14-15
07/04/15    SP1               Eibar      Malaga      1      0      H  14-15
07/04/15    SP1             Levante     Sevilla      1      2      A  14-15


07/05/13
         league  home    away  hgoal  agoal result season
date                                                     
07/05/13     I1  Roma  Chievo      0      1      A  12-13


07/05/14
         league        home         away  hgoal  agoal result season
date                                                                
07/05/14    SP1  Valladolid  Real Madrid      1      1      D  13-14


07/05/16
         league           home            away  hgoal  agoal result season
date                                                                      
07/05/16     T1  Gaziantepspor   Eskisehirspor      1      1      D  15-16
07/05/16     T1    Osmanlispor       Bursaspor      3      3      D  15-16
07/05/16     T1      Sivasspor  Genclerbirligi      2      1      H  15-16
07/05/16     D1  Ein Frankfurt        Dortmund      1      0      H  15-16
07/05/16     D1        FC Koln   Werder Bremen      0      0      D  15-16
07/05/16     D1        Hamburg       Wolfsburg      0      1      A  15-16
07/05/16     D1       Hannover      Hoffenheim      1      0      H  15-16
07/05/16     D1         Hertha       Darmstadt      1      2      A  15-16
07/05/16     D1     Ingolstadt   Bayern Munich      1      2      A  15-16
07/05/16     D1     M'gladbach      Leverkusen      2      1      H  15-16
07/05/16     D1     Schalke 04        Augsburg      1      1      D  15-16
07/05/16     D1      Stuttgart           Mainz      1      3      A  15-16
07/05/16     I1        Bologna           Milan      0      1      A  15-16
07/05/16     I1          Inter          Empoli      2      1      H  15-16


07/08/11
         league           home        away  hgoal  agoal result season
date                                                                  
07/08/11     D1  Bayern Munich  M'gladbach      0      1      A  11-12
07/08/11     D1          Mainz  Leverkusen      2      0      H  11-12


07/09/13
         league                home              away  hgoal  agoal result  \
date                                                                         
07/09/13     E2            Bradford         Brentford      4      0      H   
07/09/13     E2            Carlisle         Port Vale      0      1      A   
07/09/13     E2        Crawley Town        Gillingham      3      2      H   
07/09/13     E2               Crewe         Peterboro      2      2      D   
07/09/13     E2  Milton Keynes Dons           Swindon      1      1      D   
07/09/13     E2           Rotherham  Sheffield United      3      1      H   
07/09/13     E2            Tranmere         Stevenage      0      0      D   

         season  
date             
07/09/13  13-14  
07/09/13  13-14  
07/09/13  13-14  
07/09/13  13-14  
07/09/13  13-14  
07/09/13  13-14  
07/09/13  13-14  


07/10/12
         league                home           away  hgoal  agoal result season
date                                                                          
07/10/12    SP1          Ath Bilbao        Osasuna      1      0      H  12-13
07/10/12    SP1          Ath Madrid         Malaga      2      1      H  12-13
07/10/12    SP1           Barcelona    Real Madrid      2      2      D  12-13
07/10/12    SP1             Levante       Valencia      1      0      H  12-13
07/10/12    SP1            Mallorca        Granada      1      2      A  12-13
07/10/12     I1             Catania          Parma      2      0      H  12-13
07/10/12     I1          Fiorentina        Bologna      1      0      H  12-13
07/10/12     I1               Milan          Inter      0      1      A  12-13
07/10/12     I1              Napoli        Udinese      2      1      H  12-13
07/10/12     I1             Pescara          Lazio      0      3      A  12-13
07/10/12     I1                Roma       Atalanta      2      0      H  12-13
07/10/12     I1               Siena       Juventus      1      2      A  12-13
07/10/12     I1              Torino       Cagliari      0      1      A  12-13
07/10/12     T1          Fenerbahce       Besiktas      3      0      H  12-13
07/10/12     T1  Mersin Idman Yurdu    Kayserispor      1      2      A  12-13
07/10/12     T1           Sivasspor      Bursaspor      2      2      D  12-13
07/10/12     D1            Hannover       Dortmund      1      1      D  12-13
07/10/12     D1          M'gladbach  Ein Frankfurt      2      0      H  12-13
07/10/12     D1           Stuttgart     Leverkusen      2      2      D  12-13


07/11/12
         league                home           away  hgoal  agoal result season
date                                                                          
07/11/12     E2          Hartlepool       Tranmere      0      2      A  12-13
07/11/12     E2  Milton Keynes Dons  Leyton Orient      1      0      H  12-13


07/11/14
         league           home                  away  hgoal  agoal result  \
date                                                                        
07/11/14     D1         Hertha              Hannover      0      2      A   
07/11/14     T1  Gaziantepspor  Akhisar Belediyespor      1      0      H   
07/11/14     T1      Sivasspor         Eskisehirspor      1      1      D   
07/11/14    SP1        Cordoba             La Coruna      0      0      D   

         season  
date             
07/11/14  14-15  
07/11/14  14-15  
07/11/14  14-15  
07/11/14  14-15  


07/11/15
         league           home                  away  hgoal  agoal result  \
date                                                                        
07/11/15     T1    Antalyaspor           Kayserispor      1      1      D   
07/11/15     T1     Buyuksehyr           Trabzonspor      1      0      H   
07/11/15     T1      Kasimpasa  Akhisar Belediyespor      2      1      H   
07/11/15     T1       Rizespor           Galatasaray      4      3      H   
07/11/15     D1  Bayern Munich             Stuttgart      4      0      H   
07/11/15     D1      Darmstadt               Hamburg      1      1      D   
07/11/15     D1     Hoffenheim         Ein Frankfurt      0      0      D   
07/11/15     D1     Leverkusen               FC Koln      1      2      A   
07/11/15     D1          Mainz             Wolfsburg      2      0      H   
07/11/15     D1     M'gladbach            Ingolstadt      0      0      D   
07/11/15     I1          Milan              Atalanta      0      0      D   
07/11/15     I1         Verona               Bologna      0      2      A   
07/11/15    SP1          Celta              Valencia      1      5      A   
07/11/15    SP1          Eibar                Getafe      3      1      H   
07/11/15    SP1        Levante             La Coruna      1      1      D   
07/11/15    SP1         Malaga                 Betis      0      1      A   
07/11/15    SP1      Vallecano               Granada      2      1      H   

         season  
date             
07/11/15  15-16  
07/11/15  15-16  
07/11/15  15-16  
07/11/15  15-16  
07/11/15  15-16  
07/11/15  15-16  
07/11/15  15-16  
07/11/15  15-16  
07/11/15  15-16  
07/11/15  15-16  
07/11/15  15-16  
07/11/15  15-16  
07/11/15  15-16  
07/11/15  15-16  
07/11/15  15-16  
07/11/15  15-16  
07/11/15  15-16  


07/12/11
         league           home           away  hgoal  agoal result season
date                                                                     
07/12/11    SP1        Granada       Mallorca      2      2      D  11-12
07/12/11     T1  Eskisehirspor    Antalyaspor      1      0      H  11-12
07/12/11     T1    Galatasaray     Fenerbahce      3      1      H  11-12
07/12/11     T1    Karabukspor  Gaziantepspor      0      0      D  11-12


07/12/12
         league        home                away  hgoal  agoal result season
date                                                                       
07/12/12    SP1     Espanol             Sevilla      2      2      D  12-13
07/12/12     T1    Besiktas       Eskisehirspor      2      2      D  12-13
07/12/12     T1  Elazigspor  Mersin Idman Yurdu      1      0      H  12-13
07/12/12     D1     Hamburg          Hoffenheim      2      0      H  12-13


07/12/13
         league           home           away  hgoal  agoal result season
date                                                                     
07/12/13     D1       Dortmund     Leverkusen      0      1      A  13-14
07/12/13     D1  Ein Frankfurt     Hoffenheim      1      2      A  13-14
07/12/13     D1        Hamburg       Augsburg      0      1      A  13-14
07/12/13     D1     M'gladbach     Schalke 04      2      1      H  13-14
07/12/13     D1      Stuttgart       Hannover      4      2      H  13-14
07/12/13     D1  Werder Bremen  Bayern Munich      0      7      A  13-14
07/12/13     T1    Antalyaspor      Kasimpasa      1      1      D  13-14
07/12/13     T1       Rizespor     Fenerbahce      1      2      A  13-14
07/12/13     E2   Notts County     Gillingham      3      1      H  13-14
07/12/13     I1        Livorno          Milan      2      2      D  13-14
07/12/13     I1         Napoli        Udinese      3      3      D  13-14


07/12/14
         league           home           away  hgoal  agoal result season
date                                                                     
07/12/14     D1  Ein Frankfurt  Werder Bremen      5      2      H  14-15
07/12/14     D1        Hamburg          Mainz      2      1      H  14-15
07/12/14     I1       Atalanta         Cesena      3      2      H  14-15
07/12/14     I1          Genoa          Milan      1      0      H  14-15
07/12/14     I1          Inter        Udinese      1      2      A  14-15
07/12/14     I1         Napoli         Empoli      2      2      D  14-15
07/12/14     I1          Parma          Lazio      1      2      A  14-15
07/12/14     T1       Besiktas    Trabzonspor      3      0      H  14-15
07/12/14     T1      Bursaspor      Kasimpasa      5      1      H  14-15
07/12/14     T1  Eskisehirspor     Buyuksehyr      0      1      A  14-15
07/12/14     T1       Rizespor    Karabukspor      0      3      A  14-15
07/12/14    SP1      Barcelona        Espanol      5      1      H  14-15
07/12/14    SP1        Granada       Valencia      1      1      D  14-15
07/12/14    SP1      Vallecano        Sevilla      0      1      A  14-15
07/12/14    SP1     Villarreal       Sociedad      4      0      H  14-15


07/12/15
         league                  home           away  hgoal  agoal result  \
date                                                                        
07/12/15     T1  Akhisar Belediyespor      Sivasspor      1      0      H   
07/12/15     T1           Trabzonspor  Eskisehirspor      3      1      H   
07/12/15    SP1               Espanol        Levante      1      1      D   

         season  
date             
07/12/15  15-16  
07/12/15  15-16  
07/12/15  15-16  


08/01/12
         league           home            away  hgoal  agoal result season
date                                                                      
08/01/12    SP1          Betis        Sp Gijon      2      0      H  11-12
08/01/12    SP1        Espanol       Barcelona      1      1      D  11-12
08/01/12    SP1         Getafe      Ath Bilbao      0      0      D  11-12
08/01/12    SP1      Vallecano         Sevilla      2      1      H  11-12
08/01/12    SP1     Villarreal        Valencia      2      2      D  11-12
08/01/12     I1       Atalanta           Milan      0      2      A  11-12
08/01/12     I1        Bologna         Catania      2      0      H  11-12
08/01/12     I1       Cagliari           Genoa      3      0      H  11-12
08/01/12     I1          Lecce        Juventus      0      1      A  11-12
08/01/12     I1         Novara      Fiorentina      0      3      A  11-12
08/01/12     I1        Palermo          Napoli      1      3      A  11-12
08/01/12     I1           Roma          Chievo      2      0      H  11-12
08/01/12     I1        Udinese          Cesena      4      1      H  11-12
08/01/12     T1     Ankaragucu        Besiktas      0      0      D  11-12
08/01/12     T1    Antalyaspor     Kayserispor      1      0      H  11-12
08/01/12     T1  Eskisehirspor       Sivasspor      1      1      D  11-12
08/01/12     T1    Karabukspor  Genclerbirligi      2      1      H  11-12
08/01/12     T1     Manisaspor        Orduspor      0      0      D  11-12


08/02/12
         league     home  away  hgoal  agoal result season
date                                                      
08/02/12     I1  Catania  Roma      1      1      D  11-12


08/02/14
         league              home                away  hgoal  agoal result  \
date                                                                         
08/02/14     D1     Ein Frankfurt        Braunschweig      3      0      H   
08/02/14     D1          Freiburg          Hoffenheim      1      1      D   
08/02/14     D1           Hamburg              Hertha      0      3      A   
08/02/14     D1          Nurnberg       Bayern Munich      0      2      A   
08/02/14     D1     Werder Bremen            Dortmund      1      5      A   
08/02/14     D1         Wolfsburg               Mainz      3      0      H   
08/02/14     T1       Erciyesspor            Rizespor      1      1      D   
08/02/14     T1       Galatasaray       Eskisehirspor      3      0      H   
08/02/14     E2          Bradford               Crewe      3      3      D   
08/02/14     E2          Carlisle          Gillingham      1      2      A   
08/02/14     E2     Leyton Orient           Peterboro      1      2      A   
08/02/14     E2      Notts County            Coventry      3      0      H   
08/02/14     E2            Oldham        Bristol City      1      1      D   
08/02/14     E2         Port Vale             Swindon      2      3      A   
08/02/14     E2  Sheffield United          Shrewsbury      2      0      H   
08/02/14     E2          Tranmere             Preston      1      2      A   
08/02/14     E2           Walsall  Milton Keynes Dons      0      3      A   
08/02/14    SP1           Almeria          Ath Madrid      2      0      H   
08/02/14    SP1       Real Madrid          Villarreal      4      2      H   
08/02/14    SP1          Valencia               Betis      5      0      H   
08/02/14    SP1         Vallecano              Malaga      4      1      H   
08/02/14     I1        Fiorentina            Atalanta      2      0      H   
08/02/14     I1            Napoli               Milan      3      1      H   
08/02/14     I1           Udinese              Chievo      3      0      H   

         season  
date             
08/02/14  13-14  
08/02/14  13-14  
08/02/14  13-14  
08/02/14  13-14  
08/02/14  13-14  
08/02/14  13-14  
08/02/14  13-14  
08/02/14  13-14  
08/02/14  13-14  
08/02/14  13-14  
08/02/14  13-14  
08/02/14  13-14  
08/02/14  13-14  
08/02/14  13-14  
08/02/14  13-14  
08/02/14  13-14  
08/02/14  13-14  
08/02/14  13-14  
08/02/14  13-14  
08/02/14  13-14  
08/02/14  13-14  
08/02/14  13-14  
08/02/14  13-14  
08/02/14  13-14  


08/02/15
         league                home            away  hgoal  agoal result  \
date                                                                       
08/02/15     D1            Augsburg   Ein Frankfurt      2      2      D   
08/02/15     D1       Werder Bremen      Leverkusen      2      1      H   
08/02/15     I1            Cagliari            Roma      1      2      A   
08/02/15     I1              Empoli          Cesena      2      0      H   
08/02/15     I1          Fiorentina        Atalanta      3      2      H   
08/02/15     I1               Inter         Palermo      3      0      H   
08/02/15     I1              Napoli         Udinese      3      1      H   
08/02/15     I1           Sampdoria        Sassuolo      1      1      D   
08/02/15     T1       Balikesirspor       Konyaspor      0      1      A   
08/02/15     T1           Bursaspor  Genclerbirligi      3      1      H   
08/02/15     T1  Mersin Idman Yurdu       Kasimpasa      6      2      H   
08/02/15     T1            Rizespor        Besiktas      1      2      A   
08/02/15    SP1          Ath Bilbao       Barcelona      2      5      A   
08/02/15    SP1             Cordoba         Almeria      1      2      A   
08/02/15    SP1             Espanol        Valencia      1      2      A   
08/02/15    SP1              Getafe         Sevilla      2      1      H   

         season  
date             
08/02/15  14-15  
08/02/15  14-15  
08/02/15  14-15  
08/02/15  14-15  
08/02/15  14-15  
08/02/15  14-15  
08/02/15  14-15  
08/02/15  14-15  
08/02/15  14-15  
08/02/15  14-15  
08/02/15  14-15  
08/02/15  14-15  
08/02/15  14-15  
08/02/15  14-15  
08/02/15  14-15  
08/02/15  14-15  


08/02/16
         league       home            away  hgoal  agoal result season
date                                                                  
08/02/16     T1  Kasimpasa  Genclerbirligi      0      1      A  15-16
08/02/16    SP1    Espanol        Sociedad      0      5      A  15-16


08/03/13
         league         home            away  hgoal  agoal result season
date                                                                    
08/03/13    SP1        Betis         Osasuna      2      1      H  12-13
08/03/13     I1        Genoa           Milan      0      2      A  12-13
08/03/13     T1  Galatasaray  Genclerbirligi      0      1      A  12-13
08/03/13     D1     Augsburg        Nurnberg      1      2      A  12-13


08/03/14
         league          home                  away  hgoal  agoal result  \
date                                                                       
08/03/14     D1       Hamburg         Ein Frankfurt      1      1      D   
08/03/14     D1      Hannover            Leverkusen      1      1      D   
08/03/14     D1    M'gladbach              Augsburg      1      2      A   
08/03/14     D1      Nurnberg         Werder Bremen      0      2      A   
08/03/14     D1    Schalke 04            Hoffenheim      4      0      H   
08/03/14     D1     Stuttgart          Braunschweig      2      2      D   
08/03/14     D1     Wolfsburg         Bayern Munich      1      6      A   
08/03/14     T1     Bursaspor           Karabukspor      1      0      H   
08/03/14     T1    Elazigspor             Kasimpasa      0      0      D   
08/03/14     T1   Erciyesspor             Konyaspor      1      0      H   
08/03/14     T1   Galatasaray  Akhisar Belediyespor      6      1      H   
08/03/14     E2     Brentford              Bradford      2      0      H   
08/03/14     E2    Colchester              Coventry      2      1      H   
08/03/14     E2    Gillingham          Crawley Town      1      0      H   
08/03/14     E2  Notts County         Leyton Orient      0      0      D   
08/03/14     E2        Oldham               Preston      1      3      A   
08/03/14     E2     Peterboro                 Crewe      4      2      H   
08/03/14     E2     Port Vale              Carlisle      2      1      H   
08/03/14     E2    Shrewsbury          Bristol City      2      3      A   
08/03/14     E2     Stevenage              Tranmere      3      1      H   
08/03/14     E2       Swindon    Milton Keynes Dons      1      2      A   
08/03/14     E2       Walsall                Wolves      0      3      A   
08/03/14    SP1         Betis                Getafe      2      0      H   
08/03/14    SP1         Celta            Ath Madrid      0      2      A   
08/03/14    SP1       Granada            Villarreal      2      0      H   
08/03/14    SP1    Valladolid             Barcelona      1      0      H   
08/03/14     I1       Catania              Cagliari      1      1      D   
08/03/14     I1       Udinese                 Milan      1      0      H   

         season  
date             
08/03/14  13-14  
08/03/14  13-14  
08/03/14  13-14  
08/03/14  13-14  
08/03/14  13-14  
08/03/14  13-14  
08/03/14  13-14  
08/03/14  13-14  
08/03/14  13-14  
08/03/14  13-14  
08/03/14  13-14  
08/03/14  13-14  
08/03/14  13-14  
08/03/14  13-14  
08/03/14  13-14  
08/03/14  13-14  
08/03/14  13-14  
08/03/14  13-14  
08/03/14  13-14  
08/03/14  13-14  
08/03/14  13-14  
08/03/14  13-14  
08/03/14  13-14  
08/03/14  13-14  
08/03/14  13-14  
08/03/14  13-14  
08/03/14  13-14  
08/03/14  13-14  


08/03/15
         league         home           away  hgoal  agoal result season
date                                                                   
08/03/15     D1      FC Koln  Ein Frankfurt      4      2      H  14-15
08/03/15     D1    Paderborn     Leverkusen      0      3      A  14-15
08/03/15     I1       Cesena        Palermo      0      0      D  14-15
08/03/15     I1       Chievo           Roma      0      0      D  14-15
08/03/15     I1       Empoli          Genoa      1      1      D  14-15
08/03/15     I1       Napoli          Inter      2      2      D  14-15
08/03/15     I1        Parma       Atalanta      0      0      D  14-15
08/03/15     I1      Udinese         Torino      3      2      H  14-15
08/03/15     T1   Buyuksehyr      Konyaspor      0      0      D  14-15
08/03/15     T1   Fenerbahce    Galatasaray      1      0      H  14-15
08/03/15     T1  Karabukspor  Gaziantepspor      0      0      D  14-15
08/03/15     T1    Sivasspor       Besiktas      0      1      A  14-15
08/03/15    SP1   Ath Madrid       Valencia      1      1      D  14-15
08/03/15    SP1    Barcelona      Vallecano      6      1      H  14-15
08/03/15    SP1     Sociedad        Espanol      1      0      H  14-15
08/03/15    SP1   Villarreal          Celta      4      1      H  14-15


08/03/16
         league        home       away  hgoal  agoal result season
date                                                              
08/03/16     E2    Bradford     Burton      2      0      H  15-16
08/03/16     E2  Scunthorpe  Doncaster      2      0      H  15-16
08/03/16     E2  Shrewsbury   Coventry      2      1      H  15-16


08/04/12
         league        home         away  hgoal  agoal result season
date                                                                
08/04/12    SP1  Ath Bilbao      Sevilla      1      0      H  11-12
08/04/12     D1     Hamburg   Leverkusen      1      1      D  11-12
08/04/12     D1  Schalke 04     Hannover      3      0      H  11-12
08/04/12     T1  Manisaspor  Galatasaray      0      4      A  11-12
08/04/12     T1    Orduspor  Trabzonspor      0      0      D  11-12


08/04/13
         league       home        away  hgoal  agoal result season
date                                                              
08/04/13    SP1    Sevilla  Ath Bilbao      2      1      H  12-13
08/04/13     T1  Bursaspor    Besiktas      3      0      H  12-13


08/04/14
         league              home          away  hgoal  agoal result season
date                                                                       
08/04/14     E2         Brentford  Crawley Town      1      0      H  13-14
08/04/14     E2         Peterboro    Gillingham      2      0      H  13-14
08/04/14     E2  Sheffield United     Rotherham      1      0      H  13-14


08/04/15
         league       home         away  hgoal  agoal result season
date                                                               
08/04/15     I1      Parma      Udinese      1      0      H  14-15
08/04/15    SP1  Barcelona      Almeria      4      0      H  14-15
08/04/15    SP1    Granada        Celta      1      1      D  14-15
08/04/15    SP1  La Coruna      Cordoba      1      1      D  14-15
08/04/15    SP1  Vallecano  Real Madrid      0      2      A  14-15


08/04/16
         league           home       away  hgoal  agoal result season
date                                                                 
08/04/16     T1  Gaziantepspor  Sivasspor      0      1      A  15-16
08/04/16     D1         Hertha   Hannover      2      2      D  15-16


08/05/13
         league         home        away  hgoal  agoal result season
date                                                                
08/05/13    SP1        Celta  Ath Madrid      1      3      A  12-13
08/05/13    SP1  Real Madrid      Malaga      6      2      H  12-13
08/05/13     I1     Atalanta    Juventus      0      1      A  12-13
08/05/13     I1      Bologna      Napoli      0      3      A  12-13
08/05/13     I1     Cagliari       Parma      0      1      A  12-13
08/05/13     I1        Inter       Lazio      1      3      A  12-13
08/05/13     I1      Palermo     Udinese      2      3      A  12-13
08/05/13     I1      Pescara       Milan      0      4      A  12-13
08/05/13     I1    Sampdoria     Catania      1      1      D  12-13
08/05/13     I1        Siena  Fiorentina      0      1      A  12-13
08/05/13     I1       Torino       Genoa      0      0      D  12-13


08/05/15
         league           home                away  hgoal  agoal result season
date                                                                          
08/05/15     D1        Hamburg            Freiburg      1      1      D  14-15
08/05/15     T1    Erciyesspor  Mersin Idman Yurdu      2      2      D  14-15
08/05/15     T1  Eskisehirspor           Kasimpasa      4      1      H  14-15
08/05/15     T1    Galatasaray           Konyaspor      1      0      H  14-15
08/05/15    SP1          Eibar             Espanol      0      2      A  14-15


08/05/16
         league                  home          away  hgoal  agoal result  \
date                                                                       
08/05/16     T1  Akhisar Belediyespor   Kayserispor      1      1      D   
08/05/16     T1           Galatasaray      Besiktas      0      1      A   
08/05/16     T1    Mersin Idman Yurdu   Antalyaspor      0      1      A   
08/05/16     T1           Trabzonspor      Rizespor      6      0      H   
08/05/16     I1              Atalanta       Udinese      1      1      D   
08/05/16     I1                 Carpi         Lazio      1      3      A   
08/05/16     I1            Fiorentina       Palermo      0      0      D   
08/05/16     I1             Frosinone      Sassuolo      0      1      A   
08/05/16     I1                  Roma        Chievo      3      0      H   
08/05/16     I1             Sampdoria         Genoa      0      3      A   
08/05/16     I1                Torino        Napoli      1      2      A   
08/05/16     I1                Verona      Juventus      2      1      H   
08/05/16    SP1             Barcelona       Espanol      5      0      H   
08/05/16    SP1                 Celta        Malaga      1      0      H   
08/05/16    SP1                 Eibar         Betis      1      1      D   
08/05/16    SP1                Getafe      Sp Gijon      1      1      D   
08/05/16    SP1            Las Palmas    Ath Bilbao      0      0      D   
08/05/16    SP1               Levante    Ath Madrid      2      1      H   
08/05/16    SP1           Real Madrid      Valencia      3      2      H   
08/05/16    SP1               Sevilla       Granada      1      4      A   
08/05/16    SP1              Sociedad     Vallecano      2      1      H   
08/05/16    SP1            Villarreal     La Coruna      0      2      A   
08/05/16     E2              Bradford  Chesterfield      2      0      H   
08/05/16     E2                  Bury      Southend      3      2      H   
08/05/16     E2            Colchester      Rochdale      1      2      A   
08/05/16     E2             Doncaster        Burton      0      0      D   
08/05/16     E2        Fleetwood Town         Crewe      2      0      H   
08/05/16     E2            Gillingham      Millwall      1      2      A   
08/05/16     E2                Oldham      Coventry      0      2      A   
08/05/16     E2             Peterboro     Blackpool      5      1      H   
08/05/16     E2             Port Vale       Walsall      0      5      A   
08/05/16     E2      Sheffield United    Scunthorpe      0      2      A   
08/05/16     E2               Swindon    Shrewsbury      3      0      H   
08/05/16     E2                 Wigan      Barnsley      1      4      A   

         season  
date             
08/05/16  15-16  
08/05/16  15-16  
08/05/16  15-16  
08/05/16  15-16  
08/05/16  15-16  
08/05/16  15-16  
08/05/16  15-16  
08/05/16  15-16  
08/05/16  15-16  
08/05/16  15-16  
08/05/16  15-16  
08/05/16  15-16  
08/05/16  15-16  
08/05/16  15-16  
08/05/16  15-16  
08/05/16  15-16  
08/05/16  15-16  
08/05/16  15-16  
08/05/16  15-16  
08/05/16  15-16  
08/05/16  15-16  
08/05/16  15-16  
08/05/16  15-16  
08/05/16  15-16  
08/05/16  15-16  
08/05/16  15-16  
08/05/16  15-16  
08/05/16  15-16  
08/05/16  15-16  
08/05/16  15-16  
08/05/16  15-16  
08/05/16  15-16  
08/05/16  15-16  
08/05/16  15-16  


08/08/15
         league            home              away  hgoal  agoal result season
date                                                                         
08/08/15     E2          Burton        Scunthorpe      2      1      H  15-16
08/08/15     E2    Chesterfield          Barnsley      3      1      H  15-16
08/08/15     E2      Colchester         Blackpool      2      2      D  15-16
08/08/15     E2        Coventry             Wigan      2      0      H  15-16
08/08/15     E2           Crewe         Port Vale      0      0      D  15-16
08/08/15     E2       Doncaster              Bury      1      1      D  15-16
08/08/15     E2  Fleetwood Town          Southend      1      1      D  15-16
08/08/15     E2      Gillingham  Sheffield United      4      0      H  15-16
08/08/15     E2        Rochdale         Peterboro      2      0      H  15-16
08/08/15     E2      Shrewsbury          Millwall      1      2      A  15-16
08/08/15     E2         Swindon          Bradford      4      1      H  15-16
08/08/15     E2         Walsall            Oldham      1      1      D  15-16


08/09/12
         league          home                away  hgoal  agoal result season
date                                                                         
08/09/12     E2     Brentford          Colchester      1      0      H  12-13
08/09/12     E2          Bury             Preston      1      2      A  12-13
08/09/12     E2         Crewe            Tranmere      0      0      D  12-13
08/09/12     E2    Hartlepool            Carlisle      1      2      A  12-13
08/09/12     E2  Notts County          Shrewsbury      3      2      H  12-13
08/09/12     E2    Scunthorpe    Sheffield United      1      1      D  12-13
08/09/12     E2       Swindon       Leyton Orient      0      1      A  12-13
08/09/12     E2       Walsall  Milton Keynes Dons      1      0      H  12-13
08/09/12     E2        Yeovil         Bournemouth      0      1      A  12-13


08/09/13
         league      home        away  hgoal  agoal result season
date                                                             
08/09/13     E2  Coventry  Colchester      2      0      H  13-14


08/10/11
         league            home           away  hgoal  agoal result season
date                                                                      
08/10/11     E2     Bournemouth       Rochdale      1      1      D  11-12
08/10/11     E2            Bury         Exeter      2      0      H  11-12
08/10/11     E2        Carlisle      Brentford      2      2      D  11-12
08/10/11     E2        Charlton       Tranmere      1      1      D  11-12
08/10/11     E2      Colchester         Yeovil      2      2      D  11-12
08/10/11     E2    Huddersfield      Stevenage      2      1      H  11-12
08/10/11     E2      Scunthorpe  Leyton Orient      2      3      A  11-12
08/10/11     E2  Sheffield Weds   Chesterfield      3      1      H  11-12
08/10/11     E2         Wycombe        Walsall      1      1      D  11-12


08/11/13
         league           home                  away  hgoal  agoal result  \
date                                                                        
08/11/13     D1       Hannover          Braunschweig      0      0      D   
08/11/13     T1     Elazigspor           Erciyesspor      0      1      A   
08/11/13     T1  Eskisehirspor  Akhisar Belediyespor      2      0      H   
08/11/13    SP1        Granada                Malaga      3      1      H   
08/11/13    SP1        Osasuna               Almeria      0      1      A   

         season  
date             
08/11/13  13-14  
08/11/13  13-14  
08/11/13  13-14  
08/11/13  13-14  
08/11/13  13-14  


08/11/14
         league                home           away  hgoal  agoal result season
date                                                                          
08/11/14     D1            Augsburg      Paderborn      3      0      H  14-15
08/11/14     D1       Ein Frankfurt  Bayern Munich      0      4      A  14-15
08/11/14     D1            Freiburg     Schalke 04      2      0      H  14-15
08/11/14     D1          Hoffenheim        FC Koln      3      4      A  14-15
08/11/14     D1          Leverkusen          Mainz      0      0      D  14-15
08/11/14     D1       Werder Bremen      Stuttgart      2      0      H  14-15
08/11/14     I1           Sampdoria          Milan      2      2      D  14-15
08/11/14     I1            Sassuolo       Atalanta      0      0      D  14-15
08/11/14     T1          Fenerbahce       Rizespor      2      1      H  14-15
08/11/14     T1         Karabukspor    Galatasaray      1      2      A  14-15
08/11/14     T1  Mersin Idman Yurdu  Balikesirspor      2      1      H  14-15
08/11/14    SP1             Almeria      Barcelona      1      2      A  14-15
08/11/14    SP1               Celta        Granada      0      0      D  14-15
08/11/14    SP1              Getafe          Elche      0      0      D  14-15
08/11/14    SP1              Malaga          Eibar      2      1      H  14-15
08/11/14    SP1         Real Madrid      Vallecano      5      1      H  14-15


08/11/15
         league        home           away  hgoal  agoal result season
date                                                                  
08/11/15     T1   Bursaspor       Besiktas      0      1      A  15-16
08/11/15     T1  Fenerbahce      Konyaspor      1      0      H  15-16
08/11/15     T1   Sivasspor  Gaziantepspor      3      0      H  15-16
08/11/15     D1    Augsburg  Werder Bremen      1      2      A  15-16
08/11/15     D1    Dortmund     Schalke 04      3      2      H  15-16
08/11/15     I1      Empoli       Juventus      1      3      A  15-16
08/11/15     I1   Frosinone          Genoa      2      2      D  15-16
08/11/15     I1      Napoli        Udinese      1      0      H  15-16
08/11/15     I1     Palermo         Chievo      1      0      H  15-16
08/11/15     I1        Roma          Lazio      2      0      H  15-16
08/11/15     I1   Sampdoria     Fiorentina      0      2      A  15-16
08/11/15     I1    Sassuolo          Carpi      1      0      H  15-16
08/11/15     I1      Torino          Inter      0      1      A  15-16
08/11/15    SP1  Ath Bilbao        Espanol      2      1      H  15-16
08/11/15    SP1  Ath Madrid       Sp Gijon      1      0      H  15-16
08/11/15    SP1   Barcelona     Villarreal      3      0      H  15-16
08/11/15    SP1     Sevilla    Real Madrid      3      2      H  15-16


08/12/11
         league        home                away  hgoal  agoal result season
date                                                                       
08/12/11     T1  Ankaragucu           Bursaspor      0      0      D  11-12
08/12/11     T1  Buyuksehyr  Mersin Idman Yurdu      0      0      D  11-12
08/12/11     T1  Manisaspor            Besiktas      1      4      A  11-12
08/12/11     T1    Orduspor           Sivasspor      1      2      A  11-12
08/12/11     T1  Samsunspor         Kayserispor      0      1      A  11-12


08/12/12
         league           home                away  hgoal  agoal result season
date                                                                          
08/12/12    SP1         Malaga             Granada      4      0      H  12-13
08/12/12    SP1        Osasuna            Valencia      0      1      A  12-13
08/12/12    SP1       Sociedad              Getafe      1      1      D  12-13
08/12/12    SP1     Valladolid         Real Madrid      2      3      A  12-13
08/12/12     I1       Atalanta               Parma      2      1      H  12-13
08/12/12     I1           Roma          Fiorentina      4      2      H  12-13
08/12/12     T1      Bursaspor            Orduspor      1      0      H  12-13
08/12/12     T1  Gaziantepspor         Karabukspor      0      2      A  12-13
08/12/12     T1      Kasimpasa      Genclerbirligi      2      2      D  12-13
08/12/12     T1      Sivasspor         Galatasaray      1      3      A  12-13
08/12/12     E2      Brentford  Milton Keynes Dons      3      2      H  12-13
08/12/12     E2           Bury       Leyton Orient      0      2      A  12-13
08/12/12     E2       Carlisle    Sheffield United      1      3      A  12-13
08/12/12     E2     Colchester              Oldham      0      2      A  12-13
08/12/12     E2       Coventry             Walsall      5      1      H  12-13
08/12/12     E2   Crawley Town          Shrewsbury      2      2      D  12-13
08/12/12     E2     Hartlepool           Stevenage      0      2      A  12-13
08/12/12     E2        Preston               Crewe      1      3      A  12-13
08/12/12     E2     Scunthorpe         Bournemouth      1      2      A  12-13
08/12/12     E2        Swindon           Doncaster      1      1      D  12-13
08/12/12     E2       Tranmere          Portsmouth      2      2      D  12-13
08/12/12     E2         Yeovil        Notts County      0      0      D  12-13
08/12/12     D1       Augsburg       Bayern Munich      0      2      A  12-13
08/12/12     D1       Dortmund           Wolfsburg      2      3      A  12-13
08/12/12     D1  Ein Frankfurt       Werder Bremen      4      1      H  12-13
08/12/12     D1       Freiburg      Greuther Furth      1      0      H  12-13
08/12/12     D1       Nurnberg  Fortuna Dusseldorf      2      0      H  12-13
08/12/12     D1      Stuttgart          Schalke 04      3      1      H  12-13


08/12/13
         league                  home            away  hgoal  agoal result  \
date                                                                         
08/12/13     D1          Braunschweig          Hertha      0      2      A   
08/12/13     D1              Freiburg       Wolfsburg      0      3      A   
08/12/13     T1  Akhisar Belediyespor       Konyaspor      2      1      H   
08/12/13     T1             Bursaspor  Genclerbirligi      0      0      D   
08/12/13     T1         Gaziantepspor     Trabzonspor      3      2      H   
08/12/13     T1           Karabukspor     Kayserispor      1      0      H   
08/12/13     I1              Cagliari           Genoa      2      1      H   
08/12/13     I1                 Inter           Parma      3      3      D   
08/12/13     I1                  Roma      Fiorentina      2      1      H   
08/12/13     I1             Sampdoria         Catania      2      0      H   
08/12/13     I1              Sassuolo          Chievo      0      1      A   
08/12/13     I1                Torino           Lazio      1      0      H   
08/12/13     I1                Verona        Atalanta      2      1      H   

         season  
date             
08/12/13  13-14  
08/12/13  13-14  
08/12/13  13-14  
08/12/13  13-14  
08/12/13  13-14  
08/12/13  13-14  
08/12/13  13-14  
08/12/13  13-14  
08/12/13  13-14  
08/12/13  13-14  
08/12/13  13-14  
08/12/13  13-14  
08/12/13  13-14  


08/12/14
         league       home         away  hgoal  agoal result season
date                                                               
08/12/14     I1   Cagliari       Chievo      0      2      A  14-15
08/12/14     I1     Verona    Sampdoria      1      3      A  14-15
08/12/14     T1  Sivasspor  Erciyesspor      1      1      D  14-15
08/12/14    SP1      Eibar      Almeria      5      2      H  14-15
08/12/14    SP1    Levante       Getafe      1      1      D  14-15


09/01/12
         league        home           away  hgoal  agoal result season
date                                                                  
09/01/12     T1  Fenerbahce  Gaziantepspor      3      1      H  11-12


09/01/13
         league                  home         away  hgoal  agoal result season
date                                                                          
09/01/13     T1  Akhisar Belediyespor  Antalyaspor      1      0      H  12-13


09/01/15
         league     home       away  hgoal  agoal result season
date                                                           
09/01/15    SP1  Levante  La Coruna      0      0      D  14-15


09/01/16
         league         home          away  hgoal  agoal result season
date                                                                  
09/01/16     I1        Carpi       Udinese      2      1      H  15-16
09/01/16     I1   Fiorentina         Lazio      1      3      A  15-16
09/01/16     I1         Roma         Milan      1      1      D  15-16
09/01/16    SP1    Barcelona       Granada      4      0      H  15-16
09/01/16    SP1       Getafe         Betis      1      0      H  15-16
09/01/16    SP1      Levante     Vallecano      2      1      H  15-16
09/01/16    SP1  Real Madrid     La Coruna      5      0      H  15-16
09/01/16    SP1      Sevilla    Ath Bilbao      2      0      H  15-16
09/01/16     E2    Blackpool     Port Vale      0      1      A  15-16
09/01/16     E2       Oldham      Millwall      1      2      A  15-16
09/01/16     E2     Rochdale  Chesterfield      2      3      A  15-16
09/01/16     E2      Swindon      Southend      4      2      H  15-16


09/02/12
         league        home         away  hgoal  agoal result season
date                                                                
09/02/12     I1       Lazio       Cesena      3      2      H  11-12
09/02/12     T1  Buyuksehyr  Karabukspor      2      2      D  11-12
09/02/12     T1   Sivasspor     Besiktas      1      1      D  11-12


09/02/13
         league            home                  away  hgoal  agoal result  \
date                                                                         
09/02/13    SP1           Celta              Valencia      0      1      A   
09/02/13    SP1       La Coruna               Granada      0      3      A   
09/02/13    SP1         Levante                Malaga      1      2      A   
09/02/13    SP1        Mallorca               Osasuna      1      1      D   
09/02/13    SP1     Real Madrid               Sevilla      4      1      H   
09/02/13     I1        Juventus            Fiorentina      2      0      H   
09/02/13     I1           Lazio                Napoli      1      1      D   
09/02/13     T1      Buyuksehyr  Akhisar Belediyespor      0      2      A   
09/02/13     T1      Elazigspor              Besiktas      1      3      A   
09/02/13     T1  Genclerbirligi         Eskisehirspor      0      2      A   
09/02/13     T1     Karabukspor             Bursaspor      0      3      A   
09/02/13     E2     Bournemouth            Portsmouth      2      0      H   
09/02/13     E2       Brentford                  Bury      2      2      D   
09/02/13     E2        Carlisle             Stevenage      2      1      H   
09/02/13     E2      Colchester               Preston      1      0      H   
09/02/13     E2        Coventry                Yeovil      0      1      A   
09/02/13     E2       Doncaster               Walsall      1      2      A   
09/02/13     E2   Leyton Orient              Tranmere      2      1      H   
09/02/13     E2    Notts County                 Crewe      1      1      D   
09/02/13     E2          Oldham    Milton Keynes Dons      3      1      H   
09/02/13     E2      Scunthorpe          Crawley Town      2      1      H   
09/02/13     E2      Shrewsbury      Sheffield United      1      2      A   
09/02/13     E2         Swindon            Hartlepool      1      1      D   
09/02/13     D1   Bayern Munich            Schalke 04      4      0      H   
09/02/13     D1        Dortmund               Hamburg      1      4      A   
09/02/13     D1   Ein Frankfurt              Nurnberg      0      0      D   
09/02/13     D1  Greuther Furth             Wolfsburg      0      1      A   
09/02/13     D1        Hannover            Hoffenheim      1      0      H   
09/02/13     D1      M'gladbach            Leverkusen      3      3      D   
09/02/13     D1       Stuttgart         Werder Bremen      1      4      A   

         season  
date             
09/02/13  12-13  
09/02/13  12-13  
09/02/13  12-13  
09/02/13  12-13  
09/02/13  12-13  
09/02/13  12-13  
09/02/13  12-13  
09/02/13  12-13  
09/02/13  12-13  
09/02/13  12-13  
09/02/13  12-13  
09/02/13  12-13  
09/02/13  12-13  
09/02/13  12-13  
09/02/13  12-13  
09/02/13  12-13  
09/02/13  12-13  
09/02/13  12-13  
09/02/13  12-13  
09/02/13  12-13  
09/02/13  12-13  
09/02/13  12-13  
09/02/13  12-13  
09/02/13  12-13  
09/02/13  12-13  
09/02/13  12-13  
09/02/13  12-13  
09/02/13  12-13  
09/02/13  12-13  
09/02/13  12-13  


09/02/14
         league         home                  away  hgoal  agoal result season
date                                                                          
09/02/14     D1   Schalke 04              Hannover      2      0      H  13-14
09/02/14     D1    Stuttgart              Augsburg      1      4      A  13-14
09/02/14     T1    Bursaspor           Antalyaspor      1      1      D  13-14
09/02/14     T1   Elazigspor           Kayserispor      3      0      H  13-14
09/02/14     T1    Sivasspor            Fenerbahce      2      0      H  13-14
09/02/14     T1  Trabzonspor  Akhisar Belediyespor      2      4      A  13-14
09/02/14    SP1      Osasuna                Getafe      2      0      H  13-14
09/02/14    SP1      Sevilla             Barcelona      1      4      A  13-14
09/02/14    SP1     Sociedad               Levante      0      0      D  13-14
09/02/14    SP1   Valladolid                 Elche      2      2      D  13-14
09/02/14     I1        Inter              Sassuolo      1      0      H  13-14
09/02/14     I1        Lazio                  Roma      0      0      D  13-14
09/02/14     I1      Livorno                 Genoa      0      1      A  13-14
09/02/14     I1        Parma               Catania      0      0      D  13-14
09/02/14     I1    Sampdoria              Cagliari      1      0      H  13-14
09/02/14     I1       Torino               Bologna      1      2      A  13-14
09/02/14     I1       Verona              Juventus      2      2      D  13-14


09/02/15
         league           home                away  hgoal  agoal result season
date                                                                          
09/02/15     I1          Lazio               Genoa      0      1      A  14-15
09/02/15     T1  Eskisehirspor         Galatasaray      1      2      A  14-15
09/02/15     E2       Bradford  Milton Keynes Dons      2      1      H  14-15
09/02/15    SP1          Elche           Vallecano      2      0      H  14-15


09/03/12
         league        home            away  hgoal  agoal result season
date                                                                   
09/03/12     I1      Chievo           Inter      0      2      A  11-12
09/03/12     I1      Napoli        Cagliari      6      3      H  11-12
09/03/12     D1   Stuttgart  Kaiserslautern      0      0      D  11-12
09/03/12     T1  Ankaragucu      Fenerbahce      0      2      A  11-12


09/03/13
         league              home                  away  hgoal  agoal result  \
date                                                                           
09/03/13    SP1         Barcelona             La Coruna      2      0      H   
09/03/13    SP1          Mallorca               Sevilla      2      1      H   
09/03/13    SP1        Valladolid                Malaga      1      1      D   
09/03/13    SP1         Vallecano               Espanol      2      0      H   
09/03/13     I1           Udinese                  Roma      1      1      D   
09/03/13     T1        Buyuksehyr           Kayserispor      0      0      D   
09/03/13     T1     Gaziantepspor  Akhisar Belediyespor      2      2      D   
09/03/13     T1       Trabzonspor              Besiktas      0      0      D   
09/03/13     E2       Bournemouth             Doncaster      1      2      A   
09/03/13     E2          Carlisle             Brentford      2      0      H   
09/03/13     E2        Colchester                 Crewe      1      2      A   
09/03/13     E2      Crawley Town          Notts County      0      0      D   
09/03/13     E2        Hartlepool                Yeovil      0      0      D   
09/03/13     E2        Portsmouth                  Bury      2      0      H   
09/03/13     E2           Preston             Stevenage      2      0      H   
09/03/13     E2        Scunthorpe              Coventry      1      2      A   
09/03/13     E2  Sheffield United    Milton Keynes Dons      0      0      D   
09/03/13     E2        Shrewsbury         Leyton Orient      0      2      A   
09/03/13     E2           Swindon               Walsall      2      2      D   
09/03/13     E2          Tranmere                Oldham      1      0      H   
09/03/13     D1     Bayern Munich    Fortuna Dusseldorf      3      2      H   
09/03/13     D1          Freiburg             Wolfsburg      2      5      A   
09/03/13     D1    Greuther Furth            Hoffenheim      0      3      A   
09/03/13     D1             Mainz            Leverkusen      1      0      H   
09/03/13     D1        M'gladbach         Werder Bremen      1      1      D   
09/03/13     D1        Schalke 04              Dortmund      2      1      H   

         season  
date             
09/03/13  12-13  
09/03/13  12-13  
09/03/13  12-13  
09/03/13  12-13  
09/03/13  12-13  
09/03/13  12-13  
09/03/13  12-13  
09/03/13  12-13  
09/03/13  12-13  
09/03/13  12-13  
09/03/13  12-13  
09/03/13  12-13  
09/03/13  12-13  
09/03/13  12-13  
09/03/13  12-13  
09/03/13  12-13  
09/03/13  12-13  
09/03/13  12-13  
09/03/13  12-13  
09/03/13  12-13  
09/03/13  12-13  
09/03/13  12-13  
09/03/13  12-13  
09/03/13  12-13  
09/03/13  12-13  
09/03/13  12-13  


09/03/14
         league            home           away  hgoal  agoal result season
date                                                                      
09/03/14     D1        Freiburg       Dortmund      0      1      A  13-14
09/03/14     D1           Mainz         Hertha      1      1      D  13-14
09/03/14     T1     Antalyaspor       Rizespor      1      2      A  13-14
09/03/14     T1        Besiktas  Eskisehirspor      1      0      H  13-14
09/03/14     T1   Gaziantepspor    Kayserispor      2      1      H  13-14
09/03/14     T1  Genclerbirligi      Sivasspor      2      1      H  13-14
09/03/14    SP1         Almeria        Sevilla      1      3      A  13-14
09/03/14    SP1         Espanol          Elche      3      1      H  13-14
09/03/14    SP1     Real Madrid        Levante      3      0      H  13-14
09/03/14    SP1        Valencia     Ath Bilbao      1      1      D  13-14
09/03/14     I1         Bologna       Sassuolo      0      0      D  13-14
09/03/14     I1          Chievo          Genoa      2      1      H  13-14
09/03/14     I1           Inter         Torino      1      0      H  13-14
09/03/14     I1        Juventus     Fiorentina      1      0      H  13-14
09/03/14     I1           Lazio       Atalanta      0      1      A  13-14
09/03/14     I1          Napoli           Roma      1      0      H  13-14
09/03/14     I1           Parma         Verona      2      0      H  13-14
09/03/14     I1       Sampdoria        Livorno      4      2      H  13-14


09/03/15
         league                home         away  hgoal  agoal result season
date                                                                        
09/03/15     I1            Juventus     Sassuolo      1      0      H  14-15
09/03/15     I1               Lazio   Fiorentina      4      0      H  14-15
09/03/15     T1  Mersin Idman Yurdu  Trabzonspor      1      5      A  14-15
09/03/15    SP1             Cordoba       Getafe      1      2      A  14-15


09/04/12
         league                home           away  hgoal  agoal result season
date                                                                          
09/04/12     E2         Bournemouth   Huddersfield      2      0      H  11-12
09/04/12     E2                Bury     Colchester      4      1      H  11-12
09/04/12     E2            Carlisle     Scunthorpe      0      0      D  11-12
09/04/12     E2            Charlton        Walsall      1      0      H  11-12
09/04/12     E2        Chesterfield        Wycombe      4      0      H  11-12
09/04/12     E2              Exeter  Leyton Orient      3      0      H  11-12
09/04/12     E2          Hartlepool      Brentford      0      0      D  11-12
09/04/12     E2  Milton Keynes Dons       Tranmere      3      0      H  11-12
09/04/12     E2        Notts County         Yeovil      3      1      H  11-12
09/04/12     E2      Sheffield Weds         Oldham      3      0      H  11-12
09/04/12     E2           Stevenage        Preston      1      1      D  11-12


09/04/13
         league                home          away  hgoal  agoal result season
date                                                                         
09/04/13     E2           Doncaster      Carlisle      0      2      A  12-13
09/04/13     E2  Milton Keynes Dons       Swindon      2      0      H  12-13
09/04/13     E2             Preston        Oldham      2      0      H  12-13
09/04/13     E2    Sheffield United  Crawley Town      0      2      A  12-13


09/04/15
         league        home      away  hgoal  agoal result season
date                                                             
09/04/15    SP1  Ath Bilbao  Valencia      1      1      D  14-15
09/04/15    SP1       Elche    Getafe      0      1      A  14-15
09/04/15    SP1  Villarreal   Espanol      0      3      A  14-15


09/04/16
         league              home            away  hgoal  agoal result season
date                                                                         
09/04/16     T1       Galatasaray        Rizespor      1      1      D  15-16
09/04/16     T1       Kayserispor     Antalyaspor      0      0      D  15-16
09/04/16     T1       Osmanlispor   Eskisehirspor      0      0      D  15-16
09/04/16     D1     Ein Frankfurt      Hoffenheim      0      2      A  15-16
09/04/16     D1           Hamburg       Darmstadt      1      2      A  15-16
09/04/16     D1        Ingolstadt      M'gladbach      1      0      H  15-16
09/04/16     D1         Stuttgart   Bayern Munich      1      3      A  15-16
09/04/16     D1     Werder Bremen        Augsburg      1      2      A  15-16
09/04/16     D1         Wolfsburg           Mainz      1      1      D  15-16
09/04/16     I1         Frosinone           Inter      0      1      A  15-16
09/04/16     I1             Milan        Juventus      1      2      A  15-16
09/04/16     I1          Sassuolo           Genoa      0      1      A  15-16
09/04/16    SP1             Betis         Levante      1      0      H  15-16
09/04/16    SP1           Espanol      Ath Madrid      1      3      A  15-16
09/04/16    SP1       Real Madrid           Eibar      4      0      H  15-16
09/04/16    SP1          Sociedad       Barcelona      1      0      H  15-16
09/04/16     E2          Barnsley    Chesterfield      1      2      A  15-16
09/04/16     E2         Blackpool      Colchester      0      1      A  15-16
09/04/16     E2          Bradford         Swindon      1      0      H  15-16
09/04/16     E2              Bury       Doncaster      1      0      H  15-16
09/04/16     E2          Millwall      Shrewsbury      3      1      H  15-16
09/04/16     E2            Oldham         Walsall      1      0      H  15-16
09/04/16     E2         Peterboro        Rochdale      1      2      A  15-16
09/04/16     E2         Port Vale           Crewe      3      0      H  15-16
09/04/16     E2        Scunthorpe          Burton      1      0      H  15-16
09/04/16     E2  Sheffield United      Gillingham      0      0      D  15-16
09/04/16     E2          Southend  Fleetwood Town      2      2      D  15-16
09/04/16     E2             Wigan        Coventry      1      0      H  15-16


09/05/14
         league        home         away  hgoal  agoal result season
date                                                                
09/05/14     T1  Fenerbahce  Karabukspor      4      0      H  13-14


09/05/15
         league            home                  away  hgoal  agoal result  \
date                                                                         
09/05/15     D1   Bayern Munich              Augsburg      0      1      A   
09/05/15     D1        Dortmund                Hertha      2      0      H   
09/05/15     D1   Ein Frankfurt            Hoffenheim      3      1      H   
09/05/15     D1        Hannover         Werder Bremen      1      1      D   
09/05/15     D1      M'gladbach            Leverkusen      3      0      H   
09/05/15     D1       Stuttgart                 Mainz      2      0      H   
09/05/15     I1        Juventus              Cagliari      1      1      D   
09/05/15     I1           Milan                  Roma      2      1      H   
09/05/15     T1   Balikesirspor            Buyuksehyr      1      2      A   
09/05/15     T1       Bursaspor           Karabukspor      7      1      H   
09/05/15     T1  Genclerbirligi  Akhisar Belediyespor      0      0      D   
09/05/15     T1       Sivasspor            Fenerbahce      2      3      A   
09/05/15    SP1      Ath Bilbao             La Coruna      1      1      D   
09/05/15    SP1       Barcelona              Sociedad      2      0      H   
09/05/15    SP1         Granada               Cordoba      2      0      H   
09/05/15    SP1     Real Madrid              Valencia      2      2      D   

         season  
date             
09/05/15  14-15  
09/05/15  14-15  
09/05/15  14-15  
09/05/15  14-15  
09/05/15  14-15  
09/05/15  14-15  
09/05/15  14-15  
09/05/15  14-15  
09/05/15  14-15  
09/05/15  14-15  
09/05/15  14-15  
09/05/15  14-15  
09/05/15  14-15  
09/05/15  14-15  
09/05/15  14-15  
09/05/15  14-15  


09/05/16
         league        home        away  hgoal  agoal result season
date                                                               
09/05/16     T1  Buyuksehyr  Fenerbahce      2      1      H  15-16
09/05/16     T1   Konyaspor   Kasimpasa      2      0      H  15-16


09/08/13
         league           home        away  hgoal  agoal result season
date                                                                  
09/08/13     D1  Bayern Munich  M'gladbach      3      1      H  13-14


09/08/14
         league                home          away  hgoal  agoal result season
date                                                                         
09/08/14     E2            Barnsley  Crawley Town      0      1      A  14-15
09/08/14     E2            Bradford      Coventry      3      2      H  14-15
09/08/14     E2          Colchester        Oldham      2      2      D  14-15
09/08/14     E2      Fleetwood Town         Crewe      2      1      H  14-15
09/08/14     E2       Leyton Orient  Chesterfield      1      2      A  14-15
09/08/14     E2  Milton Keynes Dons    Gillingham      4      2      H  14-15
09/08/14     E2           Port Vale       Walsall      1      1      D  14-15
09/08/14     E2             Preston  Notts County      1      1      D  14-15
09/08/14     E2            Rochdale     Peterboro      0      1      A  14-15
09/08/14     E2    Sheffield United  Bristol City      1      2      A  14-15
09/08/14     E2             Swindon    Scunthorpe      3      1      H  14-15
09/08/14     E2              Yeovil     Doncaster      0      3      A  14-15


09/09/11
         league      home        away  hgoal  agoal result season
date                                                             
09/09/11     I1     Milan       Lazio      2      2      D  11-12
09/09/11     D1  Augsburg  Leverkusen      1      4      A  11-12
09/09/11     E2   Preston      Yeovil      4      3      H  11-12


09/09/12
         league          home        away  hgoal  agoal result season
date                                                                 
09/09/12     E2      Coventry   Stevenage      1      2      A  12-13
09/09/12     E2  Crawley Town  Portsmouth      0      3      A  12-13


09/09/13
         league     home    away  hgoal  agoal result season
date                                                        
09/09/13     E2  Preston  Oldham      2      1      H  13-14


09/10/11
         league          home        away  hgoal  agoal result season
date                                                                 
09/10/11     E2  Notts County  Hartlepool      3      0      H  11-12


09/11/12
         league       home           away  hgoal  agoal result season
date                                                                 
09/11/12    SP1      Betis        Granada      1      2      A  12-13
09/11/12     T1   Besiktas      Bursaspor      3      3      D  12-13
09/11/12     T1  Sivasspor  Eskisehirspor      1      0      H  12-13
09/11/12     D1      Mainz       Nurnberg      2      1      H  12-13


09/11/13
         league           home           away  hgoal  agoal result season
date                                                                     
09/11/13     D1  Bayern Munich       Augsburg      3      0      H  13-14
09/11/13     D1     Hoffenheim         Hertha      2      3      A  13-14
09/11/13     D1     Leverkusen        Hamburg      5      3      H  13-14
09/11/13     D1     M'gladbach       Nurnberg      3      1      H  13-14
09/11/13     D1     Schalke 04  Werder Bremen      3      1      H  13-14
09/11/13     D1      Wolfsburg       Dortmund      2      1      H  13-14
09/11/13     T1    Karabukspor       Rizespor      2      1      H  13-14
09/11/13     T1      Kasimpasa  Gaziantepspor      3      0      H  13-14
09/11/13     T1    Kayserispor       Besiktas      0      3      A  13-14
09/11/13     T1      Sivasspor      Bursaspor      2      1      H  13-14
09/11/13    SP1     Ath Bilbao        Levante      2      1      H  13-14
09/11/13    SP1          Celta      Vallecano      0      2      A  13-14
09/11/13    SP1         Getafe          Elche      1      1      D  13-14
09/11/13    SP1    Real Madrid       Sociedad      5      1      H  13-14
09/11/13     I1        Catania        Udinese      1      0      H  13-14
09/11/13     I1          Inter        Livorno      2      0      H  13-14


09/11/14
         league         home            away  hgoal  agoal result season
date                                                                    
09/11/14     D1     Dortmund      M'gladbach      1      0      H  14-15
09/11/14     D1    Wolfsburg         Hamburg      2      0      H  14-15
09/11/14     I1     Cagliari           Genoa      1      1      D  14-15
09/11/14     I1       Chievo          Cesena      2      1      H  14-15
09/11/14     I1       Empoli           Lazio      2      1      H  14-15
09/11/14     I1   Fiorentina          Napoli      0      1      A  14-15
09/11/14     I1        Inter          Verona      2      2      D  14-15
09/11/14     I1     Juventus           Parma      7      0      H  14-15
09/11/14     I1      Palermo         Udinese      1      1      D  14-15
09/11/14     I1         Roma          Torino      3      0      H  14-15
09/11/14     T1   Buyuksehyr        Besiktas      1      2      A  14-15
09/11/14     T1  Erciyesspor       Bursaspor      1      1      D  14-15
09/11/14     T1    Kasimpasa  Genclerbirligi      2      2      D  14-15
09/11/14     T1  Trabzonspor       Konyaspor      3      2      H  14-15
09/11/14    SP1      Espanol      Villarreal      1      1      D  14-15
09/11/14    SP1      Sevilla         Levante      1      1      D  14-15
09/11/14    SP1     Sociedad      Ath Madrid      2      1      H  14-15
09/11/14    SP1     Valencia      Ath Bilbao      0      0      D  14-15


09/12/11
         league    home        away  hgoal  agoal result season
date                                                           
09/12/11     D1  Hertha  Schalke 04      1      2      A  11-12


09/12/12
         league         home         away  hgoal  agoal result season
date                                                                 
09/12/12    SP1   Ath Bilbao        Celta      1      0      H  12-13
09/12/12    SP1   Ath Madrid    La Coruna      6      0      H  12-13
09/12/12    SP1        Betis    Barcelona      1      2      A  12-13
09/12/12    SP1      Levante     Mallorca      4      0      H  12-13
09/12/12     I1     Cagliari       Chievo      0      2      A  12-13
09/12/12     I1        Inter       Napoli      2      1      H  12-13
09/12/12     I1      Palermo     Juventus      0      1      A  12-13
09/12/12     I1      Pescara        Genoa      2      0      H  12-13
09/12/12     I1        Siena      Catania      1      3      A  12-13
09/12/12     I1       Torino        Milan      2      4      A  12-13
09/12/12     T1   Fenerbahce   Buyuksehyr      2      1      H  12-13
09/12/12     T1  Trabzonspor  Kayserispor      1      1      D  12-13
09/12/12     D1     Hannover   Leverkusen      3      2      H  12-13
09/12/12     D1   M'gladbach        Mainz      2      0      H  12-13


09/12/13
         league         home           away  hgoal  agoal result season
date                                                                   
09/12/13     T1     Besiktas      Sivasspor      1      1      D  13-14
09/12/13     T1  Erciyesspor  Eskisehirspor      0      2      A  13-14


10/01/12
         league              home    away  hgoal  agoal result season
date                                                                 
10/01/12     E2  Sheffield United  Yeovil      4      0      H  11-12


10/01/14
         league     home        away  hgoal  agoal result season
date                                                            
10/01/14    SP1  Granada  Valladolid      4      0      H  13-14


10/01/15
         league              home                away  hgoal  agoal result  \
date                                                                         
10/01/15     I1          Sassuolo             Udinese      1      1      D   
10/01/15     I1            Torino               Milan      1      1      D   
10/01/15     E2          Barnsley              Yeovil      2      0      H   
10/01/15     E2          Bradford            Rochdale      1      2      A   
10/01/15     E2      Bristol City        Notts County      4      0      H   
10/01/15     E2      Chesterfield           Port Vale      3      0      H   
10/01/15     E2      Crawley Town  Milton Keynes Dons      2      2      D   
10/01/15     E2             Crewe          Gillingham      3      1      H   
10/01/15     E2     Leyton Orient      Fleetwood Town      0      1      A   
10/01/15     E2            Oldham           Doncaster      2      2      D   
10/01/15     E2         Peterboro          Colchester      0      2      A   
10/01/15     E2  Sheffield United             Preston      2      1      H   
10/01/15     E2           Walsall          Scunthorpe      1      4      A   
10/01/15    SP1             Celta            Valencia      1      1      D   
10/01/15    SP1             Eibar              Getafe      2      1      H   
10/01/15    SP1            Malaga          Villarreal      1      1      D   
10/01/15    SP1       Real Madrid             Espanol      3      0      H   

         season  
date             
10/01/15  14-15  
10/01/15  14-15  
10/01/15  14-15  
10/01/15  14-15  
10/01/15  14-15  
10/01/15  14-15  
10/01/15  14-15  
10/01/15  14-15  
10/01/15  14-15  
10/01/15  14-15  
10/01/15  14-15  
10/01/15  14-15  
10/01/15  14-15  
10/01/15  14-15  
10/01/15  14-15  
10/01/15  14-15  
10/01/15  14-15  


10/01/16
         league        home        away  hgoal  agoal result season
date                                                               
10/01/16     I1    Atalanta       Genoa      0      2      A  15-16
10/01/16     I1     Bologna      Chievo      0      1      A  15-16
10/01/16     I1   Frosinone      Napoli      1      5      A  15-16
10/01/16     I1       Inter    Sassuolo      0      1      A  15-16
10/01/16     I1   Sampdoria    Juventus      1      2      A  15-16
10/01/16     I1      Torino      Empoli      0      1      A  15-16
10/01/16     I1      Verona     Palermo      0      1      A  15-16
10/01/16    SP1       Celta  Ath Madrid      0      2      A  15-16
10/01/16    SP1       Eibar     Espanol      2      1      H  15-16
10/01/16    SP1  Las Palmas      Malaga      1      1      D  15-16
10/01/16    SP1    Sociedad    Valencia      2      0      H  15-16
10/01/16    SP1  Villarreal    Sp Gijon      2      0      H  15-16


10/02/12
         league         home           away  hgoal  agoal result season
date                                                                   
10/02/12     D1    Wolfsburg       Freiburg      3      2      H  11-12
10/02/12     T1  Trabzonspor  Gaziantepspor      4      1      H  11-12


10/02/13
         league                home                away  hgoal  agoal result  \
date                                                                           
10/02/13    SP1          Ath Bilbao             Espanol      0      4      A   
10/02/13    SP1           Barcelona              Getafe      6      1      H   
10/02/13    SP1           Vallecano          Ath Madrid      2      1      H   
10/02/13    SP1            Zaragoza            Sociedad      1      2      A   
10/02/13     I1            Atalanta             Catania      0      0      D   
10/02/13     I1             Bologna               Siena      1      1      D   
10/02/13     I1            Cagliari               Milan      1      1      D   
10/02/13     I1               Inter              Chievo      3      1      H   
10/02/13     I1             Palermo             Pescara      1      1      D   
10/02/13     I1               Parma               Genoa      0      0      D   
10/02/13     I1           Sampdoria                Roma      3      1      H   
10/02/13     I1             Udinese              Torino      1      0      H   
10/02/13     T1         Galatasaray         Antalyaspor      2      0      H   
10/02/13     T1         Kayserispor            Orduspor      0      0      D   
10/02/13     T1  Mersin Idman Yurdu          Fenerbahce      0      1      A   
10/02/13     T1           Sivasspor         Trabzonspor      2      0      H   
10/02/13     D1            Augsburg               Mainz      1      1      D   
10/02/13     D1            Freiburg  Fortuna Dusseldorf      1      0      H   

         season  
date             
10/02/13  12-13  
10/02/13  12-13  
10/02/13  12-13  
10/02/13  12-13  
10/02/13  12-13  
10/02/13  12-13  
10/02/13  12-13  
10/02/13  12-13  
10/02/13  12-13  
10/02/13  12-13  
10/02/13  12-13  
10/02/13  12-13  
10/02/13  12-13  
10/02/13  12-13  
10/02/13  12-13  
10/02/13  12-13  
10/02/13  12-13  
10/02/13  12-13  


10/02/14
         league            home         away  hgoal  agoal result season
date                                                                    
10/02/14     T1  Genclerbirligi  Karabukspor      1      2      A  13-14
10/02/14    SP1           Celta   Ath Bilbao      0      0      D  13-14


10/02/15
         league              home            away  hgoal  agoal result season
date                                                                         
10/02/15     E2          Barnsley  Fleetwood Town      1      2      A  14-15
10/02/15     E2      Bristol City       Port Vale      3      1      H  14-15
10/02/15     E2      Chesterfield         Preston      0      2      A  14-15
10/02/15     E2          Coventry      Scunthorpe      1      1      D  14-15
10/02/15     E2      Crawley Town       Doncaster      0      5      A  14-15
10/02/15     E2             Crewe          Yeovil      1      0      H  14-15
10/02/15     E2     Leyton Orient    Notts County      0      1      A  14-15
10/02/15     E2            Oldham         Swindon      2      1      H  14-15
10/02/15     E2         Peterboro      Gillingham      1      2      A  14-15
10/02/15     E2  Sheffield United      Colchester      4      1      H  14-15
10/02/15     E2           Walsall        Rochdale      3      2      H  14-15


10/03/12
         league                home              away  hgoal  agoal result  \
date                                                                         
10/03/12    SP1               Betis       Real Madrid      2      3      A   
10/03/12    SP1              Malaga           Levante      1      0      H   
10/03/12    SP1            Sociedad          Zaragoza      3      0      H   
10/03/12    SP1            Sp Gijon           Sevilla      1      0      H   
10/03/12     I1             Palermo              Roma      0      1      A   
10/03/12     D1            Augsburg          Dortmund      0      0      D   
10/03/12     D1       Bayern Munich        Hoffenheim      7      1      H   
10/03/12     D1             FC Koln            Hertha      1      0      H   
10/03/12     D1               Mainz          Nurnberg      2      1      H   
10/03/12     D1          M'gladbach          Freiburg      0      0      D   
10/03/12     D1           Wolfsburg        Leverkusen      3      2      H   
10/03/12     T1          Buyuksehyr       Kayserispor      1      0      H   
10/03/12     T1         Galatasaray    Genclerbirligi      2      0      H   
10/03/12     E2           Brentford  Sheffield United      0      2      A   
10/03/12     E2            Carlisle              Bury      4      1      H   
10/03/12     E2            Charlton      Notts County      2      4      A   
10/03/12     E2        Huddersfield          Rochdale      2      2      D   
10/03/12     E2  Milton Keynes Dons            Exeter      3      0      H   
10/03/12     E2              Oldham            Yeovil      1      2      A   
10/03/12     E2             Preston        Scunthorpe      0      0      D   
10/03/12     E2      Sheffield Weds       Bournemouth      3      0      H   
10/03/12     E2           Stevenage      Chesterfield      2      2      D   
10/03/12     E2            Tranmere     Leyton Orient      2      0      H   
10/03/12     E2             Walsall        Hartlepool      0      0      D   
10/03/12     E2             Wycombe        Colchester      0      0      D   

         season  
date             
10/03/12  11-12  
10/03/12  11-12  
10/03/12  11-12  
10/03/12  11-12  
10/03/12  11-12  
10/03/12  11-12  
10/03/12  11-12  
10/03/12  11-12  
10/03/12  11-12  
10/03/12  11-12  
10/03/12  11-12  
10/03/12  11-12  
10/03/12  11-12  
10/03/12  11-12  
10/03/12  11-12  
10/03/12  11-12  
10/03/12  11-12  
10/03/12  11-12  
10/03/12  11-12  
10/03/12  11-12  
10/03/12  11-12  
10/03/12  11-12  
10/03/12  11-12  
10/03/12  11-12  
10/03/12  11-12  


10/03/13
         league         home           away  hgoal  agoal result season
date                                                                   
10/03/13    SP1   Ath Bilbao       Valencia      1      0      H  12-13
10/03/13    SP1   Ath Madrid       Sociedad      0      1      A  12-13
10/03/13    SP1        Celta    Real Madrid      1      2      A  12-13
10/03/13    SP1      Levante         Getafe      0      0      D  12-13
10/03/13     I1     Atalanta        Pescara      2      1      H  12-13
10/03/13     I1     Cagliari      Sampdoria      3      1      H  12-13
10/03/13     I1       Chievo         Napoli      2      0      H  12-13
10/03/13     I1        Inter        Bologna      0      1      A  12-13
10/03/13     I1     Juventus        Catania      1      0      H  12-13
10/03/13     I1        Lazio     Fiorentina      0      2      A  12-13
10/03/13     I1      Palermo          Siena      1      2      A  12-13
10/03/13     I1        Parma         Torino      4      1      H  12-13
10/03/13     T1   Elazigspor       Orduspor      1      0      H  12-13
10/03/13     T1   Fenerbahce      Bursaspor      4      1      H  12-13
10/03/13     T1  Karabukspor  Eskisehirspor      0      0      D  12-13
10/03/13     T1    Sivasspor    Antalyaspor      2      1      H  12-13
10/03/13     D1     Hannover  Ein Frankfurt      0      0      D  12-13
10/03/13     D1    Stuttgart        Hamburg      0      1      A  12-13


10/03/14
         league         home        away  hgoal  agoal result season
date                                                                
10/03/14     T1  Trabzonspor  Fenerbahce      0      3      A  13-14
10/03/14    SP1      Osasuna      Malaga      0      2      A  13-14
10/03/14    SP1     Sociedad   Vallecano      2      3      A  13-14


10/03/15
         league      home          away  hgoal  agoal result season
date                                                               
10/03/15     E2  Coventry      Bradford      1      1      D  14-15
10/03/15     E2    Yeovil  Bristol City      0      3      A  14-15


10/04/12
         league           home              away  hgoal  agoal result season
date                                                                        
10/04/12    SP1        Osasuna           Espanol      2      0      H  11-12
10/04/12    SP1       Sociedad             Betis      1      1      D  11-12
10/04/12     D1       Augsburg         Stuttgart      1      3      A  11-12
10/04/12     D1         Hertha          Freiburg      1      2      A  11-12
10/04/12     D1          Mainz           FC Koln      4      0      H  11-12
10/04/12     D1  Werder Bremen        M'gladbach      2      2      D  11-12
10/04/12     E2       Rochdale  Sheffield United      2      5      A  11-12


10/04/13
         league   home       away  hgoal  agoal result season
date                                                         
10/04/13     E2  Crewe  Brentford      0      2      A  12-13


10/04/15
         league      home    away  hgoal  agoal result season
date                                                         
10/04/15     D1  Hannover  Hertha      1      1      D  14-15


10/04/16
         league                home            away  hgoal  agoal result  \
date                                                                       
10/04/16     T1           Konyaspor      Fenerbahce      2      1      H   
10/04/16     T1  Mersin Idman Yurdu  Genclerbirligi      1      3      A   
10/04/16     T1         Trabzonspor      Buyuksehyr      1      1      D   
10/04/16     D1             FC Koln      Leverkusen      0      2      A   
10/04/16     D1          Schalke 04        Dortmund      2      2      D   
10/04/16     I1              Empoli      Fiorentina      2      0      H   
10/04/16     I1              Napoli          Verona      3      0      H   
10/04/16     I1             Palermo           Lazio      0      3      A   
10/04/16     I1           Sampdoria         Udinese      2      0      H   
10/04/16     I1              Torino        Atalanta      2      1      H   
10/04/16    SP1          Ath Bilbao       Vallecano      1      0      H   
10/04/16    SP1            Sp Gijon           Celta      0      1      A   
10/04/16    SP1            Valencia         Sevilla      2      1      H   
10/04/16    SP1          Villarreal          Getafe      2      0      H   

         season  
date             
10/04/16  15-16  
10/04/16  15-16  
10/04/16  15-16  
10/04/16  15-16  
10/04/16  15-16  
10/04/16  15-16  
10/04/16  15-16  
10/04/16  15-16  
10/04/16  15-16  
10/04/16  15-16  
10/04/16  15-16  
10/04/16  15-16  
10/04/16  15-16  
10/04/16  15-16  


10/05/13
         league           home         away  hgoal  agoal result season
date                                                                   
10/05/13    SP1        Levante     Zaragoza      0      0      D  12-13
10/05/13     T1  Gaziantepspor   Elazigspor      1      1      D  12-13
10/05/13     T1      Kasimpasa  Kayserispor      1      2      A  12-13


10/05/14
         league            home           away  hgoal  agoal result season
date                                                                      
10/05/14     D1        Augsburg  Ein Frankfurt      2      1      H  13-14
10/05/14     D1   Bayern Munich      Stuttgart      1      0      H  13-14
10/05/14     D1        Hannover       Freiburg      3      2      H  13-14
10/05/14     D1          Hertha       Dortmund      0      4      A  13-14
10/05/14     D1      Hoffenheim   Braunschweig      3      1      H  13-14
10/05/14     D1      Leverkusen  Werder Bremen      2      1      H  13-14
10/05/14     D1           Mainz        Hamburg      3      2      H  13-14
10/05/14     D1      Schalke 04       Nurnberg      4      1      H  13-14
10/05/14     D1       Wolfsburg     M'gladbach      3      1      H  13-14
10/05/14     T1  Genclerbirligi    Antalyaspor      1      2      A  13-14
10/05/14    SP1         Levante       Valencia      2      0      H  13-14
10/05/14    SP1      Villarreal      Vallecano      4      0      H  13-14
10/05/14     I1           Inter          Lazio      4      1      H  13-14
10/05/14     I1          Verona        Udinese      2      2      D  13-14


10/05/15
         league        home           away  hgoal  agoal result season
date                                                                  
10/05/15     D1     FC Koln     Schalke 04      2      0      H  14-15
10/05/15     D1   Paderborn      Wolfsburg      1      3      A  14-15
10/05/15     I1      Cesena       Sassuolo      2      3      A  14-15
10/05/15     I1      Chievo         Verona      2      2      D  14-15
10/05/15     I1      Empoli     Fiorentina      2      3      A  14-15
10/05/15     I1       Lazio          Inter      1      2      A  14-15
10/05/15     I1     Palermo       Atalanta      2      3      A  14-15
10/05/15     I1       Parma         Napoli      2      2      D  14-15
10/05/15     I1     Udinese      Sampdoria      1      4      A  14-15
10/05/15     T1    Besiktas  Gaziantepspor      1      1      D  14-15
10/05/15     T1    Rizespor    Trabzonspor      0      2      A  14-15
10/05/15    SP1     Almeria         Malaga      1      2      A  14-15
10/05/15    SP1       Celta        Sevilla      1      1      D  14-15
10/05/15    SP1     Levante     Ath Madrid      2      2      D  14-15
10/05/15    SP1  Villarreal          Elche      1      0      H  14-15


10/08/13
         league                home              away  hgoal  agoal result  \
date                                                                         
10/08/13     D1            Augsburg          Dortmund      0      4      A   
10/08/13     D1        Braunschweig     Werder Bremen      0      1      A   
10/08/13     D1            Hannover         Wolfsburg      2      0      H   
10/08/13     D1              Hertha     Ein Frankfurt      6      1      H   
10/08/13     D1          Hoffenheim          Nurnberg      2      2      D   
10/08/13     D1          Leverkusen          Freiburg      3      1      H   
10/08/13     E2            Bradford          Carlisle      4      0      H   
10/08/13     E2           Brentford  Sheffield United      3      1      H   
10/08/13     E2          Colchester         Port Vale      1      0      H   
10/08/13     E2       Leyton Orient        Shrewsbury      3      0      H   
10/08/13     E2  Milton Keynes Dons             Crewe      1      0      H   
10/08/13     E2        Notts County         Peterboro      2      4      A   
10/08/13     E2              Oldham           Walsall      0      1      A   
10/08/13     E2           Rotherham           Preston      0      0      D   
10/08/13     E2             Swindon         Stevenage      1      0      H   
10/08/13     E2            Tranmere      Crawley Town      3      3      D   
10/08/13     E2              Wolves        Gillingham      4      0      H   

         season  
date             
10/08/13  13-14  
10/08/13  13-14  
10/08/13  13-14  
10/08/13  13-14  
10/08/13  13-14  
10/08/13  13-14  
10/08/13  13-14  
10/08/13  13-14  
10/08/13  13-14  
10/08/13  13-14  
10/08/13  13-14  
10/08/13  13-14  
10/08/13  13-14  
10/08/13  13-14  
10/08/13  13-14  
10/08/13  13-14  
10/08/13  13-14  


10/09/11
         league            home                away  hgoal  agoal result  \
date                                                                       
10/09/11    SP1     Real Madrid              Getafe      4      2      H   
10/09/11    SP1        Sociedad           Barcelona      2      2      D   
10/09/11    SP1        Valencia          Ath Madrid      1      0      H   
10/09/11    SP1      Villarreal             Sevilla      2      2      D   
10/09/11     I1          Cesena              Napoli      1      3      A   
10/09/11     D1   Bayern Munich            Freiburg      7      0      H   
10/09/11     D1        Dortmund              Hertha      1      2      A   
10/09/11     D1           Mainz          Hoffenheim      0      4      A   
10/09/11     D1      M'gladbach      Kaiserslautern      1      0      H   
10/09/11     D1       Stuttgart            Hannover      3      0      H   
10/09/11     D1   Werder Bremen             Hamburg      2      0      H   
10/09/11     T1      Ankaragucu  Mersin Idman Yurdu      1      2      A   
10/09/11     T1   Eskisehirspor            Besiktas      2      1      H   
10/09/11     T1      Manisaspor         Trabzonspor      1      1      D   
10/09/11     T1      Samsunspor      Genclerbirligi      3      2      H   
10/09/11     E2     Bournemouth        Chesterfield      0      3      A   
10/09/11     E2            Bury            Rochdale      2      4      A   
10/09/11     E2        Carlisle          Hartlepool      1      2      A   
10/09/11     E2        Charlton              Exeter      2      0      H   
10/09/11     E2      Colchester       Leyton Orient      1      1      D   
10/09/11     E2    Huddersfield            Tranmere      2      0      H   
10/09/11     E2    Notts County             Walsall      2      1      H   
10/09/11     E2          Oldham           Stevenage      1      1      D   
10/09/11     E2      Scunthorpe    Sheffield United      1      1      D   
10/09/11     E2  Sheffield Weds  Milton Keynes Dons      3      1      H   
10/09/11     E2         Wycombe           Brentford      0      1      A   

         season  
date             
10/09/11  11-12  
10/09/11  11-12  
10/09/11  11-12  
10/09/11  11-12  
10/09/11  11-12  
10/09/11  11-12  
10/09/11  11-12  
10/09/11  11-12  
10/09/11  11-12  
10/09/11  11-12  
10/09/11  11-12  
10/09/11  11-12  
10/09/11  11-12  
10/09/11  11-12  
10/09/11  11-12  
10/09/11  11-12  
10/09/11  11-12  
10/09/11  11-12  
10/09/11  11-12  
10/09/11  11-12  
10/09/11  11-12  
10/09/11  11-12  
10/09/11  11-12  
10/09/11  11-12  
10/09/11  11-12  
10/09/11  11-12  


10/10/11
         league    home                away  hgoal  agoal result season
date                                                                   
10/10/11     E2  Oldham  Milton Keynes Dons      2      1      H  11-12


10/10/15
         league              home        away  hgoal  agoal result season
date                                                                     
10/10/15     E2          Barnsley       Crewe      1      2      A  15-16
10/10/15     E2              Bury       Wigan      2      2      D  15-16
10/10/15     E2      Chesterfield  Gillingham      1      3      A  15-16
10/10/15     E2    Fleetwood Town    Coventry      0      1      A  15-16
10/10/15     E2            Oldham  Scunthorpe      2      4      A  15-16
10/10/15     E2  Sheffield United    Rochdale      3      2      H  15-16
10/10/15     E2        Shrewsbury  Colchester      4      2      H  15-16
10/10/15     E2          Southend   Port Vale      1      0      H  15-16
10/10/15     E2           Swindon   Peterboro      1      2      A  15-16
10/10/15     E2           Walsall      Burton      2      0      H  15-16


10/11/12
         league                home                  away  hgoal  agoal  \
date                                                                      
10/11/12    SP1             Espanol               Osasuna      0      3   
10/11/12    SP1              Malaga              Sociedad      1      2   
10/11/12    SP1           Vallecano                 Celta      3      2   
10/11/12    SP1            Zaragoza             La Coruna      5      3   
10/11/12     I1            Cagliari               Catania      0      0   
10/11/12     I1             Pescara              Juventus      1      6   
10/11/12     T1         Karabukspor            Buyuksehyr      3      1   
10/11/12     T1           Kasimpasa           Antalyaspor      1      1   
10/11/12     T1         Trabzonspor  Akhisar Belediyespor      3      1   
10/11/12     E2           Brentford              Carlisle      2      1   
10/11/12     E2                Bury            Portsmouth      2      0   
10/11/12     E2            Coventry            Scunthorpe      1      2   
10/11/12     E2               Crewe            Colchester      3      2   
10/11/12     E2           Doncaster           Bournemouth      0      1   
10/11/12     E2       Leyton Orient            Shrewsbury      2      1   
10/11/12     E2  Milton Keynes Dons      Sheffield United      1      0   
10/11/12     E2        Notts County          Crawley Town      1      1   
10/11/12     E2              Oldham              Tranmere      0      1   
10/11/12     E2           Stevenage               Preston      1      4   
10/11/12     E2             Walsall               Swindon      0      2   
10/11/12     E2              Yeovil            Hartlepool      1      0   
10/11/12     D1            Augsburg              Dortmund      1      3   
10/11/12     D1       Bayern Munich         Ein Frankfurt      2      0   
10/11/12     D1  Fortuna Dusseldorf            Hoffenheim      1      1   
10/11/12     D1            Freiburg               Hamburg      0      0   
10/11/12     D1          Schalke 04         Werder Bremen      2      1   

         result season  
date                    
10/11/12      A  12-13  
10/11/12      A  12-13  
10/11/12      H  12-13  
10/11/12      H  12-13  
10/11/12      D  12-13  
10/11/12      A  12-13  
10/11/12      H  12-13  
10/11/12      D  12-13  
10/11/12      H  12-13  
10/11/12      H  12-13  
10/11/12      H  12-13  
10/11/12      A  12-13  
10/11/12      H  12-13  
10/11/12      A  12-13  
10/11/12      H  12-13  
10/11/12      H  12-13  
10/11/12      D  12-13  
10/11/12      A  12-13  
10/11/12      A  12-13  
10/11/12      A  12-13  
10/11/12      H  12-13  
10/11/12      A  12-13  
10/11/12      H  12-13  
10/11/12      D  12-13  
10/11/12      D  12-13  
10/11/12      H  12-13  


10/11/13
         league            home           away  hgoal  agoal result season
date                                                                      
10/11/13     D1        Freiburg      Stuttgart      1      3      A  13-14
10/11/13     D1           Mainz  Ein Frankfurt      1      0      H  13-14
10/11/13     T1      Fenerbahce    Galatasaray      2      0      H  13-14
10/11/13     T1  Genclerbirligi    Trabzonspor      3      2      H  13-14
10/11/13     T1       Konyaspor    Antalyaspor      2      0      H  13-14
10/11/13    SP1           Betis      Barcelona      1      4      A  13-14
10/11/13    SP1         Espanol        Sevilla      1      3      A  13-14
10/11/13    SP1        Valencia     Valladolid      2      2      D  13-14
10/11/13    SP1      Villarreal     Ath Madrid      1      1      D  13-14
10/11/13     I1        Atalanta        Bologna      2      1      H  13-14
10/11/13     I1        Cagliari         Torino      2      1      H  13-14
10/11/13     I1          Chievo          Milan      0      0      D  13-14
10/11/13     I1      Fiorentina      Sampdoria      2      1      H  13-14
10/11/13     I1           Genoa         Verona      2      0      H  13-14
10/11/13     I1        Juventus         Napoli      3      0      H  13-14
10/11/13     I1           Parma          Lazio      1      1      D  13-14
10/11/13     I1            Roma       Sassuolo      1      1      D  13-14


10/12/11
         league              home                away  hgoal  agoal result  \
date                                                                         
10/12/11    SP1             Betis            Valencia      2      1      H   
10/12/11    SP1           Levante             Sevilla      1      0      H   
10/12/11    SP1       Real Madrid           Barcelona      1      3      A   
10/12/11     I1             Inter          Fiorentina      2      0      H   
10/12/11     I1             Lecce               Lazio      2      3      A   
10/12/11     I1           Palermo              Cesena      0      1      A   
10/12/11     I1             Siena               Genoa      0      2      A   
10/12/11     D1          Augsburg          M'gladbach      1      0      H   
10/12/11     D1           FC Koln            Freiburg      4      0      H   
10/12/11     D1          Hannover          Leverkusen      0      0      D   
10/12/11     D1             Mainz             Hamburg      0      0      D   
10/12/11     D1          Nurnberg          Hoffenheim      0      2      A   
10/12/11     D1     Werder Bremen           Wolfsburg      4      1      H   
10/12/11     T1     Gaziantepspor       Eskisehirspor      0      1      A   
10/12/11     E2         Brentford          Hartlepool      2      1      H   
10/12/11     E2        Colchester                Bury      4      1      H   
10/12/11     E2      Huddersfield         Bournemouth      0      1      A   
10/12/11     E2     Leyton Orient              Exeter      3      0      H   
10/12/11     E2            Oldham      Sheffield Weds      0      2      A   
10/12/11     E2           Preston           Stevenage      0      0      D   
10/12/11     E2        Scunthorpe            Carlisle      1      2      A   
10/12/11     E2  Sheffield United            Rochdale      3      0      H   
10/12/11     E2          Tranmere  Milton Keynes Dons      0      2      A   
10/12/11     E2           Walsall            Charlton      1      1      D   
10/12/11     E2           Wycombe        Chesterfield      3      2      H   
10/12/11     E2            Yeovil        Notts County      1      0      H   

         season  
date             
10/12/11  11-12  
10/12/11  11-12  
10/12/11  11-12  
10/12/11  11-12  
10/12/11  11-12  
10/12/11  11-12  
10/12/11  11-12  
10/12/11  11-12  
10/12/11  11-12  
10/12/11  11-12  
10/12/11  11-12  
10/12/11  11-12  
10/12/11  11-12  
10/12/11  11-12  
10/12/11  11-12  
10/12/11  11-12  
10/12/11  11-12  
10/12/11  11-12  
10/12/11  11-12  
10/12/11  11-12  
10/12/11  11-12  
10/12/11  11-12  
10/12/11  11-12  
10/12/11  11-12  
10/12/11  11-12  
10/12/11  11-12  


10/12/12
         league       home      away  hgoal  agoal result season
date                                                            
10/12/12    SP1  Vallecano  Zaragoza      0      2      A  12-13
10/12/12     I1    Bologna     Lazio      0      0      D  12-13
10/12/12     I1  Sampdoria   Udinese      0      2      A  12-13


11/01/13
         league        home       away  hgoal  agoal result season
date                                                              
11/01/13    SP1  Ath Bilbao  Vallecano      1      2      A  12-13


11/01/14
         league                home              away  hgoal  agoal result  \
date                                                                         
11/01/14     E2            Bradford      Bristol City      1      1      D   
11/01/14     E2           Brentford         Port Vale      2      0      H   
11/01/14     E2          Colchester        Gillingham      3      0      H   
11/01/14     E2       Leyton Orient          Carlisle      4      0      H   
11/01/14     E2  Milton Keynes Dons        Shrewsbury      3      2      H   
11/01/14     E2        Notts County  Sheffield United      2      1      H   
11/01/14     E2              Oldham         Stevenage      1      0      H   
11/01/14     E2           Rotherham             Crewe      4      2      H   
11/01/14     E2             Swindon         Peterboro      2      1      H   
11/01/14     E2            Tranmere           Walsall      1      1      D   
11/01/14     E2              Wolves           Preston      2      0      H   
11/01/14    SP1          Ath Bilbao           Almeria      6      1      H   
11/01/14    SP1          Ath Madrid         Barcelona      0      0      D   
11/01/14    SP1               Celta          Valencia      2      1      H   
11/01/14    SP1               Elche           Sevilla      1      1      D   
11/01/14     I1             Bologna             Lazio      0      0      D   
11/01/14     I1             Livorno             Parma      0      3      A   

         season  
date             
11/01/14  13-14  
11/01/14  13-14  
11/01/14  13-14  
11/01/14  13-14  
11/01/14  13-14  
11/01/14  13-14  
11/01/14  13-14  
11/01/14  13-14  
11/01/14  13-14  
11/01/14  13-14  
11/01/14  13-14  
11/01/14  13-14  
11/01/14  13-14  
11/01/14  13-14  
11/01/14  13-14  
11/01/14  13-14  
11/01/14  13-14  


11/01/15
         league        home        away  hgoal  agoal result season
date                                                               
11/01/15     I1    Atalanta      Chievo      1      1      D  14-15
11/01/15     I1    Cagliari      Cesena      2      1      H  14-15
11/01/15     I1  Fiorentina     Palermo      4      3      H  14-15
11/01/15     I1       Inter       Genoa      3      1      H  14-15
11/01/15     I1      Napoli    Juventus      1      3      A  14-15
11/01/15     I1        Roma       Lazio      2      2      D  14-15
11/01/15     I1   Sampdoria      Empoli      1      0      H  14-15
11/01/15     I1      Verona       Parma      3      1      H  14-15
11/01/15    SP1     Almeria     Sevilla      0      2      A  14-15
11/01/15    SP1  Ath Bilbao       Elche      1      2      A  14-15
11/01/15    SP1   Barcelona  Ath Madrid      3      1      H  14-15
11/01/15    SP1     Granada    Sociedad      1      1      D  14-15


11/02/12
         league              home                away  hgoal  agoal result  \
date                                                                         
11/02/12    SP1             Betis          Ath Bilbao      2      1      H   
11/02/12    SP1           Osasuna           Barcelona      3      2      H   
11/02/12    SP1         Santander          Ath Madrid      0      0      D   
11/02/12     I1          Cagliari             Palermo      2      1      H   
11/02/12     I1           Udinese               Milan      1      2      A   
11/02/12     D1     Bayern Munich      Kaiserslautern      2      0      H   
11/02/12     D1          Dortmund          Leverkusen      1      0      H   
11/02/12     D1             Mainz            Hannover      1      1      D   
11/02/12     D1        M'gladbach          Schalke 04      3      0      H   
11/02/12     D1         Stuttgart              Hertha      5      0      H   
11/02/12     D1     Werder Bremen          Hoffenheim      1      1      D   
11/02/12     T1       Galatasaray         Kayserispor      1      0      H   
11/02/12     T1    Genclerbirligi  Mersin Idman Yurdu      1      2      A   
11/02/12     E2            Exeter      Sheffield Weds      2      1      H   
11/02/12     E2        Hartlepool         Bournemouth      0      0      D   
11/02/12     E2  Sheffield United             Wycombe      3      0      H   

         season  
date             
11/02/12  11-12  
11/02/12  11-12  
11/02/12  11-12  
11/02/12  11-12  
11/02/12  11-12  
11/02/12  11-12  
11/02/12  11-12  
11/02/12  11-12  
11/02/12  11-12  
11/02/12  11-12  
11/02/12  11-12  
11/02/12  11-12  
11/02/12  11-12  
11/02/12  11-12  
11/02/12  11-12  
11/02/12  11-12  


11/02/13
         league           home        away  hgoal  agoal result season
date                                                                  
11/02/13    SP1          Betis  Valladolid      0      0      D  12-13
11/02/13     T1  Gaziantepspor   Kasimpasa      2      1      H  12-13


11/02/14
         league           home          away  hgoal  agoal result season
date                                                                    
11/02/14     T1      Kasimpasa      Besiktas      0      3      A  13-14
11/02/14     E2       Carlisle      Bradford      1      0      H  13-14
11/02/14     E2  Leyton Orient  Bristol City      1      3      A  13-14
11/02/14     E2      Port Vale    Colchester      2      0      H  13-14


11/02/15
         league   home    away  hgoal  agoal result season
date                                                      
11/02/15     I1  Parma  Chievo      0      1      A  14-15


11/02/16
         league   home    away  hgoal  agoal result season
date                                                      
11/02/16     I1  Lazio  Verona      5      2      H  15-16


11/03/12
         league           home                away  hgoal  agoal result season
date                                                                          
11/03/12    SP1     Ath Madrid             Granada      2      0      H  11-12
11/03/12    SP1        Espanol           Vallecano      5      1      H  11-12
11/03/12    SP1        Osasuna          Ath Bilbao      2      1      H  11-12
11/03/12    SP1      Santander           Barcelona      0      2      A  11-12
11/03/12    SP1       Valencia            Mallorca      2      2      D  11-12
11/03/12     I1       Atalanta               Parma      1      1      D  11-12
11/03/12     I1        Catania          Fiorentina      1      0      H  11-12
11/03/12     I1         Cesena               Siena      0      2      A  11-12
11/03/12     I1          Genoa            Juventus      0      0      D  11-12
11/03/12     I1          Lazio             Bologna      1      3      A  11-12
11/03/12     I1          Milan               Lecce      2      0      H  11-12
11/03/12     I1         Novara             Udinese      1      0      H  11-12
11/03/12     D1     Schalke 04             Hamburg      3      1      H  11-12
11/03/12     D1  Werder Bremen            Hannover      3      0      H  11-12
11/03/12     T1  Eskisehirspor           Bursaspor      1      1      D  11-12
11/03/12     T1    Karabukspor         Antalyaspor      2      1      H  11-12
11/03/12     T1     Manisaspor  Mersin Idman Yurdu      2      0      H  11-12
11/03/12     T1       Orduspor            Besiktas      1      1      D  11-12
11/03/12     T1     Samsunspor       Gaziantepspor      0      0      D  11-12


11/03/13
         league                home       away  hgoal  agoal result season
date                                                                      
11/03/13    SP1            Zaragoza    Granada      0      0      D  12-13
11/03/13     T1  Mersin Idman Yurdu  Kasimpasa      1      1      D  12-13


11/03/14
         league          home                away  hgoal  agoal result season
date                                                                         
11/03/14     E2     Brentford            Tranmere      2      0      H  13-14
11/03/14     E2    Colchester            Bradford      0      2      A  13-14
11/03/14     E2    Gillingham            Coventry      4      2      H  13-14
11/03/14     E2  Notts County  Milton Keynes Dons      1      3      A  13-14
11/03/14     E2        Oldham           Rotherham      0      2      A  13-14
11/03/14     E2     Peterboro        Bristol City      1      2      A  13-14
11/03/14     E2     Port Vale       Leyton Orient      0      2      A  13-14
11/03/14     E2    Shrewsbury        Crawley Town      1      1      D  13-14
11/03/14     E2     Stevenage             Preston      1      1      D  13-14
11/03/14     E2       Swindon              Wolves      1      4      A  13-14
11/03/14     E2       Walsall               Crewe      1      1      D  13-14


11/03/16
         league         home                away  hgoal  agoal result season
date                                                                        
11/03/16     T1  Trabzonspor  Mersin Idman Yurdu      1      0      H  15-16
11/03/16     D1       Hertha          Schalke 04      2      0      H  15-16
11/03/16     I1     Juventus            Sassuolo      1      0      H  15-16
11/03/16    SP1       Malaga            Sp Gijon      1      0      H  15-16


11/04/12
         league        home            away  hgoal  agoal result season
date                                                                   
11/04/12    SP1  Ath Madrid     Real Madrid      1      4      A  11-12
11/04/12    SP1     Granada      Ath Bilbao      2      2      D  11-12
11/04/12    SP1    Sp Gijon         Levante      3      2      H  11-12
11/04/12    SP1    Valencia       Vallecano      4      1      H  11-12
11/04/12     I1     Catania           Lecce      1      2      A  11-12
11/04/12     I1  Fiorentina         Palermo      0      0      D  11-12
11/04/12     I1       Genoa          Cesena      1      1      D  11-12
11/04/12     I1       Inter           Siena      2      1      H  11-12
11/04/12     I1    Juventus           Lazio      2      1      H  11-12
11/04/12     I1      Napoli        Atalanta      1      3      A  11-12
11/04/12     I1       Parma          Novara      2      0      H  11-12
11/04/12     I1        Roma         Udinese      3      1      H  11-12
11/04/12     D1    Dortmund   Bayern Munich      1      0      H  11-12
11/04/12     D1    Hannover       Wolfsburg      2      0      H  11-12
11/04/12     D1  Hoffenheim         Hamburg      4      0      H  11-12
11/04/12     D1  Leverkusen  Kaiserslautern      3      1      H  11-12
11/04/12     D1    Nurnberg      Schalke 04      4      1      H  11-12


11/04/14
         league        home           away  hgoal  agoal result season
date                                                                  
11/04/14     D1  Schalke 04  Ein Frankfurt      2      0      H  13-14
11/04/14     T1   Konyaspor       Besiktas      1      1      D  13-14
11/04/14     E2   Rotherham       Bradford      0      0      D  13-14
11/04/14    SP1     Osasuna     Valladolid      0      0      D  13-14


11/04/15
         league           home                away  hgoal  agoal result season
date                                                                          
11/04/15     D1  Bayern Munich       Ein Frankfurt      3      0      H  14-15
11/04/15     D1        Hamburg           Wolfsburg      0      2      A  14-15
11/04/15     D1          Mainz          Leverkusen      2      3      A  14-15
11/04/15     D1     M'gladbach            Dortmund      3      1      H  14-15
11/04/15     D1      Paderborn            Augsburg      2      1      H  14-15
11/04/15     D1     Schalke 04            Freiburg      0      0      D  14-15
11/04/15     I1          Genoa            Cagliari      2      0      H  14-15
11/04/15     I1          Parma            Juventus      1      0      H  14-15
11/04/15     I1         Verona               Inter      0      3      A  14-15
11/04/15     E2       Barnsley        Chesterfield      1      1      D  14-15
11/04/15     E2       Coventry          Colchester      1      0      H  14-15
11/04/15     E2          Crewe       Leyton Orient      1      1      D  14-15
11/04/15     E2      Doncaster            Rochdale      1      1      D  14-15
11/04/15     E2     Gillingham            Bradford      1      0      H  14-15
11/04/15     E2         Oldham    Sheffield United      2      2      D  14-15
11/04/15     E2      Port Vale  Milton Keynes Dons      0      0      D  14-15
11/04/15     E2        Preston        Bristol City      1      1      D  14-15
11/04/15     E2     Scunthorpe        Crawley Town      2      1      H  14-15
11/04/15     E2        Swindon           Peterboro      1      0      H  14-15
11/04/15     E2        Walsall      Fleetwood Town      1      0      H  14-15
11/04/15     E2         Yeovil        Notts County      1      1      D  14-15
11/04/15    SP1        Almeria             Granada      3      0      H  14-15
11/04/15    SP1          Celta           Vallecano      6      1      H  14-15
11/04/15    SP1         Malaga          Ath Madrid      2      2      D  14-15
11/04/15    SP1    Real Madrid               Eibar      3      0      H  14-15
11/04/15    SP1        Sevilla           Barcelona      2      2      D  14-15


11/04/16
         league                  home        away  hgoal  agoal result season
date                                                                         
11/04/16     T1  Akhisar Belediyespor   Kasimpasa      0      1      A  15-16
11/04/16     T1              Besiktas   Bursaspor      3      2      H  15-16
11/04/16     I1                  Roma     Bologna      1      1      D  15-16
11/04/16    SP1             La Coruna  Las Palmas      1      3      A  15-16


11/05/13
         league                home            away  hgoal  agoal result  \
date                                                                       
11/05/13    SP1          Ath Bilbao        Mallorca      2      1      H   
11/05/13    SP1             Espanol     Real Madrid      1      1      D   
11/05/13    SP1             Osasuna          Getafe      1      0      H   
11/05/13    SP1          Valladolid       La Coruna      1      0      H   
11/05/13     I1             Catania         Pescara      1      0      H   
11/05/13     I1            Juventus        Cagliari      1      1      D   
11/05/13     T1         Antalyaspor        Orduspor      1      0      H   
11/05/13     T1            Besiktas  Genclerbirligi      3      0      H   
11/05/13     D1       Bayern Munich        Augsburg      3      0      H   
11/05/13     D1  Fortuna Dusseldorf        Nurnberg      1      2      A   
11/05/13     D1      Greuther Furth        Freiburg      1      2      A   
11/05/13     D1          Hoffenheim         Hamburg      1      4      A   
11/05/13     D1          Leverkusen        Hannover      3      1      H   
11/05/13     D1               Mainz      M'gladbach      2      4      A   
11/05/13     D1          Schalke 04       Stuttgart      1      2      A   
11/05/13     D1       Werder Bremen   Ein Frankfurt      1      1      D   
11/05/13     D1           Wolfsburg        Dortmund      3      3      D   

         season  
date             
11/05/13  12-13  
11/05/13  12-13  
11/05/13  12-13  
11/05/13  12-13  
11/05/13  12-13  
11/05/13  12-13  
11/05/13  12-13  
11/05/13  12-13  
11/05/13  12-13  
11/05/13  12-13  
11/05/13  12-13  
11/05/13  12-13  
11/05/13  12-13  
11/05/13  12-13  
11/05/13  12-13  
11/05/13  12-13  
11/05/13  12-13  


11/05/14
         league           home                  away  hgoal  agoal result  \
date                                                                        
11/05/14     T1     Elazigspor              Besiktas      0      1      A   
11/05/14     T1    Erciyesspor             Bursaspor      1      1      D   
11/05/14     T1  Gaziantepspor         Eskisehirspor      1      1      D   
11/05/14     T1      Kasimpasa              Rizespor      1      1      D   
11/05/14     T1      Konyaspor           Kayserispor      3      0      H   
11/05/14     T1      Sivasspor  Akhisar Belediyespor      3      1      H   
11/05/14     T1    Trabzonspor           Galatasaray      1      4      A   
11/05/14    SP1     Ath Bilbao              Sociedad      1      1      D   
11/05/14    SP1     Ath Madrid                Malaga      1      1      D   
11/05/14    SP1          Betis            Valladolid      4      3      H   
11/05/14    SP1          Celta           Real Madrid      2      0      H   
11/05/14    SP1          Elche             Barcelona      0      0      D   
11/05/14    SP1        Espanol               Osasuna      1      1      D   
11/05/14    SP1         Getafe               Sevilla      1      0      H   
11/05/14    SP1        Granada               Almeria      0      2      A   
11/05/14     I1       Atalanta                 Milan      2      1      H   
11/05/14     I1        Bologna               Catania      1      2      A   
11/05/14     I1       Cagliari                Chievo      0      1      A   
11/05/14     I1        Livorno            Fiorentina      0      1      A   
11/05/14     I1           Roma              Juventus      0      1      A   
11/05/14     I1      Sampdoria                Napoli      2      5      A   
11/05/14     I1       Sassuolo                 Genoa      4      2      H   
11/05/14     I1         Torino                 Parma      1      1      D   

         season  
date             
11/05/14  13-14  
11/05/14  13-14  
11/05/14  13-14  
11/05/14  13-14  
11/05/14  13-14  
11/05/14  13-14  
11/05/14  13-14  
11/05/14  13-14  
11/05/14  13-14  
11/05/14  13-14  
11/05/14  13-14  
11/05/14  13-14  
11/05/14  13-14  
11/05/14  13-14  
11/05/14  13-14  
11/05/14  13-14  
11/05/14  13-14  
11/05/14  13-14  
11/05/14  13-14  
11/05/14  13-14  
11/05/14  13-14  
11/05/14  13-14  
11/05/14  13-14  


11/05/15
         league       home    away  hgoal  agoal result season
date                                                          
11/05/15     I1      Genoa  Torino      5      1      H  14-15
11/05/15    SP1  Vallecano  Getafe      2      0      H  14-15


11/08/13
         league        home          away  hgoal  agoal result season
date                                                                 
11/08/13     D1       Mainz     Stuttgart      3      2      H  13-14
11/08/13     D1  Schalke 04       Hamburg      3      3      D  13-14
11/08/13     E2    Coventry  Bristol City      5      4      H  13-14


11/09/11
         league         home           away  hgoal  agoal result season
date                                                                   
11/09/11    SP1        Betis       Mallorca      1      0      H  11-12
11/09/11    SP1      Espanol     Ath Bilbao      2      1      H  11-12
11/09/11    SP1      Osasuna       Sp Gijon      2      1      H  11-12
11/09/11    SP1    Santander        Levante      0      0      D  11-12
11/09/11    SP1    Vallecano       Zaragoza      0      0      D  11-12
11/09/11     I1      Catania          Siena      0      0      D  11-12
11/09/11     I1       Chievo         Novara      2      2      D  11-12
11/09/11     I1   Fiorentina        Bologna      2      0      H  11-12
11/09/11     I1        Genoa       Atalanta      2      2      D  11-12
11/09/11     I1     Juventus          Parma      4      1      H  11-12
11/09/11     I1        Lecce        Udinese      0      2      A  11-12
11/09/11     I1      Palermo          Inter      4      3      H  11-12
11/09/11     I1         Roma       Cagliari      1      2      A  11-12
11/09/11     D1      FC Koln       Nurnberg      1      2      A  11-12
11/09/11     D1    Wolfsburg     Schalke 04      2      1      H  11-12
11/09/11     T1  Antalyaspor  Gaziantepspor      1      0      H  11-12
11/09/11     T1    Bursaspor    Kayserispor      3      0      H  11-12
11/09/11     T1   Buyuksehyr    Galatasaray      2      0      H  11-12
11/09/11     T1  Karabukspor      Sivasspor      2      1      H  11-12


11/09/15
         league        home     away  hgoal  agoal result season
date                                                            
11/09/15     D1  M'gladbach  Hamburg      0      3      A  15-16
11/09/15    SP1     Levante  Sevilla      1      1      D  15-16


11/10/14
         league              home            away  hgoal  agoal result season
date                                                                         
11/10/14     E2      Bristol City    Chesterfield      3      2      H  14-15
11/10/14     E2        Colchester  Fleetwood Town      2      1      H  14-15
11/10/14     E2      Crawley Town       Peterboro      1      4      A  14-15
11/10/14     E2             Crewe        Coventry      2      1      H  14-15
11/10/14     E2        Gillingham      Scunthorpe      0      3      A  14-15
11/10/14     E2            Oldham         Walsall      2      1      H  14-15
11/10/14     E2         Port Vale          Yeovil      4      1      H  14-15
11/10/14     E2  Sheffield United   Leyton Orient      2      2      D  14-15


11/11/12
         league                home            away  hgoal  agoal result  \
date                                                                       
11/11/12    SP1          Ath Bilbao         Sevilla      2      1      H   
11/11/12    SP1          Ath Madrid          Getafe      2      0      H   
11/11/12    SP1             Levante     Real Madrid      1      2      A   
11/11/12    SP1            Mallorca       Barcelona      2      4      A   
11/11/12    SP1          Valladolid        Valencia      1      1      D   
11/11/12     I1            Atalanta           Inter      3      2      H   
11/11/12     I1              Chievo         Udinese      2      2      D   
11/11/12     I1               Genoa          Napoli      2      4      A   
11/11/12     I1               Lazio            Roma      3      2      H   
11/11/12     I1               Milan      Fiorentina      1      3      A   
11/11/12     I1             Palermo       Sampdoria      2      0      H   
11/11/12     I1               Parma           Siena      0      0      D   
11/11/12     I1              Torino         Bologna      1      0      H   
11/11/12     T1          Elazigspor     Kayserispor      0      4      A   
11/11/12     T1          Fenerbahce        Orduspor      2      1      H   
11/11/12     T1       Gaziantepspor  Genclerbirligi      2      3      A   
11/11/12     T1  Mersin Idman Yurdu     Galatasaray      1      1      D   
11/11/12     D1      Greuther Furth      M'gladbach      2      4      A   
11/11/12     D1           Stuttgart        Hannover      2      4      A   
11/11/12     D1           Wolfsburg      Leverkusen      3      1      H   

         season  
date             
11/11/12  12-13  
11/11/12  12-13  
11/11/12  12-13  
11/11/12  12-13  
11/11/12  12-13  
11/11/12  12-13  
11/11/12  12-13  
11/11/12  12-13  
11/11/12  12-13  
11/11/12  12-13  
11/11/12  12-13  
11/11/12  12-13  
11/11/12  12-13  
11/11/12  12-13  
11/11/12  12-13  
11/11/12  12-13  
11/11/12  12-13  
11/11/12  12-13  
11/11/12  12-13  
11/11/12  12-13  


11/12/11
         league                home            away  hgoal  agoal result  \
date                                                                       
11/12/11    SP1          Ath Bilbao       Santander      1      1      D   
11/12/11    SP1             Espanol      Ath Madrid      4      2      H   
11/12/11    SP1              Getafe         Granada      1      0      H   
11/12/11    SP1              Malaga         Osasuna      1      1      D   
11/12/11    SP1           Vallecano        Sp Gijon      1      3      A   
11/12/11    SP1          Villarreal        Sociedad      1      1      D   
11/12/11    SP1            Zaragoza        Mallorca      0      1      A   
11/12/11     I1            Atalanta         Catania      1      1      D   
11/12/11     I1             Bologna           Milan      2      2      D   
11/12/11     I1            Cagliari           Parma      0      0      D   
11/12/11     I1              Novara          Napoli      1      1      D   
11/12/11     I1             Udinese          Chievo      2      1      H   
11/12/11     D1            Dortmund  Kaiserslautern      1      1      D   
11/12/11     D1           Stuttgart   Bayern Munich      1      2      A   
11/12/11     T1         Antalyaspor      Ankaragucu      1      0      H   
11/12/11     T1            Besiktas      Buyuksehyr      1      1      D   
11/12/11     T1      Genclerbirligi        Orduspor      3      1      H   
11/12/11     T1  Mersin Idman Yurdu      Samsunspor      1      0      H   
11/12/11     T1         Trabzonspor     Galatasaray      0      3      A   

         season  
date             
11/12/11  11-12  
11/12/11  11-12  
11/12/11  11-12  
11/12/11  11-12  
11/12/11  11-12  
11/12/11  11-12  
11/12/11  11-12  
11/12/11  11-12  
11/12/11  11-12  
11/12/11  11-12  
11/12/11  11-12  
11/12/11  11-12  
11/12/11  11-12  
11/12/11  11-12  
11/12/11  11-12  
11/12/11  11-12  
11/12/11  11-12  
11/12/11  11-12  
11/12/11  11-12  


11/12/15
         league       home         away  hgoal  agoal result season
date                                                               
11/12/15     T1  Bursaspor  Osmanlispor      0      4      A  15-16
11/12/15     D1      Mainz    Stuttgart      0      0      D  15-16
11/12/15    SP1     Getafe     Sociedad      1      1      D  15-16


12/01/13
         league                home          away  hgoal  agoal result season
date                                                                         
12/01/13    SP1             Espanol         Celta      1      0      H  12-13
12/01/13    SP1             Osasuna   Real Madrid      0      0      D  12-13
12/01/13    SP1            Valencia       Sevilla      2      0      H  12-13
12/01/13    SP1          Valladolid      Mallorca      3      1      H  12-13
12/01/13     I1             Bologna        Chievo      4      0      H  12-13
12/01/13     I1               Inter       Pescara      2      0      H  12-13
12/01/13     E2  Milton Keynes Dons          Bury      1      1      D  12-13
12/01/13     E2              Oldham     Brentford      0      2      A  12-13
12/01/13     E2    Sheffield United        Yeovil      0      2      A  12-13
12/01/13     E2          Shrewsbury    Hartlepool      1      1      D  12-13
12/01/13     E2           Stevenage     Doncaster      1      2      A  12-13
12/01/13     E2            Tranmere  Crawley Town      2      0      H  12-13


12/01/14
         league      home          away  hgoal  agoal result season
date                                                               
12/01/14     E2  Coventry  Crawley Town      2      2      D  13-14
12/01/14    SP1     Betis       Osasuna      1      2      A  13-14
12/01/14    SP1   Espanol   Real Madrid      0      1      A  13-14
12/01/14    SP1    Getafe     Vallecano      0      1      A  13-14
12/01/14    SP1   Levante        Malaga      1      0      H  13-14
12/01/14     I1  Atalanta       Catania      2      1      H  13-14
12/01/14     I1  Cagliari      Juventus      1      4      A  13-14
12/01/14     I1      Roma         Genoa      4      0      H  13-14
12/01/14     I1  Sassuolo         Milan      4      3      H  13-14
12/01/14     I1    Torino    Fiorentina      0      0      D  13-14
12/01/14     I1    Verona        Napoli      0      3      A  13-14


12/01/15
         league       home     away  hgoal  agoal result season
date                                                           
12/01/15     E2   Coventry  Swindon      0      3      A  14-15
12/01/15    SP1  Vallecano  Cordoba      0      1      A  14-15


12/01/16
         league      home              away  hgoal  agoal result season
date                                                                   
12/01/16     E2  Coventry           Walsall      1      1      D  15-16
12/01/16     E2     Wigan  Sheffield United      3      3      D  15-16


12/02/12
         league         home           away  hgoal  agoal result season
date                                                                   
12/02/12    SP1      Espanol       Zaragoza      0      2      A  11-12
12/02/12    SP1       Malaga       Mallorca      3      1      H  11-12
12/02/12    SP1  Real Madrid        Levante      4      2      H  11-12
12/02/12    SP1     Valencia       Sp Gijon      4      0      H  11-12
12/02/12    SP1    Vallecano         Getafe      2      0      H  11-12
12/02/12    SP1   Villarreal        Granada      3      1      H  11-12
12/02/12     I1     Atalanta          Lecce      0      0      D  11-12
12/02/12     I1      Catania          Genoa      4      0      H  11-12
12/02/12     I1        Inter         Novara      0      1      A  11-12
12/02/12     D1     Augsburg       Nurnberg      0      0      D  11-12
12/02/12     D1      FC Koln        Hamburg      0      1      A  11-12
12/02/12     T1   Buyuksehyr     Ankaragucu      3      0      H  11-12
12/02/12     T1  Karabukspor     Fenerbahce      2      1      H  11-12
12/02/12     T1   Manisaspor      Bursaspor      1      3      A  11-12
12/02/12     T1     Orduspor    Antalyaspor      3      2      H  11-12
12/02/12     T1   Samsunspor  Eskisehirspor      3      1      H  11-12


12/02/13
         league        home                away  hgoal  agoal result season
date                                                                       
12/02/13     E2   Brentford           Stevenage      2      0      H  12-13
12/02/13     E2        Bury    Sheffield United      0      2      A  12-13
12/02/13     E2       Crewe         Bournemouth      1      2      A  12-13
12/02/13     E2   Doncaster  Milton Keynes Dons      0      0      D  12-13
12/02/13     E2  Hartlepool          Portsmouth      0      0      D  12-13
12/02/13     E2  Scunthorpe            Carlisle      3      1      H  12-13
12/02/13     E2      Yeovil             Preston      3      1      H  12-13


12/02/16
         league        home          away  hgoal  agoal result season
date                                                                 
12/02/16     T1  Fenerbahce     Kasimpasa      3      1      H  15-16
12/02/16     D1       Mainz    Schalke 04      2      1      H  15-16
12/02/16     I1       Carpi          Roma      1      3      A  15-16
12/02/16    SP1    Sp Gijon     Vallecano      2      2      D  15-16
12/02/16     E2      Burton  Chesterfield      1      0      H  15-16


12/03/12
         league         home       away  hgoal  agoal result season
date                                                               
12/03/12    SP1   Villarreal     Getafe      1      2      A  11-12
12/03/12     T1  Trabzonspor  Sivasspor      2      1      H  11-12


12/03/13
         league                home          away  hgoal  agoal result season
date                                                                         
12/03/13     E2           Brentford       Swindon      2      1      H  12-13
12/03/13     E2            Coventry    Colchester      2      2      D  12-13
12/03/13     E2       Leyton Orient    Portsmouth      1      0      H  12-13
12/03/13     E2  Milton Keynes Dons    Shrewsbury      2      3      A  12-13
12/03/13     E2        Notts County       Preston      0      1      A  12-13
12/03/13     E2           Stevenage   Bournemouth      0      1      A  12-13
12/03/13     E2             Walsall      Tranmere      2      0      H  12-13
12/03/13     E2              Yeovil  Crawley Town      2      2      D  12-13


12/03/14
         league              home      away  hgoal  agoal result season
date                                                                   
12/03/14     E2  Sheffield United  Carlisle      1      0      H  13-14


12/03/16
         league              home            away  hgoal  agoal result season
date                                                                         
12/03/16     T1        Buyuksehyr     Osmanlispor      2      3      A  15-16
12/03/16     T1     Gaziantepspor       Konyaspor      0      1      A  15-16
12/03/16     T1          Rizespor        Besiktas      1      2      A  15-16
12/03/16     D1     Bayern Munich   Werder Bremen      5      0      H  15-16
12/03/16     D1         Darmstadt        Augsburg      2      2      D  15-16
12/03/16     D1          Hannover         FC Koln      0      2      A  15-16
12/03/16     D1        Hoffenheim       Wolfsburg      1      0      H  15-16
12/03/16     D1        Ingolstadt       Stuttgart      3      3      D  15-16
12/03/16     D1        M'gladbach   Ein Frankfurt      3      0      H  15-16
12/03/16     I1            Empoli       Sampdoria      1      1      D  15-16
12/03/16     I1             Inter         Bologna      2      1      H  15-16
12/03/16    SP1        Ath Madrid       La Coruna      3      0      H  15-16
12/03/16    SP1         Barcelona          Getafe      6      0      H  15-16
12/03/16    SP1             Celta        Sociedad      1      0      H  15-16
12/03/16    SP1         Vallecano           Eibar      1      1      D  15-16
12/03/16     E2          Barnsley        Southend      0      2      A  15-16
12/03/16     E2         Blackpool        Coventry      0      1      A  15-16
12/03/16     E2          Bradford       Doncaster      2      1      H  15-16
12/03/16     E2            Burton  Fleetwood Town      2      1      H  15-16
12/03/16     E2      Chesterfield         Walsall      1      4      A  15-16
12/03/16     E2        Colchester           Wigan      3      3      D  15-16
12/03/16     E2        Gillingham           Crewe      3      0      H  15-16
12/03/16     E2         Peterboro       Port Vale      2      3      A  15-16
12/03/16     E2          Rochdale            Bury      3      0      H  15-16
12/03/16     E2  Sheffield United          Oldham      3      0      H  15-16
12/03/16     E2        Shrewsbury      Scunthorpe      2      2      D  15-16
12/03/16     E2           Swindon        Millwall      2      2      D  15-16


12/04/12
         league        home      away  hgoal  agoal result season
date                                                             
12/04/12    SP1   Santander  Mallorca      0      3      A  11-12
12/04/12    SP1     Sevilla  Zaragoza      3      0      H  11-12
12/04/12    SP1  Villarreal    Malaga      2      1      H  11-12
12/04/12     I1     Bologna  Cagliari      1      0      H  11-12


12/04/13
         league         home            away  hgoal  agoal result season
date                                                                    
12/04/13    SP1        Betis         Sevilla      3      3      D  12-13
12/04/13     T1    Sivasspor  Genclerbirligi      1      1      D  12-13
12/04/13     T1  Trabzonspor        Orduspor      1      0      H  12-13
12/04/13     D1     Freiburg        Hannover      3      1      H  12-13


12/04/14
         league                home                  away  hgoal  agoal  \
date                                                                      
12/04/14     D1       Bayern Munich              Dortmund      0      3   
12/04/14     D1            Freiburg          Braunschweig      2      0   
12/04/14     D1            Hannover               Hamburg      2      1   
12/04/14     D1               Mainz         Werder Bremen      3      0   
12/04/14     D1          M'gladbach             Stuttgart      1      1   
12/04/14     D1           Wolfsburg              Nurnberg      4      1   
12/04/14     T1         Karabukspor  Akhisar Belediyespor      0      2   
12/04/14     T1           Kasimpasa             Bursaspor      1      1   
12/04/14     T1         Kayserispor              Rizespor      0      2   
12/04/14     T1           Sivasspor           Galatasaray      2      1   
12/04/14     E2               Crewe                Wolves      0      2   
12/04/14     E2       Leyton Orient            Gillingham      5      1   
12/04/14     E2  Milton Keynes Dons          Crawley Town      0      2   
12/04/14     E2        Notts County             Port Vale      4      2   
12/04/14     E2           Peterboro              Coventry      1      0   
12/04/14     E2             Preston              Carlisle      6      1   
12/04/14     E2           Stevenage            Colchester      2      3   
12/04/14     E2             Swindon             Brentford      1      0   
12/04/14     E2            Tranmere            Shrewsbury      2      1   
12/04/14     E2             Walsall          Bristol City      0      1   
12/04/14    SP1               Celta              Sociedad      2      2   
12/04/14    SP1             Granada             Barcelona      1      0   
12/04/14    SP1         Real Madrid               Almeria      4      0   
12/04/14    SP1          Villarreal               Levante      1      0   
12/04/14     I1                Roma              Atalanta      3      1   
12/04/14     I1            Sassuolo              Cagliari      1      1   

         result season  
date                    
12/04/14      A  13-14  
12/04/14      H  13-14  
12/04/14      H  13-14  
12/04/14      H  13-14  
12/04/14      D  13-14  
12/04/14      H  13-14  
12/04/14      A  13-14  
12/04/14      D  13-14  
12/04/14      A  13-14  
12/04/14      H  13-14  
12/04/14      A  13-14  
12/04/14      H  13-14  
12/04/14      A  13-14  
12/04/14      H  13-14  
12/04/14      H  13-14  
12/04/14      H  13-14  
12/04/14      A  13-14  
12/04/14      H  13-14  
12/04/14      H  13-14  
12/04/14      A  13-14  
12/04/14      D  13-14  
12/04/14      H  13-14  
12/04/14      H  13-14  
12/04/14      H  13-14  
12/04/14      H  13-14  
12/04/14      D  13-14  


12/04/15
         league       home           away  hgoal  agoal result season
date                                                                 
12/04/15     D1    FC Koln     Hoffenheim      3      2      H  14-15
12/04/15     D1  Stuttgart  Werder Bremen      3      2      H  14-15
12/04/15     I1   Atalanta       Sassuolo      2      1      H  14-15
12/04/15     I1     Cesena         Chievo      0      1      A  14-15
12/04/15     I1      Lazio         Empoli      4      0      H  14-15
12/04/15     I1      Milan      Sampdoria      1      1      D  14-15
12/04/15     I1     Napoli     Fiorentina      3      0      H  14-15
12/04/15     I1     Torino           Roma      1      1      D  14-15
12/04/15     I1    Udinese        Palermo      1      3      A  14-15
12/04/15    SP1    Cordoba          Elche      0      2      A  14-15


12/04/16
         league        home     away  hgoal  agoal result season
date                                                            
12/04/16     E2    Barnsley   Oldham      2      1      H  15-16
12/04/16     E2  Gillingham  Walsall      1      2      A  15-16


12/05/12
         league      home       away  hgoal  agoal result season
date                                                            
12/05/12    SP1     Betis  Barcelona      2      2      D  11-12
12/05/12    SP1  Sociedad   Valencia      1      0      H  11-12


12/05/13
         league        home         away  hgoal  agoal result season
date                                                                
12/05/13    SP1  Ath Madrid    Barcelona      1      2      A  12-13
12/05/13    SP1       Betis        Celta      1      0      H  12-13
12/05/13    SP1      Malaga      Sevilla      0      0      D  12-13
12/05/13    SP1   Vallecano     Valencia      0      4      A  12-13
12/05/13     I1      Chievo       Torino      1      1      D  12-13
12/05/13     I1  Fiorentina      Palermo      1      0      H  12-13
12/05/13     I1       Genoa        Inter      0      0      D  12-13
12/05/13     I1       Lazio    Sampdoria      2      0      H  12-13
12/05/13     I1       Milan         Roma      0      0      D  12-13
12/05/13     I1      Napoli        Siena      2      1      H  12-13
12/05/13     I1       Parma      Bologna      0      2      A  12-13
12/05/13     I1     Udinese     Atalanta      2      1      H  12-13
12/05/13     T1  Fenerbahce  Galatasaray      2      1      H  12-13


12/05/15
         league                home            away  hgoal  agoal result  \
date                                                                       
12/05/15     T1          Buyuksehyr       Sivasspor      2      1      H   
12/05/15     T1         Karabukspor   Eskisehirspor      2      2      D   
12/05/15     T1           Kasimpasa   Balikesirspor      2      3      A   
12/05/15     T1           Konyaspor  Genclerbirligi      1      0      H   
12/05/15     T1  Mersin Idman Yurdu     Galatasaray      0      1      A   

         season  
date             
12/05/15  14-15  
12/05/15  14-15  
12/05/15  14-15  
12/05/15  14-15  
12/05/15  14-15  


12/09/11
         league        home      away  hgoal  agoal result season
date                                                             
12/09/11    SP1      Malaga   Granada      4      0      H  11-12
12/09/11     T1  Fenerbahce  Orduspor      1      0      H  11-12


12/09/14
         league        home           away  hgoal  agoal result season
date                                                                  
12/09/14     D1  Leverkusen  Werder Bremen      3      3      D  14-15
12/09/14    SP1     Almeria        Cordoba      1      1      D  14-15


12/09/15
         league                  home                away  hgoal  agoal  \
date                                                                      
12/09/15     T1  Akhisar Belediyespor       Gaziantepspor      0      0   
12/09/15     T1           Antalyaspor       Eskisehirspor      2      0   
12/09/15     T1             Bursaspor      Genclerbirligi      3      2   
12/09/15     T1           Galatasaray  Mersin Idman Yurdu      1      1   
12/09/15     D1         Bayern Munich            Augsburg      2      1   
12/09/15     D1         Ein Frankfurt             FC Koln      6      2   
12/09/15     D1              Hannover            Dortmund      2      4   
12/09/15     D1                Hertha           Stuttgart      2      1   
12/09/15     D1            Ingolstadt           Wolfsburg      0      0   
12/09/15     D1            Leverkusen           Darmstadt      0      1   
12/09/15     I1            Fiorentina               Genoa      1      0   
12/09/15     I1             Frosinone                Roma      0      2   
12/09/15     I1              Juventus              Chievo      1      1   
12/09/15    SP1            Ath Madrid           Barcelona      1      2   
12/09/15    SP1                 Betis            Sociedad      1      0   
12/09/15    SP1               Espanol         Real Madrid      0      6   
12/09/15    SP1              Sp Gijon            Valencia      0      1   
12/09/15     E2              Barnsley             Swindon      4      1   
12/09/15     E2                Burton            Rochdale      1      0   
12/09/15     E2          Chesterfield          Colchester      3      3   
12/09/15     E2                 Crewe            Millwall      1      3   
12/09/15     E2        Fleetwood Town            Bradford      1      1   
12/09/15     E2            Gillingham           Blackpool      2      1   
12/09/15     E2                Oldham           Peterboro      1      5   
12/09/15     E2             Port Vale               Wigan      3      2   
12/09/15     E2            Scunthorpe            Coventry      1      0   
12/09/15     E2      Sheffield United                Bury      1      3   
12/09/15     E2              Southend          Shrewsbury      0      1   
12/09/15     E2               Walsall           Doncaster      2      0   

         result season  
date                    
12/09/15      D  15-16  
12/09/15      H  15-16  
12/09/15      H  15-16  
12/09/15      D  15-16  
12/09/15      H  15-16  
12/09/15      H  15-16  
12/09/15      A  15-16  
12/09/15      H  15-16  
12/09/15      D  15-16  
12/09/15      A  15-16  
12/09/15      H  15-16  
12/09/15      A  15-16  
12/09/15      D  15-16  
12/09/15      A  15-16  
12/09/15      H  15-16  
12/09/15      A  15-16  
12/09/15      A  15-16  
12/09/15      H  15-16  
12/09/15      H  15-16  
12/09/15      D  15-16  
12/09/15      A  15-16  
12/09/15      D  15-16  
12/09/15      H  15-16  
12/09/15      A  15-16  
12/09/15      H  15-16  
12/09/15      H  15-16  
12/09/15      A  15-16  
12/09/15      A  15-16  
12/09/15      H  15-16  


12/10/13
         league           home                away  hgoal  agoal result season
date                                                                          
12/10/13     E2     Colchester             Walsall      1      1      D  13-14
12/10/13     E2  Leyton Orient  Milton Keynes Dons      2      1      H  13-14
12/10/13     E2      Port Vale           Peterboro      0      1      A  13-14
12/10/13     E2        Preston               Crewe      0      2      A  13-14
12/10/13     E2      Rotherham             Swindon      0      4      A  13-14
12/10/13     E2     Shrewsbury          Gillingham      2      0      H  13-14
12/10/13     E2      Stevenage           Brentford      2      1      H  13-14


12/10/14
         league      home      away  hgoal  agoal result season
date                                                           
12/10/14     E2  Barnsley  Bradford      3      1      H  14-15


12/12/11
         league         home         away  hgoal  agoal result season
date                                                                 
12/12/11     I1         Roma     Juventus      1      1      D  11-12
12/12/11     T1    Bursaspor   Fenerbahce      0      2      A  11-12
12/12/11     T1  Kayserispor  Karabukspor      2      0      H  11-12
12/12/11     T1    Sivasspor   Manisaspor      2      2      D  11-12


12/12/14
         league        home           away  hgoal  agoal result season
date                                                                  
12/12/14     D1  Hoffenheim  Ein Frankfurt      3      2      H  14-15
12/12/14     T1  Fenerbahce      Sivasspor      4      1      H  14-15
12/12/14    SP1     Almeria    Real Madrid      1      4      A  14-15


12/12/15
         league           home                away  hgoal  agoal result season
date                                                                          
12/12/15     T1    Antalyaspor  Mersin Idman Yurdu      3      2      H  15-16
12/12/15     T1  Eskisehirspor       Gaziantepspor      1      2      A  15-16
12/12/15     T1      Kasimpasa           Konyaspor      2      1      H  15-16
12/12/15     T1       Rizespor         Trabzonspor      3      0      H  15-16
12/12/15     D1  Bayern Munich          Ingolstadt      2      0      H  15-16
12/12/15     D1      Darmstadt              Hertha      0      4      A  15-16
12/12/15     D1     Hoffenheim            Hannover      1      0      H  15-16
12/12/15     D1     Leverkusen          M'gladbach      5      0      H  15-16
12/12/15     D1  Werder Bremen             FC Koln      1      1      D  15-16
12/12/15     D1      Wolfsburg             Hamburg      1      1      D  15-16
12/12/15     I1          Genoa             Bologna      0      1      A  15-16
12/12/15     I1        Palermo           Frosinone      4      1      H  15-16
12/12/15     I1        Udinese               Inter      0      4      A  15-16
12/12/15    SP1      Barcelona           La Coruna      2      2      D  15-16
12/12/15    SP1          Celta             Espanol      1      0      H  15-16
12/12/15    SP1     Las Palmas               Betis      1      0      H  15-16
12/12/15    SP1        Levante             Granada      1      2      A  15-16
12/12/15    SP1        Sevilla            Sp Gijon      2      0      H  15-16
12/12/15     E2           Bury        Chesterfield      1      0      H  15-16
12/12/15     E2     Colchester            Barnsley      2      3      A  15-16
12/12/15     E2      Doncaster               Crewe      3      2      H  15-16
12/12/15     E2     Gillingham              Burton      0      3      A  15-16
12/12/15     E2      Peterboro          Shrewsbury      1      1      D  15-16
12/12/15     E2      Port Vale          Scunthorpe      1      1      D  15-16
12/12/15     E2        Swindon            Rochdale      2      1      H  15-16
12/12/15     E2          Wigan           Blackpool      0      1      A  15-16


13/01/13
         league        home        away  hgoal  agoal result season
date                                                               
13/01/13    SP1  Ath Madrid    Zaragoza      2      0      H  12-13
13/01/13    SP1       Betis     Levante      2      0      H  12-13
13/01/13    SP1      Malaga   Barcelona      1      3      A  12-13
13/01/13    SP1    Sociedad   La Coruna      1      1      D  12-13
13/01/13     I1    Cagliari       Genoa      2      1      H  12-13
13/01/13     I1     Catania        Roma      1      0      H  12-13
13/01/13     I1       Lazio    Atalanta      2      0      H  12-13
13/01/13     I1      Napoli     Palermo      3      0      H  12-13
13/01/13     I1       Parma    Juventus      1      1      D  12-13
13/01/13     I1   Sampdoria       Milan      0      0      D  12-13
13/01/13     I1      Torino       Siena      3      2      H  12-13
13/01/13     I1     Udinese  Fiorentina      3      1      H  12-13
13/01/13     E2    Carlisle    Coventry      1      0      H  12-13
13/01/13     E2     Preston     Walsall      1      3      A  12-13


13/01/14
         league        home      away  hgoal  agoal result season
date                                                             
13/01/14    SP1  Villarreal  Sociedad      5      1      H  13-14
13/01/14     I1       Inter    Chievo      1      1      D  13-14
13/01/14     I1   Sampdoria   Udinese      3      0      H  13-14


13/02/12
         league      home     away  hgoal  agoal result season
date                                                          
13/02/12    SP1  Sociedad  Sevilla      2      0      H  11-12
13/02/12     I1    Napoli   Chievo      2      0      H  11-12
13/02/12     I1     Siena     Roma      1      0      H  11-12


13/02/15
         league      home      away  hgoal  agoal result season
date                                                           
13/02/15     D1  Dortmund     Mainz      4      2      H  14-15
13/02/15    SP1   Almeria  Sociedad      2      2      D  14-15


13/02/16
         league                home              away  hgoal  agoal result  \
date                                                                         
13/02/16     T1      Genclerbirligi         Bursaspor      2      0      H   
13/02/16     T1           Konyaspor       Osmanlispor      1      1      D   
13/02/16     T1  Mersin Idman Yurdu       Galatasaray      2      1      H   
13/02/16     D1           Darmstadt        Leverkusen      1      2      A   
13/02/16     D1            Dortmund          Hannover      1      0      H   
13/02/16     D1             FC Koln     Ein Frankfurt      3      1      H   
13/02/16     D1           Stuttgart            Hertha      2      0      H   
13/02/16     D1       Werder Bremen        Hoffenheim      1      1      D   
13/02/16     D1           Wolfsburg        Ingolstadt      2      0      H   
13/02/16     I1              Chievo          Sassuolo      1      1      D   
13/02/16     I1              Empoli         Frosinone      1      2      A   
13/02/16     I1            Juventus            Napoli      1      0      H   
13/02/16    SP1           La Coruna             Betis      2      2      D   
13/02/16    SP1         Real Madrid        Ath Bilbao      4      2      H   
13/02/16    SP1            Valencia           Espanol      2      1      H   
13/02/16    SP1          Villarreal            Malaga      1      0      H   
13/02/16     E2           Blackpool        Shrewsbury      2      3      A   
13/02/16     E2          Colchester           Swindon      1      4      A   
13/02/16     E2            Coventry              Bury      6      0      H   
13/02/16     E2               Crewe           Walsall      1      1      D   
13/02/16     E2           Doncaster  Sheffield United      0      1      A   
13/02/16     E2          Gillingham          Barnsley      2      1      H   
13/02/16     E2           Peterboro          Bradford      0      4      A   
13/02/16     E2           Port Vale    Fleetwood Town      0      0      D   
13/02/16     E2            Rochdale          Millwall      0      1      A   
13/02/16     E2          Scunthorpe          Southend      1      0      H   
13/02/16     E2               Wigan            Oldham      0      0      D   

         season  
date             
13/02/16  15-16  
13/02/16  15-16  
13/02/16  15-16  
13/02/16  15-16  
13/02/16  15-16  
13/02/16  15-16  
13/02/16  15-16  
13/02/16  15-16  
13/02/16  15-16  
13/02/16  15-16  
13/02/16  15-16  
13/02/16  15-16  
13/02/16  15-16  
13/02/16  15-16  
13/02/16  15-16  
13/02/16  15-16  
13/02/16  15-16  
13/02/16  15-16  
13/02/16  15-16  
13/02/16  15-16  
13/02/16  15-16  
13/02/16  15-16  
13/02/16  15-16  
13/02/16  15-16  
13/02/16  15-16  
13/02/16  15-16  
13/02/16  15-16  


13/03/12
         league        home              away  hgoal  agoal result season
date                                                                     
13/03/12     E2  Colchester  Sheffield United      1      1      D  11-12
13/03/12     E2   Stevenage            Oldham      1      0      H  11-12
13/03/12     E2    Tranmere           Preston      2      1      H  11-12
13/03/12     E2      Yeovil        Scunthorpe      2      2      D  11-12


13/03/15
         league        home           away  hgoal  agoal result season
date                                                                  
13/03/15     D1  Leverkusen      Stuttgart      4      0      H  14-15
13/03/15     T1   Bursaspor  Balikesirspor      4      2      H  14-15
13/03/15     T1   Konyaspor      Kasimpasa      2      1      H  14-15
13/03/15    SP1    Valencia      La Coruna      2      0      H  14-15


13/03/16
         league            home                  away  hgoal  agoal result  \
date                                                                         
13/03/16     T1   Eskisehirspor  Akhisar Belediyespor      3      3      D   
13/03/16     T1      Fenerbahce           Kayserispor      1      0      H   
13/03/16     T1  Genclerbirligi           Galatasaray      1      1      D   
13/03/16     D1        Dortmund                 Mainz      2      0      H   
13/03/16     D1      Leverkusen               Hamburg      1      0      H   
13/03/16     I1           Carpi             Frosinone      2      1      H   
13/03/16     I1          Chievo                 Milan      0      0      D   
13/03/16     I1      Fiorentina                Verona      1      1      D   
13/03/16     I1           Genoa                Torino      3      2      H   
13/03/16     I1           Lazio              Atalanta      2      0      H   
13/03/16     I1         Palermo                Napoli      0      1      A   
13/03/16     I1         Udinese                  Roma      1      2      A   
13/03/16    SP1      Ath Bilbao                 Betis      3      1      H   
13/03/16    SP1      Las Palmas           Real Madrid      1      2      A   
13/03/16    SP1         Levante              Valencia      1      0      H   
13/03/16    SP1         Sevilla            Villarreal      4      2      H   

         season  
date             
13/03/16  15-16  
13/03/16  15-16  
13/03/16  15-16  
13/03/16  15-16  
13/03/16  15-16  
13/03/16  15-16  
13/03/16  15-16  
13/03/16  15-16  
13/03/16  15-16  
13/03/16  15-16  
13/03/16  15-16  
13/03/16  15-16  
13/03/16  15-16  
13/03/16  15-16  
13/03/16  15-16  
13/03/16  15-16  


13/04/12
         league       home           away  hgoal  agoal result season
date                                                                 
13/04/12     D1  Stuttgart  Werder Bremen      4      1      H  11-12


13/04/13
         league                home                away  hgoal  agoal result  \
date                                                                           
13/04/13    SP1             Espanol            Valencia      3      3      D   
13/04/13    SP1             Levante           La Coruna      0      4      A   
13/04/13    SP1              Malaga             Osasuna      1      0      H   
13/04/13    SP1          Valladolid              Getafe      2      1      H   
13/04/13     I1             Pescara               Siena      2      3      A   
13/04/13     T1         Karabukspor         Galatasaray      0      1      A   
13/04/13     T1  Mersin Idman Yurdu           Bursaspor      0      1      A   
13/04/13     E2           Brentford          Portsmouth      3      2      H   
13/04/13     E2                Bury              Oldham      0      1      A   
13/04/13     E2            Carlisle             Preston      1      1      D   
13/04/13     E2        Crawley Town            Coventry      2      0      H   
13/04/13     E2               Crewe           Doncaster      1      2      A   
13/04/13     E2       Leyton Orient  Milton Keynes Dons      2      0      H   
13/04/13     E2        Notts County          Colchester      3      1      H   
13/04/13     E2          Scunthorpe             Walsall      1      1      D   
13/04/13     E2    Sheffield United             Swindon      2      0      H   
13/04/13     E2          Shrewsbury         Bournemouth      0      3      A   
13/04/13     E2           Stevenage              Yeovil      0      2      A   
13/04/13     E2            Tranmere          Hartlepool      0      1      A   
13/04/13     D1       Bayern Munich            Nurnberg      4      0      H   
13/04/13     D1  Fortuna Dusseldorf       Werder Bremen      2      2      D   
13/04/13     D1      Greuther Furth            Dortmund      1      6      A   
13/04/13     D1               Mainz             Hamburg      1      2      A   
13/04/13     D1          Schalke 04          Leverkusen      2      2      D   
13/04/13     D1           Wolfsburg          Hoffenheim      2      2      D   

         season  
date             
13/04/13  12-13  
13/04/13  12-13  
13/04/13  12-13  
13/04/13  12-13  
13/04/13  12-13  
13/04/13  12-13  
13/04/13  12-13  
13/04/13  12-13  
13/04/13  12-13  
13/04/13  12-13  
13/04/13  12-13  
13/04/13  12-13  
13/04/13  12-13  
13/04/13  12-13  
13/04/13  12-13  
13/04/13  12-13  
13/04/13  12-13  
13/04/13  12-13  
13/04/13  12-13  
13/04/13  12-13  
13/04/13  12-13  
13/04/13  12-13  
13/04/13  12-13  
13/04/13  12-13  
13/04/13  12-13  


13/04/14
         league            home         away  hgoal  agoal result season
date                                                                    
13/04/14     D1      Hoffenheim     Augsburg      2      0      H  13-14
13/04/14     D1      Leverkusen       Hertha      2      1      H  13-14
13/04/14     T1   Eskisehirspor  Trabzonspor      2      2      D  13-14
13/04/14     T1      Fenerbahce  Antalyaspor      4      1      H  13-14
13/04/14     T1  Genclerbirligi  Erciyesspor      0      0      D  13-14
13/04/14    SP1           Betis      Sevilla      0      2      A  13-14
13/04/14    SP1         Espanol    Vallecano      2      2      D  13-14
13/04/14    SP1          Getafe   Ath Madrid      0      2      A  13-14
13/04/14    SP1        Valencia        Elche      2      1      H  13-14
13/04/14     I1         Bologna        Parma      1      1      D  13-14
13/04/14     I1         Livorno       Chievo      2      4      A  13-14
13/04/14     I1           Milan      Catania      1      0      H  13-14
13/04/14     I1          Napoli        Lazio      4      2      H  13-14
13/04/14     I1       Sampdoria        Inter      0      4      A  13-14
13/04/14     I1          Torino        Genoa      2      1      H  13-14
13/04/14     I1          Verona   Fiorentina      3      5      A  13-14


13/04/16
         league         home        away  hgoal  agoal result season
date                                                                
13/04/16     T1  Galatasaray  Fenerbahce      0      0      D  15-16


13/05/12
         league         home        away  hgoal  agoal result season
date                                                                
13/05/12    SP1      Espanol     Sevilla      1      1      D  11-12
13/05/12    SP1       Getafe    Zaragoza      0      2      A  11-12
13/05/12    SP1      Levante  Ath Bilbao      3      0      H  11-12
13/05/12    SP1       Malaga    Sp Gijon      1      0      H  11-12
13/05/12    SP1  Real Madrid    Mallorca      4      1      H  11-12
13/05/12    SP1    Santander     Osasuna      2      4      A  11-12
13/05/12    SP1    Vallecano     Granada      1      0      H  11-12
13/05/12    SP1   Villarreal  Ath Madrid      0      1      A  11-12
13/05/12     I1      Catania     Udinese      0      2      A  11-12
13/05/12     I1       Cesena        Roma      2      3      A  11-12
13/05/12     I1       Chievo       Lecce      1      0      H  11-12
13/05/12     I1   Fiorentina    Cagliari      0      0      D  11-12
13/05/12     I1        Genoa     Palermo      2      0      H  11-12
13/05/12     I1     Juventus    Atalanta      3      1      H  11-12
13/05/12     I1        Lazio       Inter      3      1      H  11-12
13/05/12     I1        Milan      Novara      2      1      H  11-12
13/05/12     I1       Napoli       Siena      2      1      H  11-12
13/05/12     I1        Parma     Bologna      1      0      H  11-12


13/05/13
         league                  home                away  hgoal  agoal  \
date                                                                      
13/05/13    SP1              Sociedad             Granada      2      2   
13/05/13     T1  Akhisar Belediyespor  Mersin Idman Yurdu      1      0   
13/05/13     T1             Bursaspor       Eskisehirspor      0      0   
13/05/13     T1             Sivasspor         Karabukspor      2      1   
13/05/13     T1           Trabzonspor          Buyuksehyr      4      3   

         result season  
date                    
13/05/13      D  12-13  
13/05/13      H  12-13  
13/05/13      D  12-13  
13/05/13      H  12-13  
13/05/13      H  12-13  


13/05/15
         league           home         away  hgoal  agoal result season
date                                                                   
13/05/15     T1     Fenerbahce  Erciyesspor      1      1      D  14-15
13/05/15     T1  Gaziantepspor     Rizespor      1      2      A  14-15
13/05/15     T1    Trabzonspor    Bursaspor      1      0      H  14-15


13/05/16
         league         home         away  hgoal  agoal result season
date                                                                 
13/05/16     T1  Antalyaspor  Trabzonspor      7      0      H  15-16
13/05/16    SP1     Valencia     Sociedad      0      1      A  15-16


13/08/11
         league              home                away  hgoal  agoal result  \
date                                                                         
13/08/11     D1          Freiburg               Mainz      1      2      A   
13/08/11     D1           Hamburg              Hertha      2      2      D   
13/08/11     D1        Hoffenheim            Dortmund      1      0      H   
13/08/11     D1        M'gladbach           Stuttgart      1      1      D   
13/08/11     D1          Nurnberg            Hannover      1      2      A   
13/08/11     D1        Schalke 04             FC Koln      5      1      H   
13/08/11     D1         Wolfsburg       Bayern Munich      0      1      A   
13/08/11     E2       Bournemouth      Sheffield Weds      2      0      H   
13/08/11     E2              Bury            Carlisle      0      2      A   
13/08/11     E2      Chesterfield           Stevenage      1      1      D   
13/08/11     E2        Colchester             Wycombe      1      1      D   
13/08/11     E2            Exeter  Milton Keynes Dons      0      2      A   
13/08/11     E2        Hartlepool             Walsall      1      1      D   
13/08/11     E2     Leyton Orient            Tranmere      0      1      A   
13/08/11     E2      Notts County            Charlton      1      2      A   
13/08/11     E2          Rochdale        Huddersfield      2      2      D   
13/08/11     E2        Scunthorpe             Preston      1      1      D   
13/08/11     E2  Sheffield United           Brentford      2      0      H   
13/08/11     E2            Yeovil              Oldham      3      1      H   

         season  
date             
13/08/11  11-12  
13/08/11  11-12  
13/08/11  11-12  
13/08/11  11-12  
13/08/11  11-12  
13/08/11  11-12  
13/08/11  11-12  
13/08/11  11-12  
13/08/11  11-12  
13/08/11  11-12  
13/08/11  11-12  
13/08/11  11-12  
13/08/11  11-12  
13/08/11  11-12  
13/08/11  11-12  
13/08/11  11-12  
13/08/11  11-12  
13/08/11  11-12  
13/08/11  11-12  


13/09/11
         league              home            away  hgoal  agoal result season
date                                                                         
13/09/11     E2         Brentford      Colchester      1      1      D  11-12
13/09/11     E2      Chesterfield            Bury      1      0      H  11-12
13/09/11     E2            Exeter    Notts County      1      1      D  11-12
13/09/11     E2     Leyton Orient     Bournemouth      1      3      A  11-12
13/09/11     E2          Rochdale      Scunthorpe      1      0      H  11-12
13/09/11     E2  Sheffield United    Huddersfield      0      3      A  11-12
13/09/11     E2         Stevenage  Sheffield Weds      5      1      H  11-12
13/09/11     E2          Tranmere        Carlisle      1      2      A  11-12
13/09/11     E2           Walsall          Oldham      0      1      A  11-12
13/09/11     E2            Yeovil         Wycombe      1      0      H  11-12


13/09/12
         league           home       away  hgoal  agoal result season
date                                                                 
13/09/12     E2  Leyton Orient  Brentford      1      0      H  12-13


13/09/13
         league         home         away  hgoal  agoal result season
date                                                                 
13/09/13     D1       Hertha    Stuttgart      0      1      A  13-14
13/09/13     T1  Galatasaray  Antalyaspor      1      1      D  13-14


13/09/14
         league              home                away  hgoal  agoal result  \
date                                                                         
13/09/14     D1     Bayern Munich           Stuttgart      2      0      H   
13/09/14     D1          Dortmund            Freiburg      3      1      H   
13/09/14     D1            Hertha               Mainz      1      3      A   
13/09/14     D1        Hoffenheim           Wolfsburg      1      1      D   
13/09/14     D1        M'gladbach          Schalke 04      4      1      H   
13/09/14     D1         Paderborn             FC Koln      0      0      D   
13/09/14     I1            Empoli                Roma      0      1      A   
13/09/14     I1          Juventus             Udinese      2      0      H   
13/09/14     T1       Galatasaray       Eskisehirspor      0      0      D   
13/09/14     T1    Genclerbirligi           Bursaspor      1      2      A   
13/09/14     T1       Karabukspor          Buyuksehyr      0      0      D   
13/09/14     T1         Konyaspor       Balikesirspor      2      0      H   
13/09/14     E2          Barnsley  Milton Keynes Dons      3      5      A   
13/09/14     E2          Bradford             Swindon      1      2      A   
13/09/14     E2      Bristol City           Doncaster      3      0      H   
13/09/14     E2      Chesterfield          Scunthorpe      4      1      H   
13/09/14     E2          Coventry              Yeovil      2      1      H   
13/09/14     E2      Crawley Town      Fleetwood Town      1      0      H   
13/09/14     E2             Crewe           Port Vale      2      1      H   
13/09/14     E2     Leyton Orient          Colchester      0      2      A   
13/09/14     E2            Oldham          Gillingham      0      0      D   
13/09/14     E2         Peterboro        Notts County      0      0      D   
13/09/14     E2  Sheffield United            Rochdale      1      0      H   
13/09/14     E2           Walsall             Preston      3      1      H   
13/09/14    SP1         Barcelona          Ath Bilbao      2      0      H   
13/09/14    SP1             Celta            Sociedad      2      2      D   
13/09/14    SP1            Malaga             Levante      0      0      D   
13/09/14    SP1       Real Madrid          Ath Madrid      1      2      A   

         season  
date             
13/09/14  14-15  
13/09/14  14-15  
13/09/14  14-15  
13/09/14  14-15  
13/09/14  14-15  
13/09/14  14-15  
13/09/14  14-15  
13/09/14  14-15  
13/09/14  14-15  
13/09/14  14-15  
13/09/14  14-15  
13/09/14  14-15  
13/09/14  14-15  
13/09/14  14-15  
13/09/14  14-15  
13/09/14  14-15  
13/09/14  14-15  
13/09/14  14-15  
13/09/14  14-15  
13/09/14  14-15  
13/09/14  14-15  
13/09/14  14-15  
13/09/14  14-15  
13/09/14  14-15  
13/09/14  14-15  
13/09/14  14-15  
13/09/14  14-15  
13/09/14  14-15  


13/09/15
         league         home           away  hgoal  agoal result season
date                                                                   
13/09/15     T1     Besiktas     Buyuksehyr      2      0      H  15-16
13/09/15     T1    Kasimpasa     Fenerbahce      0      1      A  15-16
13/09/15     T1  Osmanlispor      Konyaspor      1      2      A  15-16
13/09/15     T1     Rizespor      Sivasspor      1      1      D  15-16
13/09/15     D1   Hoffenheim  Werder Bremen      1      3      A  15-16
13/09/15     D1   Schalke 04          Mainz      2      1      H  15-16
13/09/15     I1       Empoli         Napoli      2      2      D  15-16
13/09/15     I1        Inter          Milan      1      0      H  15-16
13/09/15     I1        Lazio        Udinese      2      0      H  15-16
13/09/15     I1      Palermo          Carpi      2      2      D  15-16
13/09/15     I1     Sassuolo       Atalanta      2      2      D  15-16
13/09/15     I1       Verona         Torino      2      2      D  15-16
13/09/15    SP1   Ath Bilbao         Getafe      3      1      H  15-16
13/09/15    SP1        Celta     Las Palmas      3      3      D  15-16
13/09/15    SP1      Granada     Villarreal      1      3      A  15-16
13/09/15    SP1       Malaga          Eibar      0      0      D  15-16


13/10/12
         league              home           away  hgoal  agoal result season
date                                                                        
13/10/12     E2       Bournemouth  Leyton Orient      2      0      H  12-13
13/10/12     E2          Carlisle   Notts County      0      4      A  12-13
13/10/12     E2        Colchester      Stevenage      1      0      H  12-13
13/10/12     E2      Crawley Town           Bury      3      2      H  12-13
13/10/12     E2        Hartlepool      Doncaster      1      1      D  12-13
13/10/12     E2        Portsmouth          Crewe      2      0      H  12-13
13/10/12     E2        Scunthorpe      Brentford      1      1      D  12-13
13/10/12     E2  Sheffield United         Oldham      1      1      D  12-13
13/10/12     E2           Swindon       Coventry      2      2      D  12-13
13/10/12     E2          Tranmere         Yeovil      3      2      H  12-13


13/10/13
         league      home              away  hgoal  agoal result season
date                                                                   
13/10/13     E2  Bradford          Tranmere      0      1      A  13-14
13/10/13     E2  Coventry  Sheffield United      3      2      H  13-14


13/12/11
         league     home   away  hgoal  agoal result season
date                                                       
13/12/11     I1    Genoa  Inter      0      1      A  11-12
13/12/11     D1  FC Koln  Mainz      1      1      D  11-12


13/12/13
         league        home                  away  hgoal  agoal result season
date                                                                         
13/12/13     D1      Hertha         Werder Bremen      3      2      H  13-14
13/12/13     T1  Fenerbahce  Akhisar Belediyespor      4      0      H  13-14
13/12/13     T1   Konyaspor           Karabukspor      2      3      A  13-14
13/12/13    SP1     Levante                 Elche      2      1      H  13-14


13/12/14
         league                  home                away  hgoal  agoal  \
date                                                                      
13/12/14     D1              Augsburg       Bayern Munich      0      4   
13/12/14     D1              Freiburg             Hamburg      0      0   
13/12/14     D1                Hertha            Dortmund      1      0   
13/12/14     D1                 Mainz           Stuttgart      1      1   
13/12/14     D1            Schalke 04             FC Koln      1      2   
13/12/14     D1         Werder Bremen            Hannover      3      3   
13/12/14     I1                 Lazio            Atalanta      3      0   
13/12/14     I1               Palermo            Sassuolo      2      1   
13/12/14     T1  Akhisar Belediyespor      Genclerbirligi      1      1   
13/12/14     T1            Buyuksehyr       Balikesirspor      1      0   
13/12/14     T1             Kasimpasa       Eskisehirspor      1      0   
13/12/14     T1             Konyaspor         Galatasaray      0      5   
13/12/14     E2          Bristol City        Crawley Town      1      0   
13/12/14     E2          Chesterfield            Bradford      0      1   
13/12/14     E2            Colchester            Rochdale      1      4   
13/12/14     E2             Doncaster          Gillingham      1      2   
13/12/14     E2        Fleetwood Town    Sheffield United      1      1   
13/12/14     E2         Leyton Orient           Peterboro      1      2   
13/12/14     E2          Notts County             Swindon      0      3   
13/12/14     E2                Oldham              Yeovil      0      4   
13/12/14     E2             Port Vale            Coventry      0      2   
13/12/14     E2               Preston  Milton Keynes Dons      1      1   
13/12/14     E2            Scunthorpe               Crewe      2      1   
13/12/14     E2               Walsall            Barnsley      3      1   
13/12/14    SP1               Cordoba             Levante      0      0   
13/12/14    SP1                Getafe           Barcelona      0      0   
13/12/14    SP1                Malaga               Celta      1      0   
13/12/14    SP1              Valencia           Vallecano      3      0   

         result season  
date                    
13/12/14      A  14-15  
13/12/14      D  14-15  
13/12/14      H  14-15  
13/12/14      D  14-15  
13/12/14      A  14-15  
13/12/14      D  14-15  
13/12/14      H  14-15  
13/12/14      H  14-15  
13/12/14      D  14-15  
13/12/14      H  14-15  
13/12/14      H  14-15  
13/12/14      A  14-15  
13/12/14      H  14-15  
13/12/14      A  14-15  
13/12/14      A  14-15  
13/12/14      A  14-15  
13/12/14      D  14-15  
13/12/14      A  14-15  
13/12/14      A  14-15  
13/12/14      A  14-15  
13/12/14      A  14-15  
13/12/14      D  14-15  
13/12/14      H  14-15  
13/12/14      H  14-15  
13/12/14      D  14-15  
13/12/14      D  14-15  
13/12/14      H  14-15  
13/12/14      H  14-15  


13/12/15
         league              home                  away  hgoal  agoal result  \
date                                                                           
13/12/15     T1        Fenerbahce            Buyuksehyr      1      0      H   
13/12/15     T1    Genclerbirligi             Sivasspor      0      1      A   
13/12/15     T1       Kayserispor  Akhisar Belediyespor      3      2      H   
13/12/15     D1          Augsburg            Schalke 04      2      1      H   
13/12/15     D1          Dortmund         Ein Frankfurt      4      1      H   
13/12/15     I1            Chievo              Atalanta      1      0      H   
13/12/15     I1            Empoli                 Carpi      3      0      H   
13/12/15     I1          Juventus            Fiorentina      3      1      H   
13/12/15     I1             Milan                Verona      1      1      D   
13/12/15     I1            Napoli                  Roma      0      0      D   
13/12/15    SP1        Ath Madrid            Ath Bilbao      2      1      H   
13/12/15    SP1             Eibar              Valencia      1      1      D   
13/12/15    SP1         Vallecano                Malaga      1      2      A   
13/12/15    SP1        Villarreal           Real Madrid      1      0      H   
13/12/15     E2  Sheffield United              Coventry      1      0      H   

         season  
date             
13/12/15  15-16  
13/12/15  15-16  
13/12/15  15-16  
13/12/15  15-16  
13/12/15  15-16  
13/12/15  15-16  
13/12/15  15-16  
13/12/15  15-16  
13/12/15  15-16  
13/12/15  15-16  
13/12/15  15-16  
13/12/15  15-16  
13/12/15  15-16  
13/12/15  15-16  
13/12/15  15-16  


14/01/12
         league            home              away  hgoal  agoal result season
date                                                                         
14/01/12    SP1         Granada         Vallecano      1      2      A  11-12
14/01/12    SP1        Mallorca       Real Madrid      1      2      A  11-12
14/01/12    SP1         Sevilla           Espanol      0      0      D  11-12
14/01/12    SP1        Valencia          Sociedad      0      1      A  11-12
14/01/12    SP1        Zaragoza            Getafe      1      1      D  11-12
14/01/12     T1     Galatasaray       Karabukspor      5      1      H  11-12
14/01/12     T1  Genclerbirligi     Eskisehirspor      2      1      H  11-12
14/01/12     E2     Bournemouth      Notts County      2      1      H  11-12
14/01/12     E2       Brentford           Walsall      0      0      D  11-12
14/01/12     E2            Bury  Sheffield United      0      3      A  11-12
14/01/12     E2      Colchester        Scunthorpe      1      1      D  11-12
14/01/12     E2          Exeter        Hartlepool      0      0      D  11-12
14/01/12     E2    Huddersfield            Oldham      1      0      H  11-12
14/01/12     E2   Leyton Orient      Chesterfield      1      1      D  11-12
14/01/12     E2         Preston           Wycombe      3      2      H  11-12
14/01/12     E2        Rochdale         Stevenage      1      5      A  11-12
14/01/12     E2  Sheffield Weds          Charlton      0      1      A  11-12
14/01/12     E2          Yeovil          Tranmere      2      1      H  11-12


14/01/13
         league    home     away  hgoal  agoal result season
date                                                        
14/01/13    SP1  Getafe  Granada      2      2      D  12-13


14/01/14
         league       home     away  hgoal  agoal result season
date                                                           
14/01/14     E2  Stevenage  Swindon      2      0      H  13-14
14/01/14     E2    Walsall   Oldham      1      0      H  13-14


14/02/12
         league            home                away  hgoal  agoal result  \
date                                                                       
14/02/12     E2     Bournemouth       Leyton Orient      1      2      A   
14/02/12     E2            Bury        Chesterfield      1      1      D   
14/02/12     E2        Carlisle            Tranmere      0      0      D   
14/02/12     E2        Charlton  Milton Keynes Dons      2      1      H   
14/02/12     E2      Colchester           Brentford      2      1      H   
14/02/12     E2    Huddersfield    Sheffield United      0      1      A   
14/02/12     E2    Notts County              Exeter      2      1      H   
14/02/12     E2          Oldham             Walsall      2      1      H   
14/02/12     E2         Preston          Hartlepool      1      0      H   
14/02/12     E2      Scunthorpe            Rochdale      1      0      H   
14/02/12     E2  Sheffield Weds           Stevenage      0      1      A   
14/02/12     E2         Wycombe              Yeovil      2      3      A   

         season  
date             
14/02/12  11-12  
14/02/12  11-12  
14/02/12  11-12  
14/02/12  11-12  
14/02/12  11-12  
14/02/12  11-12  
14/02/12  11-12  
14/02/12  11-12  
14/02/12  11-12  
14/02/12  11-12  
14/02/12  11-12  
14/02/12  11-12  


14/02/14
         league       home           away  hgoal  agoal result season
date                                                                 
14/02/14     D1      Mainz       Hannover      2      0      H  13-14
14/02/14     T1   Rizespor  Gaziantepspor      5      1      H  13-14
14/02/14     E2  Peterboro        Walsall      0      0      D  13-14
14/02/14     E2    Swindon     Colchester      0      0      D  13-14
14/02/14    SP1      Elche        Osasuna      0      0      D  13-14
14/02/14     I1      Milan        Bologna      1      0      H  13-14


14/02/15
         league                  home                away  hgoal  agoal  \
date                                                                      
14/02/15     D1         Bayern Munich             Hamburg      8      0   
14/02/15     D1         Ein Frankfurt          Schalke 04      1      0   
14/02/15     D1            Hoffenheim           Stuttgart      2      1   
14/02/15     D1            Leverkusen           Wolfsburg      4      5   
14/02/15     D1            M'gladbach             FC Koln      1      0   
14/02/15     D1         Werder Bremen            Augsburg      3      2   
14/02/15     I1               Palermo              Napoli      3      1   
14/02/15     I1              Sassuolo          Fiorentina      1      3   
14/02/15     T1  Akhisar Belediyespor         Erciyesspor      1      0   
14/02/15     T1         Gaziantepspor          Fenerbahce      0      5   
14/02/15     T1           Karabukspor           Kasimpasa      0      0   
14/02/15     E2          Bristol City    Sheffield United      1      3   
14/02/15     E2          Chesterfield       Leyton Orient      2      3   
14/02/15     E2          Crawley Town            Barnsley      5      1   
14/02/15     E2                 Crewe      Fleetwood Town      2      0   
14/02/15     E2             Doncaster              Yeovil      3      0   
14/02/15     E2            Gillingham  Milton Keynes Dons      4      2   
14/02/15     E2                Oldham          Colchester      0      1   
14/02/15     E2             Peterboro            Rochdale      2      1   
14/02/15     E2            Scunthorpe             Swindon      3      1   
14/02/15     E2               Walsall           Port Vale      0      1   
14/02/15    SP1               Granada          Ath Bilbao      0      0   
14/02/15    SP1                Malaga             Espanol      0      2   
14/02/15    SP1           Real Madrid           La Coruna      2      0   
14/02/15    SP1               Sevilla             Cordoba      3      0   

         result season  
date                    
14/02/15      H  14-15  
14/02/15      H  14-15  
14/02/15      H  14-15  
14/02/15      A  14-15  
14/02/15      H  14-15  
14/02/15      H  14-15  
14/02/15      H  14-15  
14/02/15      A  14-15  
14/02/15      H  14-15  
14/02/15      A  14-15  
14/02/15      D  14-15  
14/02/15      A  14-15  
14/02/15      A  14-15  
14/02/15      H  14-15  
14/02/15      H  14-15  
14/02/15      H  14-15  
14/02/15      H  14-15  
14/02/15      A  14-15  
14/02/15      H  14-15  
14/02/15      H  14-15  
14/02/15      A  14-15  
14/02/15      D  14-15  
14/02/15      A  14-15  
14/02/15      H  14-15  
14/02/15      H  14-15  


14/02/16
         league           home                  away  hgoal  agoal result  \
date                                                                        
14/02/16     T1     Buyuksehyr              Besiktas      2      2      D   
14/02/16     T1  Eskisehirspor           Antalyaspor      3      2      H   
14/02/16     T1  Gaziantepspor  Akhisar Belediyespor      0      1      A   
14/02/16     T1      Sivasspor              Rizespor      2      1      H   
14/02/16     D1       Augsburg         Bayern Munich      1      3      A   
14/02/16     D1        Hamburg            M'gladbach      3      2      H   
14/02/16     I1     Fiorentina                 Inter      2      1      H   
14/02/16     I1          Milan                 Genoa      2      1      H   
14/02/16     I1        Palermo                Torino      1      3      A   
14/02/16     I1      Sampdoria              Atalanta      0      0      D   
14/02/16     I1        Udinese               Bologna      0      1      A   
14/02/16    SP1      Barcelona                 Celta      6      1      H   
14/02/16    SP1          Eibar               Levante      2      0      H   
14/02/16    SP1         Getafe            Ath Madrid      0      1      A   
14/02/16    SP1        Sevilla            Las Palmas      2      0      H   
14/02/16    SP1       Sociedad               Granada      3      0      H   

         season  
date             
14/02/16  15-16  
14/02/16  15-16  
14/02/16  15-16  
14/02/16  15-16  
14/02/16  15-16  
14/02/16  15-16  
14/02/16  15-16  
14/02/16  15-16  
14/02/16  15-16  
14/02/16  15-16  
14/02/16  15-16  
14/02/16  15-16  
14/02/16  15-16  
14/02/16  15-16  
14/02/16  15-16  
14/02/16  15-16  


14/03/14
         league         home         away  hgoal  agoal result season
date                                                                 
14/03/14     D1     Augsburg   Schalke 04      1      2      A  13-14
14/03/14     T1  Karabukspor  Galatasaray      0      0      D  13-14
14/03/14    SP1       Getafe      Granada      3      3      D  13-14


14/03/15
         league                  home                away  hgoal  agoal  \
date                                                                      
14/03/15     D1              Augsburg               Mainz      0      2   
14/03/15     D1              Dortmund             FC Koln      0      0   
14/03/15     D1         Ein Frankfurt           Paderborn      4      0   
14/03/15     D1                Hertha          Schalke 04      2      2   
14/03/15     D1            Hoffenheim             Hamburg      3      0   
14/03/15     D1         Werder Bremen       Bayern Munich      0      4   
14/03/15     I1              Cagliari              Empoli      1      1   
14/03/15     I1               Palermo            Juventus      0      1   
14/03/15     T1  Akhisar Belediyespor         Karabukspor      5      1   
14/03/15     T1           Galatasaray          Buyuksehyr      2      2   
14/03/15     T1              Rizespor           Sivasspor      2      1   
14/03/15     E2          Bristol City          Gillingham      0      0   
14/03/15     E2          Chesterfield            Coventry      2      3   
14/03/15     E2            Colchester        Crawley Town      2      3   
14/03/15     E2             Doncaster           Peterboro      0      2   
14/03/15     E2        Fleetwood Town            Rochdale      1      0   
14/03/15     E2         Leyton Orient              Yeovil      3      0   
14/03/15     E2          Notts County            Bradford      1      1   
14/03/15     E2                Oldham            Barnsley      1      3   
14/03/15     E2             Port Vale             Swindon      0      1   
14/03/15     E2               Preston               Crewe      5      1   
14/03/15     E2            Scunthorpe    Sheffield United      1      1   
14/03/15     E2               Walsall  Milton Keynes Dons      1      1   
14/03/15    SP1                 Celta          Ath Bilbao      1      2   
14/03/15    SP1                 Eibar           Barcelona      0      2   
14/03/15    SP1               Espanol          Ath Madrid      0      0   
14/03/15    SP1             Vallecano             Granada      3      1   

         result season  
date                    
14/03/15      A  14-15  
14/03/15      D  14-15  
14/03/15      H  14-15  
14/03/15      D  14-15  
14/03/15      H  14-15  
14/03/15      A  14-15  
14/03/15      D  14-15  
14/03/15      A  14-15  
14/03/15      H  14-15  
14/03/15      D  14-15  
14/03/15      H  14-15  
14/03/15      D  14-15  
14/03/15      A  14-15  
14/03/15      A  14-15  
14/03/15      A  14-15  
14/03/15      H  14-15  
14/03/15      H  14-15  
14/03/15      D  14-15  
14/03/15      A  14-15  
14/03/15      A  14-15  
14/03/15      H  14-15  
14/03/15      D  14-15  
14/03/15      D  14-15  
14/03/15      A  14-15  
14/03/15      A  14-15  
14/03/15      D  14-15  
14/03/15      H  14-15  


14/03/16
         league         home       away  hgoal  agoal result season
date                                                               
14/03/16     T1  Antalyaspor  Bursaspor      3      0      H  15-16
14/03/16     T1    Sivasspor  Kasimpasa      1      0      H  15-16
14/03/16    SP1      Granada    Espanol      1      1      D  15-16


14/04/12
         league              home                away  hgoal  agoal result  \
date                                                                         
14/04/12    SP1           Levante           Barcelona      1      2      A   
14/04/12    SP1       Real Madrid            Sp Gijon      3      1      H   
14/04/12     D1     Bayern Munich               Mainz      0      0      D   
14/04/12     D1           Hamburg            Hannover      1      0      H   
14/04/12     D1    Kaiserslautern            Nurnberg      0      2      A   
14/04/12     D1        Leverkusen              Hertha      3      3      D   
14/04/12     D1        Schalke 04            Dortmund      1      2      A   
14/04/12     D1         Wolfsburg            Augsburg      1      2      A   
14/04/12     E2         Brentford        Notts County      0      0      D   
14/04/12     E2              Bury         Bournemouth      1      0      H   
14/04/12     E2          Carlisle            Charlton      0      1      A   
14/04/12     E2        Colchester      Sheffield Weds      1      1      D   
14/04/12     E2        Hartlepool        Chesterfield      1      2      A   
14/04/12     E2           Preston        Huddersfield      1      0      H   
14/04/12     E2          Rochdale              Exeter      3      2      H   
14/04/12     E2        Scunthorpe  Milton Keynes Dons      0      3      A   
14/04/12     E2  Sheffield United       Leyton Orient      3      1      H   
14/04/12     E2           Walsall            Tranmere      0      1      A   
14/04/12     E2           Wycombe              Oldham      2      2      D   
14/04/12     E2            Yeovil           Stevenage      0      6      A   

         season  
date             
14/04/12  11-12  
14/04/12  11-12  
14/04/12  11-12  
14/04/12  11-12  
14/04/12  11-12  
14/04/12  11-12  
14/04/12  11-12  
14/04/12  11-12  
14/04/12  11-12  
14/04/12  11-12  
14/04/12  11-12  
14/04/12  11-12  
14/04/12  11-12  
14/04/12  11-12  
14/04/12  11-12  
14/04/12  11-12  
14/04/12  11-12  
14/04/12  11-12  
14/04/12  11-12  
14/04/12  11-12  


14/04/13
         league           home                  away  hgoal  agoal result  \
date                                                                        
14/04/13    SP1     Ath Bilbao           Real Madrid      0      3      A   
14/04/13     I1       Cagliari                 Inter      2      0      H   
14/04/13     I1         Chievo               Catania      0      0      D   
14/04/13     I1          Genoa             Sampdoria      1      1      D   
14/04/13     I1          Milan                Napoli      1      1      D   
14/04/13     I1        Palermo               Bologna      1      1      D   
14/04/13     I1          Parma               Udinese      0      3      A   
14/04/13     I1         Torino                  Roma      1      2      A   
14/04/13     T1     Elazigspor            Buyuksehyr      1      0      H   
14/04/13     T1     Fenerbahce         Eskisehirspor      1      0      H   
14/04/13     T1  Gaziantepspor           Kayserispor      0      1      A   
14/04/13     T1      Kasimpasa  Akhisar Belediyespor      0      1      A   
14/04/13     D1       Augsburg         Ein Frankfurt      2      0      H   
14/04/13     D1      Stuttgart            M'gladbach      2      0      H   

         season  
date             
14/04/13  12-13  
14/04/13  12-13  
14/04/13  12-13  
14/04/13  12-13  
14/04/13  12-13  
14/04/13  12-13  
14/04/13  12-13  
14/04/13  12-13  
14/04/13  12-13  
14/04/13  12-13  
14/04/13  12-13  
14/04/13  12-13  
14/04/13  12-13  
14/04/13  12-13  


14/04/14
         league        home           away  hgoal  agoal result season
date                                                                  
14/04/14     T1  Elazigspor  Gaziantepspor      2      1      H  13-14
14/04/14    SP1  Ath Bilbao         Malaga      3      0      H  13-14
14/04/14     I1     Udinese       Juventus      0      2      A  13-14


14/04/15
         league            home                away  hgoal  agoal result  \
date                                                                       
14/04/15     E2        Bradford        Bristol City      0      6      A   
14/04/15     E2    Chesterfield          Colchester      6      0      H   
14/04/15     E2        Coventry              Oldham      1      1      D   
14/04/15     E2  Fleetwood Town  Milton Keynes Dons      0      3      A   
14/04/15     E2   Leyton Orient           Doncaster      0      1      A   
14/04/15     E2    Notts County            Barnsley      1      1      D   
14/04/15     E2       Peterboro               Crewe      1      1      D   
14/04/15     E2         Preston          Gillingham      2      2      D   
14/04/15     E2        Rochdale             Swindon      2      4      A   
14/04/15     E2      Scunthorpe           Port Vale      1      1      D   
14/04/15     E2         Walsall        Crawley Town      5      0      H   
14/04/15     E2          Yeovil    Sheffield United      1      0      H   

         season  
date             
14/04/15  14-15  
14/04/15  14-15  
14/04/15  14-15  
14/04/15  14-15  
14/04/15  14-15  
14/04/15  14-15  
14/04/15  14-15  
14/04/15  14-15  
14/04/15  14-15  
14/04/15  14-15  
14/04/15  14-15  
14/04/15  14-15  


14/05/15
         league                  home      away  hgoal  agoal result season
date                                                                       
14/05/15     T1  Akhisar Belediyespor  Besiktas      1      1      D  14-15


14/05/16
         league           home           away  hgoal  agoal result season
date                                                                     
14/05/16     T1      Bursaspor      Konyaspor      1      1      D  15-16
14/05/16     T1  Eskisehirspor     Buyuksehyr      1      2      A  15-16
14/05/16     T1    Kayserispor      Sivasspor      1      1      D  15-16
14/05/16     T1       Rizespor  Gaziantepspor      1      0      H  15-16
14/05/16     D1       Augsburg        Hamburg      1      3      A  15-16
14/05/16     D1  Bayern Munich       Hannover      3      1      H  15-16
14/05/16     D1      Darmstadt     M'gladbach      0      2      A  15-16
14/05/16     D1       Dortmund        FC Koln      2      2      D  15-16
14/05/16     D1     Hoffenheim     Schalke 04      1      4      A  15-16
14/05/16     D1     Leverkusen     Ingolstadt      3      2      H  15-16
14/05/16     D1          Mainz         Hertha      0      0      D  15-16
14/05/16     D1  Werder Bremen  Ein Frankfurt      1      0      H  15-16
14/05/16     D1      Wolfsburg      Stuttgart      3      1      H  15-16
14/05/16     I1       Juventus      Sampdoria      5      0      H  15-16
14/05/16     I1          Milan           Roma      1      3      A  15-16
14/05/16     I1         Napoli      Frosinone      4      0      H  15-16
14/05/16     I1       Sassuolo          Inter      3      1      H  15-16
14/05/16    SP1     Ath Bilbao        Sevilla      3      1      H  15-16
14/05/16    SP1     Ath Madrid          Celta      2      0      H  15-16
14/05/16    SP1        Granada      Barcelona      0      3      A  15-16
14/05/16    SP1      La Coruna    Real Madrid      0      2      A  15-16


14/08/11
         league            home           away  hgoal  agoal result season
date                                                                      
14/08/11     D1  Kaiserslautern       Augsburg      1      1      D  11-12
14/08/11     D1      Leverkusen  Werder Bremen      1      0      H  11-12


14/08/15
         league           home           away  hgoal  agoal result season
date                                                                     
14/08/15     T1     Fenerbahce  Eskisehirspor      2      0      H  15-16
14/08/15     D1  Bayern Munich        Hamburg      5      0      H  15-16


14/09/12
         league      home       away  hgoal  agoal result season
date                                                            
14/09/12     D1  Augsburg  Wolfsburg      0      0      D  12-13


14/09/13
         league                home                  away  hgoal  agoal  \
date                                                                      
14/09/13     D1            Augsburg              Freiburg      2      1   
14/09/13     D1       Bayern Munich              Hannover      2      0   
14/09/13     D1            Dortmund               Hamburg      6      2   
14/09/13     D1          Leverkusen             Wolfsburg      3      1   
14/09/13     D1               Mainz            Schalke 04      0      1   
14/09/13     D1       Werder Bremen         Ein Frankfurt      0      3   
14/09/13     T1         Erciyesspor  Akhisar Belediyespor      1      0   
14/09/13     T1       Gaziantepspor              Rizespor      2      5   
14/09/13     T1         Trabzonspor           Karabukspor      1      0   
14/09/13     E2            Bradford            Colchester      2      2   
14/09/13     E2        Bristol City             Peterboro      0      3   
14/09/13     E2            Carlisle      Sheffield United      1      0   
14/09/13     E2        Crawley Town            Shrewsbury      1      1   
14/09/13     E2               Crewe               Walsall      0      3   
14/09/13     E2       Leyton Orient             Port Vale      3      2   
14/09/13     E2  Milton Keynes Dons          Notts County      3      1   
14/09/13     E2             Preston             Stevenage      3      0   
14/09/13     E2           Rotherham                Oldham      3      2   
14/09/13     E2            Tranmere             Brentford      3      4   
14/09/13     E2              Wolves               Swindon      3      2   
14/09/13    SP1          Ath Madrid               Almeria      4      2   
14/09/13    SP1           Barcelona               Sevilla      3      2   
14/09/13    SP1             Levante              Sociedad      0      0   
14/09/13    SP1          Villarreal           Real Madrid      2      2   
14/09/13     I1               Inter              Juventus      1      1   
14/09/13     I1              Napoli              Atalanta      2      0   
14/09/13     I1              Torino                 Milan      2      2   

         result season  
date                    
14/09/13      H  13-14  
14/09/13      H  13-14  
14/09/13      H  13-14  
14/09/13      H  13-14  
14/09/13      A  13-14  
14/09/13      A  13-14  
14/09/13      H  13-14  
14/09/13      A  13-14  
14/09/13      H  13-14  
14/09/13      D  13-14  
14/09/13      A  13-14  
14/09/13      H  13-14  
14/09/13      D  13-14  
14/09/13      A  13-14  
14/09/13      H  13-14  
14/09/13      H  13-14  
14/09/13      H  13-14  
14/09/13      H  13-14  
14/09/13      A  13-14  
14/09/13      H  13-14  
14/09/13      H  13-14  
14/09/13      H  13-14  
14/09/13      D  13-14  
14/09/13      D  13-14  
14/09/13      D  13-14  
14/09/13      H  13-14  
14/09/13      D  13-14  


14/09/14
         league           home                away  hgoal  agoal result season
date                                                                          
14/09/14     D1  Ein Frankfurt            Augsburg      0      1      A  14-15
14/09/14     D1       Hannover             Hamburg      2      0      H  14-15
14/09/14     I1       Cagliari            Atalanta      1      2      A  14-15
14/09/14     I1     Fiorentina               Genoa      0      0      D  14-15
14/09/14     I1          Inter            Sassuolo      7      0      H  14-15
14/09/14     I1          Lazio              Cesena      3      0      H  14-15
14/09/14     I1         Napoli              Chievo      0      1      A  14-15
14/09/14     I1          Parma               Milan      4      5      A  14-15
14/09/14     I1      Sampdoria              Torino      2      0      H  14-15
14/09/14     T1  Gaziantepspor         Erciyesspor      2      2      D  14-15
14/09/14     T1      Kasimpasa  Mersin Idman Yurdu      2      2      D  14-15
14/09/14     T1    Trabzonspor          Fenerbahce      0      0      D  14-15
14/09/14    SP1        Granada          Villarreal      0      0      D  14-15
14/09/14    SP1        Sevilla              Getafe      2      0      H  14-15
14/09/14    SP1       Valencia             Espanol      3      1      H  14-15
14/09/14    SP1      Vallecano               Elche      2      3      A  14-15


14/09/15
         league         home         away  hgoal  agoal result season
date                                                                 
14/09/15     T1  Kayserispor  Trabzonspor      0      1      A  15-16
14/09/15     I1    Sampdoria      Bologna      2      0      H  15-16
14/09/15    SP1    Vallecano    La Coruna      1      3      A  15-16


14/10/11
         league           home        away  hgoal  agoal result season
date                                                                  
14/10/11     D1  Werder Bremen    Dortmund      0      2      A  11-12
14/10/11     T1    Trabzonspor  Ankaragucu      3      2      H  11-12


14/10/12
         league        home                away  hgoal  agoal result season
date                                                                       
14/10/12     E2     Preston  Milton Keynes Dons      0      0      D  12-13
14/10/12     E2  Shrewsbury             Walsall      1      0      H  12-13


14/11/14
         league      home        away  hgoal  agoal result season
date                                                             
14/11/14     E2  Barnsley  Colchester      3      2      H  14-15


14/11/15
         league              home            away  hgoal  agoal result season
date                                                                         
14/11/15     E2          Barnsley       Port Vale      1      2      A  15-16
14/11/15     E2         Blackpool       Doncaster      0      2      A  15-16
14/11/15     E2          Bradford           Crewe      2      0      H  15-16
14/11/15     E2      Chesterfield          Oldham      1      2      A  15-16
14/11/15     E2        Colchester        Coventry      1      3      A  15-16
14/11/15     E2        Gillingham            Bury      3      1      H  15-16
14/11/15     E2         Peterboro  Fleetwood Town      2      1      H  15-16
14/11/15     E2          Rochdale           Wigan      0      2      A  15-16
14/11/15     E2  Sheffield United        Southend      2      2      D  15-16
14/11/15     E2           Swindon      Scunthorpe      2      1      H  15-16


14/12/11
         league         home            away  hgoal  agoal result season
date                                                                    
14/12/11     T1  Trabzonspor  Genclerbirligi      1      2      A  11-12


14/12/12
         league           home        away  hgoal  agoal result season
date                                                                  
14/12/12     T1  Eskisehirspor   Bursaspor      2      2      D  12-13
14/12/12     D1  Bayern Munich  M'gladbach      1      1      D  12-13


14/12/13
         league              home                away  hgoal  agoal result  \
date                                                                         
14/12/13     D1          Augsburg        Braunschweig      4      1      H   
14/12/13     D1     Bayern Munich             Hamburg      3      1      H   
14/12/13     D1          Hannover            Nurnberg      3      3      D   
14/12/13     D1        Hoffenheim            Dortmund      2      2      D   
14/12/13     D1             Mainz          M'gladbach      0      0      D   
14/12/13     D1         Wolfsburg           Stuttgart      3      1      H   
14/12/13     T1        Elazigspor         Antalyaspor      4      1      H   
14/12/13     T1       Kayserispor       Eskisehirspor      1      1      D   
14/12/13     T1         Sivasspor            Rizespor      3      1      H   
14/12/13     E2          Bradford       Leyton Orient      1      1      D   
14/12/13     E2         Brentford              Oldham      1      0      H   
14/12/13     E2      Bristol City           Rotherham      1      2      A   
14/12/13     E2          Carlisle            Tranmere      4      1      H   
14/12/13     E2        Colchester        Notts County      0      4      A   
14/12/13     E2          Coventry               Crewe      2      2      D   
14/12/13     E2      Crawley Town             Preston      2      2      D   
14/12/13     E2        Gillingham           Peterboro      2      2      D   
14/12/13     E2         Port Vale           Stevenage      2      2      D   
14/12/13     E2  Sheffield United             Swindon      1      0      H   
14/12/13     E2        Shrewsbury             Walsall      0      1      A   
14/12/13     E2            Wolves  Milton Keynes Dons      0      2      A   
14/12/13    SP1         Barcelona          Villarreal      2      1      H   
14/12/13    SP1            Malaga              Getafe      1      0      H   
14/12/13    SP1           Osasuna         Real Madrid      2      2      D   
14/12/13    SP1         Vallecano             Granada      0      2      A   
14/12/13     I1           Catania              Verona      0      0      D   

         season  
date             
14/12/13  13-14  
14/12/13  13-14  
14/12/13  13-14  
14/12/13  13-14  
14/12/13  13-14  
14/12/13  13-14  
14/12/13  13-14  
14/12/13  13-14  
14/12/13  13-14  
14/12/13  13-14  
14/12/13  13-14  
14/12/13  13-14  
14/12/13  13-14  
14/12/13  13-14  
14/12/13  13-14  
14/12/13  13-14  
14/12/13  13-14  
14/12/13  13-14  
14/12/13  13-14  
14/12/13  13-14  
14/12/13  13-14  
14/12/13  13-14  
14/12/13  13-14  
14/12/13  13-14  
14/12/13  13-14  
14/12/13  13-14  


14/12/14
         league                home         away  hgoal  agoal result season
date                                                                        
14/12/14     D1          Leverkusen   M'gladbach      1      1      D  14-15
14/12/14     D1           Wolfsburg    Paderborn      1      1      D  14-15
14/12/14     I1              Cesena   Fiorentina      1      4      A  14-15
14/12/14     I1               Genoa         Roma      0      1      A  14-15
14/12/14     I1            Juventus    Sampdoria      1      1      D  14-15
14/12/14     I1               Milan       Napoli      2      0      H  14-15
14/12/14     I1               Parma     Cagliari      0      0      D  14-15
14/12/14     I1             Udinese       Verona      1      2      A  14-15
14/12/14     T1       Gaziantepspor     Besiktas      0      1      A  14-15
14/12/14     T1         Karabukspor    Bursaspor      3      2      H  14-15
14/12/14     T1  Mersin Idman Yurdu  Erciyesspor      1      1      D  14-15
14/12/14    SP1          Ath Madrid   Villarreal      0      1      A  14-15
14/12/14    SP1             Espanol      Granada      2      1      H  14-15
14/12/14    SP1             Sevilla        Eibar      0      0      D  14-15
14/12/14    SP1            Sociedad   Ath Bilbao      1      1      D  14-15


14/12/15
         league      home         away  hgoal  agoal result season
date                                                              
14/12/15     T1  Besiktas  Galatasaray      2      1      H  15-16
14/12/15     I1     Lazio    Sampdoria      1      1      D  15-16


15/01/12
         league                home         away  hgoal  agoal result season
date                                                                        
15/01/12    SP1          Ath Bilbao      Levante      3      0      H  11-12
15/01/12    SP1          Ath Madrid   Villarreal      3      0      H  11-12
15/01/12    SP1           Barcelona        Betis      4      2      H  11-12
15/01/12    SP1             Osasuna    Santander      0      2      A  11-12
15/01/12    SP1            Sp Gijon       Malaga      2      1      H  11-12
15/01/12     I1              Cesena       Novara      3      1      H  11-12
15/01/12     I1              Chievo      Palermo      1      0      H  11-12
15/01/12     I1          Fiorentina        Lecce      0      1      A  11-12
15/01/12     I1               Genoa      Udinese      3      2      H  11-12
15/01/12     I1            Juventus     Cagliari      1      1      D  11-12
15/01/12     I1               Lazio     Atalanta      2      0      H  11-12
15/01/12     I1               Milan        Inter      0      1      A  11-12
15/01/12     I1               Parma        Siena      3      1      H  11-12
15/01/12     T1            Besiktas    Bursaspor      3      1      H  11-12
15/01/12     T1  Mersin Idman Yurdu  Antalyaspor      0      2      A  11-12
15/01/12     T1            Orduspor   Buyuksehyr      1      0      H  11-12
15/01/12     T1           Sivasspor   Ankaragucu      3      0      H  11-12
15/01/12     T1         Trabzonspor   Samsunspor      4      0      H  11-12


15/02/12
         league      home      away  hgoal  agoal result season
date                                                           
15/02/12     I1  Atalanta     Genoa      1      0      H  11-12
15/02/12     I1     Parma  Juventus      0      0      D  11-12


15/02/13
         league                  home           away  hgoal  agoal result  \
date                                                                        
15/02/13    SP1               Sevilla      La Coruna      3      1      H   
15/02/13     I1                 Milan          Parma      2      1      H   
15/02/13     T1  Akhisar Belediyespor    Galatasaray      1      2      A   
15/02/13     E2              Tranmere     Shrewsbury      0      2      A   
15/02/13     D1             Wolfsburg  Bayern Munich      0      2      A   

         season  
date             
15/02/13  12-13  
15/02/13  12-13  
15/02/13  12-13  
15/02/13  12-13  
15/02/13  12-13  


15/02/14
         league                home            away  hgoal  agoal result  \
date                                                                       
15/02/14     D1       Bayern Munich        Freiburg      4      0      H   
15/02/14     D1        Braunschweig         Hamburg      4      2      H   
15/02/14     D1            Dortmund   Ein Frankfurt      4      0      H   
15/02/14     D1          Hoffenheim       Stuttgart      4      1      H   
15/02/14     D1          Leverkusen      Schalke 04      1      2      A   
15/02/14     D1       Werder Bremen      M'gladbach      1      1      D   
15/02/14     T1         Karabukspor     Trabzonspor      2      2      D   
15/02/14     T1         Kayserispor  Genclerbirligi      1      0      H   
15/02/14     E2        Bristol City        Tranmere      2      2      D   
15/02/14     E2               Crewe       Brentford      1      3      A   
15/02/14     E2  Milton Keynes Dons          Oldham      2      1      H   
15/02/14     E2             Preston   Leyton Orient      1      1      D   
15/02/14     E2           Rotherham       Stevenage      2      1      H   
15/02/14     E2          Shrewsbury       Port Vale      0      0      D   
15/02/14     E2              Wolves    Notts County      2      0      H   
15/02/14    SP1          Ath Madrid      Valladolid      3      0      H   
15/02/14    SP1           Barcelona       Vallecano      6      0      H   
15/02/14    SP1             Levante         Almeria      1      0      H   
15/02/14    SP1          Villarreal           Celta      0      2      A   
15/02/14     I1          Fiorentina           Inter      1      2      A   

         season  
date             
15/02/14  13-14  
15/02/14  13-14  
15/02/14  13-14  
15/02/14  13-14  
15/02/14  13-14  
15/02/14  13-14  
15/02/14  13-14  
15/02/14  13-14  
15/02/14  13-14  
15/02/14  13-14  
15/02/14  13-14  
15/02/14  13-14  
15/02/14  13-14  
15/02/14  13-14  
15/02/14  13-14  
15/02/14  13-14  
15/02/14  13-14  
15/02/14  13-14  
15/02/14  13-14  
15/02/14  13-14  


15/02/15
         league         home                away  hgoal  agoal result season
date                                                                        
15/02/15     D1     Hannover           Paderborn      1      2      A  14-15
15/02/15     D1       Hertha            Freiburg      0      2      A  14-15
15/02/15     I1     Atalanta               Inter      1      4      A  14-15
15/02/15     I1       Cesena            Juventus      2      2      D  14-15
15/02/15     I1       Chievo           Sampdoria      2      1      H  14-15
15/02/15     I1        Genoa              Verona      5      2      H  14-15
15/02/15     I1        Milan              Empoli      1      1      D  14-15
15/02/15     I1         Roma               Parma      0      0      D  14-15
15/02/15     I1       Torino            Cagliari      1      1      D  14-15
15/02/15     I1      Udinese               Lazio      0      1      A  14-15
15/02/15     T1     Besiktas           Bursaspor      3      2      H  14-15
15/02/15     T1    Konyaspor           Sivasspor      0      1      A  14-15
15/02/15     T1     Rizespor  Mersin Idman Yurdu      0      4      A  14-15
15/02/15     T1  Trabzonspor          Buyuksehyr      3      2      H  14-15
15/02/15    SP1    Barcelona             Levante      5      0      H  14-15
15/02/15    SP1        Celta          Ath Madrid      2      0      H  14-15
15/02/15    SP1     Valencia              Getafe      1      0      H  14-15
15/02/15    SP1    Vallecano          Villarreal      2      0      H  14-15


15/02/16
         league         home         away  hgoal  agoal result season
date                                                                 
15/02/16     T1  Trabzonspor  Kayserispor      2      1      H  15-16


15/03/13
         league           home                away  hgoal  agoal result season
date                                                                          
15/03/13    SP1      La Coruna               Celta      3      1      H  12-13
15/03/13     T1      Bursaspor         Trabzonspor      3      2      H  12-13
15/03/13     T1  Eskisehirspor          Elazigspor      2      2      D  12-13
15/03/13     D1      Wolfsburg  Fortuna Dusseldorf      1      1      D  12-13


15/03/14
         league                  home            away  hgoal  agoal result  \
date                                                                         
15/03/14     D1         Bayern Munich      Leverkusen      2      1      H   
15/03/14     D1          Braunschweig       Wolfsburg      1      1      D   
15/03/14     D1              Dortmund      M'gladbach      1      2      A   
15/03/14     D1                Hertha        Hannover      0      3      A   
15/03/14     D1            Hoffenheim           Mainz      2      4      A   
15/03/14     D1         Werder Bremen       Stuttgart      1      1      D   
15/03/14     T1  Akhisar Belediyespor     Antalyaspor      0      0      D   
15/03/14     T1             Kasimpasa  Genclerbirligi      1      2      A   
15/03/14     T1              Rizespor        Besiktas      2      2      D   
15/03/14     E2              Bradford      Gillingham      1      1      D   
15/03/14     E2          Bristol City         Swindon      0      0      D   
15/03/14     E2              Carlisle       Stevenage      0      0      D   
15/03/14     E2          Crawley Town      Colchester      1      0      H   
15/03/14     E2                 Crewe          Oldham      1      1      D   
15/03/14     E2         Leyton Orient       Brentford      0      1      A   
15/03/14     E2    Milton Keynes Dons       Peterboro      0      2      A   
15/03/14     E2             Rotherham         Walsall      1      1      D   
15/03/14     E2              Tranmere    Notts County      3      2      H   
15/03/14     E2                Wolves      Shrewsbury      0      0      D   
15/03/14    SP1            Ath Madrid         Espanol      1      0      H   
15/03/14    SP1               Levante           Celta      0      1      A   
15/03/14    SP1                Malaga     Real Madrid      0      1      A   
15/03/14    SP1             Vallecano         Almeria      3      1      H   
15/03/14     I1                Verona           Inter      0      2      A   

         season  
date             
15/03/14  13-14  
15/03/14  13-14  
15/03/14  13-14  
15/03/14  13-14  
15/03/14  13-14  
15/03/14  13-14  
15/03/14  13-14  
15/03/14  13-14  
15/03/14  13-14  
15/03/14  13-14  
15/03/14  13-14  
15/03/14  13-14  
15/03/14  13-14  
15/03/14  13-14  
15/03/14  13-14  
15/03/14  13-14  
15/03/14  13-14  
15/03/14  13-14  
15/03/14  13-14  
15/03/14  13-14  
15/03/14  13-14  
15/03/14  13-14  
15/03/14  13-14  
15/03/14  13-14  


15/03/15
         league            home                away  hgoal  agoal result  \
date                                                                       
15/03/15     D1      M'gladbach            Hannover      2      0      H   
15/03/15     D1       Wolfsburg            Freiburg      3      0      H   
15/03/15     I1        Atalanta             Udinese      0      0      D   
15/03/15     I1           Genoa              Chievo      0      2      A   
15/03/15     I1           Inter              Cesena      1      1      D   
15/03/15     I1        Sassuolo               Parma      4      1      H   
15/03/15     I1          Verona              Napoli      2      0      H   
15/03/15     T1        Besiktas         Erciyesspor      5      1      H   
15/03/15     T1   Eskisehirspor  Mersin Idman Yurdu      2      0      H   
15/03/15     T1  Genclerbirligi          Fenerbahce      2      1      H   
15/03/15    SP1         Almeria          Villarreal      0      0      D   
15/03/15    SP1          Malaga             Cordoba      2      0      H   
15/03/15    SP1     Real Madrid             Levante      2      0      H   
15/03/15    SP1         Sevilla               Elche      3      0      H   

         season  
date             
15/03/15  14-15  
15/03/15  14-15  
15/03/15  14-15  
15/03/15  14-15  
15/03/15  14-15  
15/03/15  14-15  
15/03/15  14-15  
15/03/15  14-15  
15/03/15  14-15  
15/03/15  14-15  
15/03/15  14-15  
15/03/15  14-15  
15/03/15  14-15  
15/03/15  14-15  


15/03/16
         league            home       away  hgoal  agoal result season
date                                                                  
15/03/16     T1     Trabzonspor   Besiktas      0      2      A  15-16
15/03/16     E2  Fleetwood Town    Walsall      0      1      A  15-16
15/03/16     E2          Oldham  Blackpool      1      0      H  15-16


15/04/12
         league        home        away  hgoal  agoal result season
date                                                               
15/04/12    SP1  Ath Bilbao    Mallorca      1      0      H  11-12
15/04/12    SP1       Betis     Osasuna      1      0      H  11-12
15/04/12    SP1     Espanol    Valencia      4      0      H  11-12
15/04/12    SP1      Malaga    Sociedad      1      1      D  11-12
15/04/12    SP1   Vallecano  Ath Madrid      0      1      A  11-12
15/04/12    SP1  Villarreal   Santander      1      1      D  11-12
15/04/12    SP1    Zaragoza     Granada      1      0      H  11-12
15/04/12     D1    Freiburg  Hoffenheim      0      0      D  11-12
15/04/12     D1  M'gladbach     FC Koln      3      0      H  11-12


15/04/13
         league      home         away  hgoal  agoal result season
date                                                              
15/04/13     I1     Lazio     Juventus      0      2      A  12-13
15/04/13     T1  Besiktas  Antalyaspor      1      0      H  12-13


15/04/14
         league          home      away  hgoal  agoal result season
date                                                               
15/04/14     E2  Crawley Town  Tranmere      2      0      H  13-14


15/04/15
         league   home   away  hgoal  agoal result season
date                                                     
15/04/15     I1  Genoa  Parma      2      0      H  14-15


15/04/16
         league      home        away  hgoal  agoal result season
date                                                             
15/04/16     D1  Hannover  M'gladbach      2      0      H  15-16
15/04/16    SP1   Levante     Espanol      2      1      H  15-16


15/05/16
         league                  home                away  hgoal  agoal  \
date                                                                      
15/05/16     T1  Akhisar Belediyespor         Galatasaray      1      2   
15/05/16     T1              Besiktas         Osmanlispor      3      1   
15/05/16     T1            Fenerbahce      Genclerbirligi      2      1   
15/05/16     T1             Kasimpasa  Mersin Idman Yurdu      7      0   
15/05/16     I1                Chievo             Bologna      0      0   
15/05/16     I1                Empoli              Torino      2      1   
15/05/16     I1                 Genoa            Atalanta      1      2   
15/05/16     I1                 Lazio          Fiorentina      2      4   
15/05/16     I1               Palermo              Verona      3      2   
15/05/16     I1               Udinese               Carpi      1      2   
15/05/16    SP1                 Betis              Getafe      2      1   
15/05/16    SP1               Espanol               Eibar      4      2   
15/05/16    SP1                Malaga          Las Palmas      4      1   
15/05/16    SP1              Sp Gijon          Villarreal      2      0   
15/05/16    SP1             Vallecano             Levante      3      1   

         result season  
date                    
15/05/16      A  15-16  
15/05/16      H  15-16  
15/05/16      H  15-16  
15/05/16      H  15-16  
15/05/16      D  15-16  
15/05/16      H  15-16  
15/05/16      A  15-16  
15/05/16      A  15-16  
15/05/16      H  15-16  
15/05/16      A  15-16  
15/05/16      H  15-16  
15/05/16      H  15-16  
15/05/16      H  15-16  
15/05/16      H  15-16  
15/05/16      H  15-16  


15/08/15
         league              home            away  hgoal  agoal result season
date                                                                         
15/08/15     T1        Buyuksehyr     Antalyaspor      2      3      A  15-16
15/08/15     T1         Sivasspor     Galatasaray      2      2      D  15-16
15/08/15     T1       Trabzonspor       Bursaspor      1      0      H  15-16
15/08/15     D1          Augsburg          Hertha      0      1      A  15-16
15/08/15     D1         Darmstadt        Hannover      2      2      D  15-16
15/08/15     D1          Dortmund      M'gladbach      4      0      H  15-16
15/08/15     D1        Leverkusen      Hoffenheim      2      1      H  15-16
15/08/15     D1             Mainz      Ingolstadt      0      1      A  15-16
15/08/15     D1     Werder Bremen      Schalke 04      0      3      A  15-16
15/08/15     E2          Barnsley          Burton      1      0      H  15-16
15/08/15     E2         Blackpool        Rochdale      0      2      A  15-16
15/08/15     E2          Bradford      Shrewsbury      1      1      D  15-16
15/08/15     E2              Bury         Swindon      2      2      D  15-16
15/08/15     E2          Millwall        Coventry      0      4      A  15-16
15/08/15     E2            Oldham  Fleetwood Town      1      0      H  15-16
15/08/15     E2         Peterboro      Colchester      2      1      H  15-16
15/08/15     E2         Port Vale      Gillingham      1      1      D  15-16
15/08/15     E2        Scunthorpe           Crewe      2      0      H  15-16
15/08/15     E2  Sheffield United    Chesterfield      2      0      H  15-16
15/08/15     E2          Southend         Walsall      0      2      A  15-16


15/09/12
         league                home                away  hgoal  agoal result  \
date                                                                           
15/09/12    SP1              Getafe           Barcelona      1      4      A   
15/09/12    SP1              Malaga             Levante      3      1      H   
15/09/12    SP1             Sevilla         Real Madrid      1      0      H   
15/09/12    SP1            Valencia               Celta      2      1      H   
15/09/12     I1               Milan            Atalanta      0      1      A   
15/09/12     I1             Palermo            Cagliari      1      1      D   
15/09/12     T1         Antalyaspor         Galatasaray      0      4      A   
15/09/12     T1           Bursaspor         Karabukspor      4      1      H   
15/09/12     T1           Kasimpasa       Gaziantepspor      3      0      H   
15/09/12     E2         Bournemouth          Hartlepool      1      1      D   
15/09/12     E2            Carlisle             Swindon      2      2      D   
15/09/12     E2          Colchester           Doncaster      1      2      A   
15/09/12     E2  Milton Keynes Dons              Yeovil      1      0      H   
15/09/12     E2              Oldham        Notts County      2      2      D   
15/09/12     E2          Portsmouth             Walsall      1      2      A   
15/09/12     E2             Preston        Crawley Town      1      2      A   
15/09/12     E2    Sheffield United                Bury      1      1      D   
15/09/12     E2          Shrewsbury          Scunthorpe      0      1      A   
15/09/12     E2           Stevenage               Crewe      2      2      D   
15/09/12     E2            Tranmere            Coventry      2      0      H   
15/09/12     D1       Bayern Munich               Mainz      3      1      H   
15/09/12     D1            Dortmund          Leverkusen      3      0      H   
15/09/12     D1      Greuther Furth          Schalke 04      0      2      A   
15/09/12     D1            Hannover       Werder Bremen      3      2      H   
15/09/12     D1          M'gladbach            Nurnberg      2      3      A   
15/09/12     D1           Stuttgart  Fortuna Dusseldorf      0      0      D   

         season  
date             
15/09/12  12-13  
15/09/12  12-13  
15/09/12  12-13  
15/09/12  12-13  
15/09/12  12-13  
15/09/12  12-13  
15/09/12  12-13  
15/09/12  12-13  
15/09/12  12-13  
15/09/12  12-13  
15/09/12  12-13  
15/09/12  12-13  
15/09/12  12-13  
15/09/12  12-13  
15/09/12  12-13  
15/09/12  12-13  
15/09/12  12-13  
15/09/12  12-13  
15/09/12  12-13  
15/09/12  12-13  
15/09/12  12-13  
15/09/12  12-13  
15/09/12  12-13  
15/09/12  12-13  
15/09/12  12-13  
15/09/12  12-13  


15/09/13
         league            home           away  hgoal  agoal result season
date                                                                      
15/09/13     D1    Braunschweig       Nurnberg      1      1      D  13-14
15/09/13     D1      Hoffenheim     M'gladbach      2      1      H  13-14
15/09/13     T1       Bursaspor       Besiktas      0      3      A  13-14
15/09/13     T1      Elazigspor      Konyaspor      2      0      H  13-14
15/09/13     T1  Genclerbirligi    Kayserispor      1      1      D  13-14
15/09/13     T1       Sivasspor  Eskisehirspor      3      2      H  13-14
15/09/13     E2        Coventry     Gillingham      2      1      H  13-14
15/09/13    SP1           Betis       Valencia      3      1      H  13-14
15/09/13    SP1          Getafe        Osasuna      2      1      H  13-14
15/09/13    SP1         Granada        Espanol      0      1      A  13-14
15/09/13    SP1          Malaga      Vallecano      5      0      H  13-14
15/09/13     I1      Fiorentina       Cagliari      1      1      D  13-14
15/09/13     I1           Lazio         Chievo      3      0      H  13-14
15/09/13     I1         Livorno        Catania      2      0      H  13-14
15/09/13     I1       Sampdoria          Genoa      0      3      A  13-14
15/09/13     I1         Udinese        Bologna      1      1      D  13-14
15/09/13     I1          Verona       Sassuolo      2      0      H  13-14


15/09/14
         league                  home       away  hgoal  agoal result season
date                                                                        
15/09/14     I1                Verona    Palermo      2      1      H  14-15
15/09/14     T1  Akhisar Belediyespor  Sivasspor      2      2      D  14-15
15/09/14     T1              Besiktas   Rizespor      1      1      D  14-15
15/09/14    SP1                 Eibar  La Coruna      0      1      A  14-15


15/09/15
         league              home        away  hgoal  agoal result season
date                                                                     
15/09/15     E2         Port Vale    Millwall      0      2      A  15-16
15/09/15     E2  Sheffield United  Colchester      2      3      A  15-16


15/10/11
         league                home            away  hgoal  agoal result  \
date                                                                       
15/10/11    SP1           Barcelona       Santander      3      0      H   
15/10/11    SP1              Getafe      Villarreal      0      0      D   
15/10/11    SP1             Granada      Ath Madrid      0      0      D   
15/10/11    SP1            Mallorca        Valencia      1      1      D   
15/10/11    SP1         Real Madrid           Betis      4      1      H   
15/10/11     I1             Catania           Inter      2      1      H   
15/10/11     I1               Milan         Palermo      3      0      H   
15/10/11     I1              Napoli           Parma      1      2      A   
15/10/11     D1       Bayern Munich          Hertha      4      0      H   
15/10/11     D1               Mainz        Augsburg      0      1      A   
15/10/11     D1          M'gladbach      Leverkusen      2      2      D   
15/10/11     D1          Schalke 04  Kaiserslautern      1      2      A   
15/10/11     D1           Stuttgart      Hoffenheim      2      0      H   
15/10/11     D1           Wolfsburg        Nurnberg      2      1      H   
15/10/11     T1            Besiktas     Kayserispor      0      2      A   
15/10/11     T1            Orduspor   Eskisehirspor      2      1      H   
15/10/11     T1           Sivasspor   Gaziantepspor      0      0      D   
15/10/11     E2           Brentford      Scunthorpe      0      0      D   
15/10/11     E2        Chesterfield    Notts County      1      3      A   
15/10/11     E2              Exeter    Huddersfield      0      4      A   
15/10/11     E2          Hartlepool         Wycombe      1      3      A   
15/10/11     E2       Leyton Orient            Bury      1      0      H   
15/10/11     E2  Milton Keynes Dons     Bournemouth      2      2      D   
15/10/11     E2            Rochdale      Colchester      2      2      D   
15/10/11     E2           Stevenage        Charlton      1      0      H   
15/10/11     E2            Tranmere          Oldham      1      0      H   
15/10/11     E2             Walsall         Preston      1      0      H   
15/10/11     E2              Yeovil        Carlisle      0      3      A   

         season  
date             
15/10/11  11-12  
15/10/11  11-12  
15/10/11  11-12  
15/10/11  11-12  
15/10/11  11-12  
15/10/11  11-12  
15/10/11  11-12  
15/10/11  11-12  
15/10/11  11-12  
15/10/11  11-12  
15/10/11  11-12  
15/10/11  11-12  
15/10/11  11-12  
15/10/11  11-12  
15/10/11  11-12  
15/10/11  11-12  
15/10/11  11-12  
15/10/11  11-12  
15/10/11  11-12  
15/10/11  11-12  
15/10/11  11-12  
15/10/11  11-12  
15/10/11  11-12  
15/10/11  11-12  
15/10/11  11-12  
15/10/11  11-12  
15/10/11  11-12  
15/10/11  11-12  


15/11/14
         league        home              away  hgoal  agoal result season
date                                                                     
15/11/14     E2    Coventry      Notts County      0      1      A  14-15
15/11/14     E2       Crewe      Chesterfield      0      0      D  14-15
15/11/14     E2   Doncaster  Sheffield United      0      1      A  14-15
15/11/14     E2  Gillingham     Leyton Orient      3      2      H  14-15
15/11/14     E2      Oldham      Crawley Town      1      1      D  14-15
15/11/14     E2   Port Vale          Rochdale      1      0      H  14-15
15/11/14     E2     Preston          Bradford      1      2      A  14-15
15/11/14     E2     Swindon      Bristol City      1      0      H  14-15
15/11/14     E2     Walsall         Peterboro      0      0      D  14-15
15/11/14     E2      Yeovil    Fleetwood Town      0      1      A  14-15


15/12/12
         league                home                  away  hgoal  agoal  \
date                                                                      
15/12/12    SP1              Getafe               Osasuna      1      1   
15/12/12    SP1             Granada              Sociedad      0      0   
15/12/12    SP1            Mallorca            Ath Bilbao      0      1   
15/12/12    SP1             Sevilla                Malaga      0      2   
15/12/12     I1               Lazio                 Inter      1      0   
15/12/12     I1             Udinese               Palermo      1      1   
15/12/12     T1          Elazigspor         Gaziantepspor      0      0   
15/12/12     T1      Genclerbirligi              Besiktas      1      1   
15/12/12     T1  Mersin Idman Yurdu  Akhisar Belediyespor      2      1   
15/12/12     E2         Bournemouth            Colchester      1      0   
15/12/12     E2               Crewe                  Bury      1      0   
15/12/12     E2           Doncaster              Coventry      1      4   
15/12/12     E2       Leyton Orient            Scunthorpe      1      3   
15/12/12     E2  Milton Keynes Dons            Hartlepool      1      0   
15/12/12     E2        Notts County             Brentford      1      2   
15/12/12     E2              Oldham               Swindon      0      2   
15/12/12     E2          Portsmouth               Preston      0      0   
15/12/12     E2    Sheffield United              Tranmere      0      0   
15/12/12     E2          Shrewsbury              Carlisle      2      1   
15/12/12     E2           Stevenage          Crawley Town      1      2   
15/12/12     E2             Walsall                Yeovil      2      2   
15/12/12     D1  Fortuna Dusseldorf              Hannover      2      1   
15/12/12     D1      Greuther Furth              Augsburg      1      1   
15/12/12     D1          Leverkusen               Hamburg      3      0   
15/12/12     D1               Mainz             Stuttgart      3      1   
15/12/12     D1          Schalke 04              Freiburg      1      3   
15/12/12     D1           Wolfsburg         Ein Frankfurt      0      2   

         result season  
date                    
15/12/12      D  12-13  
15/12/12      D  12-13  
15/12/12      A  12-13  
15/12/12      A  12-13  
15/12/12      H  12-13  
15/12/12      D  12-13  
15/12/12      D  12-13  
15/12/12      D  12-13  
15/12/12      H  12-13  
15/12/12      H  12-13  
15/12/12      H  12-13  
15/12/12      A  12-13  
15/12/12      A  12-13  
15/12/12      H  12-13  
15/12/12      A  12-13  
15/12/12      A  12-13  
15/12/12      D  12-13  
15/12/12      D  12-13  
15/12/12      H  12-13  
15/12/12      A  12-13  
15/12/12      D  12-13  
15/12/12      H  12-13  
15/12/12      D  12-13  
15/12/12      H  12-13  
15/12/12      H  12-13  
15/12/12      A  12-13  
15/12/12      A  12-13  


15/12/13
         league            home           away  hgoal  agoal result season
date                                                                      
15/12/13     D1      Leverkusen  Ein Frankfurt      0      1      A  13-14
15/12/13     D1      Schalke 04       Freiburg      2      0      H  13-14
15/12/13     T1   Gaziantepspor    Erciyesspor      2      1      H  13-14
15/12/13     T1  Genclerbirligi    Galatasaray      1      1      D  13-14
15/12/13    SP1         Almeria        Espanol      0      0      D  13-14
15/12/13    SP1      Ath Madrid       Valencia      3      0      H  13-14
15/12/13    SP1         Sevilla     Ath Bilbao      1      1      D  13-14
15/12/13    SP1        Sociedad          Betis      5      1      H  13-14
15/12/13     I1          Chievo      Sampdoria      0      1      A  13-14
15/12/13     I1      Fiorentina        Bologna      3      0      H  13-14
15/12/13     I1           Genoa       Atalanta      1      1      D  13-14
15/12/13     I1        Juventus       Sassuolo      4      0      H  13-14
15/12/13     I1           Lazio        Livorno      2      0      H  13-14
15/12/13     I1          Napoli          Inter      4      2      H  13-14
15/12/13     I1           Parma       Cagliari      0      0      D  13-14
15/12/13     I1         Udinese         Torino      0      2      A  13-14


15/12/14
         league         home      away  hgoal  agoal result season
date                                                              
15/12/14     I1       Chievo     Inter      0      2      A  14-15
15/12/14     I1       Empoli    Torino      0      0      D  14-15
15/12/14     T1  Trabzonspor  Rizespor      3      2      H  14-15
15/12/14    SP1    La Coruna     Elche      1      0      H  14-15


16/01/12
         league         home           away  hgoal  agoal result season
date                                                                   
16/01/12     I1       Napoli        Bologna      1      1      D  11-12
16/01/12     T1  Kayserispor  Gaziantepspor      1      1      D  11-12
16/01/12     T1   Manisaspor     Fenerbahce      1      2      A  11-12


16/01/13
         league      home      away  hgoal  agoal result season
date                                                           
16/01/13     E2  Coventry  Tranmere      1      0      H  12-13


16/01/15
         league     home           away  hgoal  agoal result season
date                                                               
16/01/15     E2  Preston  Leyton Orient      2      2      D  14-15
16/01/15    SP1  Cordoba          Eibar      1      1      D  14-15


16/01/16
         league                  home              away  hgoal  agoal result  \
date                                                                           
16/01/16     T1  Akhisar Belediyespor         Konyaspor      0      2      A   
16/01/16     T1           Galatasaray         Sivasspor      3      1      H   
16/01/16     T1             Kasimpasa     Gaziantepspor      1      2      A   
16/01/16     T1           Kayserispor       Osmanlispor      1      0      H   
16/01/16     I1              Atalanta             Inter      1      1      D   
16/01/16     I1                Napoli          Sassuolo      3      1      H   
16/01/16     I1                Torino         Frosinone      4      2      H   
16/01/16    SP1                 Celta           Levante      4      3      H   
16/01/16    SP1               Sevilla            Malaga      2      1      H   
16/01/16    SP1              Sociedad         La Coruna      1      1      D   
16/01/16    SP1            Villarreal             Betis      0      0      D   
16/01/16     E2             Blackpool        Scunthorpe      5      0      H   
16/01/16     E2              Bradford            Oldham      1      0      H   
16/01/16     E2                  Bury           Walsall      2      3      A   
16/01/16     E2            Colchester  Sheffield United      1      2      A   
16/01/16     E2              Coventry            Burton      0      2      A   
16/01/16     E2             Doncaster        Gillingham      2      2      D   
16/01/16     E2             Peterboro          Southend      0      0      D   
16/01/16     E2            Shrewsbury          Barnsley      0      3      A   

         season  
date             
16/01/16  15-16  
16/01/16  15-16  
16/01/16  15-16  
16/01/16  15-16  
16/01/16  15-16  
16/01/16  15-16  
16/01/16  15-16  
16/01/16  15-16  
16/01/16  15-16  
16/01/16  15-16  
16/01/16  15-16  
16/01/16  15-16  
16/01/16  15-16  
16/01/16  15-16  
16/01/16  15-16  
16/01/16  15-16  
16/01/16  15-16  
16/01/16  15-16  
16/01/16  15-16  


16/02/13
         league                home            away  hgoal  agoal result  \
date                                                                       
16/02/13    SP1              Getafe           Celta      3      1      H   
16/02/13    SP1             Granada       Barcelona      1      2      A   
16/02/13    SP1              Malaga      Ath Bilbao      1      0      H   
16/02/13    SP1             Osasuna        Zaragoza      1      0      H   
16/02/13     I1              Chievo         Palermo      1      1      D   
16/02/13     I1                Roma        Juventus      1      0      H   
16/02/13     T1         Antalyaspor     Karabukspor      0      0      D   
16/02/13     T1            Besiktas   Gaziantepspor      1      1      D   
16/02/13     T1       Eskisehirspor     Kayserispor      0      3      A   
16/02/13     E2                Bury        Coventry      0      2      A   
16/02/13     E2          Hartlepool   Leyton Orient      2      1      H   
16/02/13     E2          Portsmouth        Carlisle      1      1      D   
16/02/13     E2             Preston     Bournemouth      2      0      H   
16/02/13     E2    Sheffield United      Colchester      3      0      H   
16/02/13     E2             Walsall    Notts County      1      1      D   
16/02/13     D1            Dortmund   Ein Frankfurt      3      0      H   
16/02/13     D1  Fortuna Dusseldorf  Greuther Furth      1      0      H   
16/02/13     D1             Hamburg      M'gladbach      1      0      H   
16/02/13     D1          Leverkusen        Augsburg      2      1      H   
16/02/13     D1               Mainz      Schalke 04      2      2      D   
16/02/13     D1       Werder Bremen        Freiburg      2      3      A   

         season  
date             
16/02/13  12-13  
16/02/13  12-13  
16/02/13  12-13  
16/02/13  12-13  
16/02/13  12-13  
16/02/13  12-13  
16/02/13  12-13  
16/02/13  12-13  
16/02/13  12-13  
16/02/13  12-13  
16/02/13  12-13  
16/02/13  12-13  
16/02/13  12-13  
16/02/13  12-13  
16/02/13  12-13  
16/02/13  12-13  
16/02/13  12-13  
16/02/13  12-13  
16/02/13  12-13  
16/02/13  12-13  
16/02/13  12-13  


16/02/14
         league                  home         away  hgoal  agoal result season
date                                                                          
16/02/14     D1              Augsburg     Nurnberg      0      1      A  13-14
16/02/14     D1                Hertha    Wolfsburg      1      2      A  13-14
16/02/14     T1  Akhisar Belediyespor  Erciyesspor      0      2      A  13-14
16/02/14     T1              Besiktas    Bursaspor      1      0      H  13-14
16/02/14     T1            Fenerbahce    Kasimpasa      2      1      H  13-14
16/02/14    SP1            Ath Bilbao      Espanol      1      2      A  13-14
16/02/14    SP1                Getafe  Real Madrid      0      3      A  13-14
16/02/14    SP1               Granada        Betis      1      0      H  13-14
16/02/14    SP1               Sevilla     Valencia      0      0      D  13-14
16/02/14     I1              Atalanta        Parma      0      4      A  13-14
16/02/14     I1              Cagliari      Livorno      1      2      A  13-14
16/02/14     I1               Catania        Lazio      3      1      H  13-14
16/02/14     I1                 Genoa      Udinese      3      3      D  13-14
16/02/14     I1              Juventus       Chievo      3      1      H  13-14
16/02/14     I1                  Roma    Sampdoria      3      0      H  13-14
16/02/14     I1              Sassuolo       Napoli      0      2      A  13-14


16/02/15
         league            home           away  hgoal  agoal result season
date                                                                      
16/02/15     T1     Galatasaray  Balikesirspor      3      1      H  14-15
16/02/15     T1  Genclerbirligi  Eskisehirspor      1      2      A  14-15
16/02/15    SP1           Eibar          Elche      0      1      A  14-15


16/02/16
         league        home              away  hgoal  agoal result season
date                                                                     
16/02/16     E2   Blackpool            Oldham      0      0      D  15-16
16/02/16     E2    Bradford          Southend      2      0      H  15-16
16/02/16     E2        Bury  Sheffield United      1      0      H  15-16
16/02/16     E2  Colchester      Chesterfield      1      1      D  15-16
16/02/16     E2    Millwall        Scunthorpe      0      2      A  15-16
16/02/16     E2    Rochdale             Crewe      2      2      D  15-16


16/03/12
         league            home         away  hgoal  agoal result season
date                                                                    
16/03/12     D1      Hoffenheim    Stuttgart      1      2      A  11-12
16/03/12     T1  Genclerbirligi  Trabzonspor      1      1      D  11-12


16/03/13
         league                home                away  hgoal  agoal result  \
date                                                                           
16/03/13    SP1              Getafe          Ath Bilbao      1      0      H   
16/03/13    SP1         Real Madrid            Mallorca      5      2      H   
16/03/13    SP1            Sociedad          Valladolid      4      1      H   
16/03/13    SP1            Valencia               Betis      3      0      H   
16/03/13     I1             Bologna            Juventus      0      2      A   
16/03/13     I1             Catania             Udinese      3      1      H   
16/03/13     T1            Besiktas           Kasimpasa      1      3      A   
16/03/13     T1          Buyuksehyr  Mersin Idman Yurdu      4      2      H   
16/03/13     T1      Genclerbirligi         Karabukspor      2      1      H   
16/03/13     E2           Brentford             Preston      1      0      H   
16/03/13     E2                Bury          Colchester      1      2      A   
16/03/13     E2            Coventry          Hartlepool      1      0      H   
16/03/13     E2               Crewe          Shrewsbury      1      1      D   
16/03/13     E2           Doncaster          Portsmouth      1      1      D   
16/03/13     E2       Leyton Orient            Carlisle      4      1      H   
16/03/13     E2  Milton Keynes Dons            Tranmere      3      0      H   
16/03/13     E2        Notts County          Scunthorpe      1      0      H   
16/03/13     E2              Oldham         Bournemouth      0      1      A   
16/03/13     E2           Stevenage    Sheffield United      4      0      H   
16/03/13     E2             Walsall        Crawley Town      2      2      D   
16/03/13     D1            Dortmund            Freiburg      5      1      H   
16/03/13     D1             Hamburg            Augsburg      0      1      A   
16/03/13     D1          Hoffenheim               Mainz      0      0      D   
16/03/13     D1          Leverkusen       Bayern Munich      1      2      A   
16/03/13     D1            Nurnberg          Schalke 04      3      0      H   
16/03/13     D1       Werder Bremen      Greuther Furth      2      2      D   

         season  
date             
16/03/13  12-13  
16/03/13  12-13  
16/03/13  12-13  
16/03/13  12-13  
16/03/13  12-13  
16/03/13  12-13  
16/03/13  12-13  
16/03/13  12-13  
16/03/13  12-13  
16/03/13  12-13  
16/03/13  12-13  
16/03/13  12-13  
16/03/13  12-13  
16/03/13  12-13  
16/03/13  12-13  
16/03/13  12-13  
16/03/13  12-13  
16/03/13  12-13  
16/03/13  12-13  
16/03/13  12-13  
16/03/13  12-13  
16/03/13  12-13  
16/03/13  12-13  
16/03/13  12-13  
16/03/13  12-13  
16/03/13  12-13  


16/03/14
         league           home           away  hgoal  agoal result season
date                                                                     
16/03/14     D1  Ein Frankfurt       Freiburg      1      4      A  13-14
16/03/14     D1        Hamburg       Nurnberg      2      1      H  13-14
16/03/14     T1  Eskisehirspor     Elazigspor      1      0      H  13-14
16/03/14     T1     Fenerbahce    Erciyesspor      2      1      H  13-14
16/03/14     T1      Konyaspor  Gaziantepspor      0      1      A  13-14
16/03/14     T1      Sivasspor    Trabzonspor      0      4      A  13-14
16/03/14     E2       Coventry      Port Vale      2      2      D  13-14
16/03/14    SP1      Barcelona        Osasuna      7      0      H  13-14
16/03/14    SP1          Elche          Betis      0      0      D  13-14
16/03/14    SP1        Sevilla     Valladolid      4      1      H  13-14
16/03/14    SP1       Sociedad       Valencia      1      0      H  13-14
16/03/14     I1       Atalanta      Sampdoria      3      0      H  13-14
16/03/14     I1       Cagliari          Lazio      0      2      A  13-14
16/03/14     I1     Fiorentina         Chievo      3      1      H  13-14
16/03/14     I1          Genoa       Juventus      0      1      A  13-14
16/03/14     I1        Livorno        Bologna      2      1      H  13-14
16/03/14     I1          Milan          Parma      2      4      A  13-14
16/03/14     I1       Sassuolo        Catania      3      1      H  13-14


16/03/15
         league           home         away  hgoal  agoal result season
date                                                                   
16/03/15     I1     Fiorentina        Milan      2      1      H  14-15
16/03/15     I1           Roma    Sampdoria      0      2      A  14-15
16/03/15     I1         Torino        Lazio      0      2      A  14-15
16/03/15     T1  Gaziantepspor  Trabzonspor      2      0      H  14-15
16/03/15    SP1         Getafe     Sociedad      0      1      A  14-15


16/04/12
         league    home     away  hgoal  agoal result season
date                                                        
16/04/12    SP1  Getafe  Sevilla      5      1      H  11-12


16/04/13
         league              home                away  hgoal  agoal result  \
date                                                                         
16/04/13     E2              Bury          Scunthorpe      2      1      H   
16/04/13     E2        Colchester  Milton Keynes Dons      0      2      A   
16/04/13     E2            Oldham              Yeovil      1      0      H   
16/04/13     E2  Sheffield United           Brentford      2      2      D   
16/04/13     E2           Swindon               Crewe      4      1      H   

         season  
date             
16/04/13  12-13  
16/04/13  12-13  
16/04/13  12-13  
16/04/13  12-13  
16/04/13  12-13  


16/04/16
         league            home              away  hgoal  agoal result season
date                                                                         
16/04/16     T1     Antalyaspor       Galatasaray      4      2      H  15-16
16/04/16     T1   Eskisehirspor         Konyaspor      1      2      A  15-16
16/04/16     T1        Rizespor       Osmanlispor      0      1      A  15-16
16/04/16     T1       Sivasspor          Besiktas      1      2      A  15-16
16/04/16     D1        Augsburg         Stuttgart      1      0      H  15-16
16/04/16     D1   Bayern Munich        Schalke 04      3      0      H  15-16
16/04/16     D1       Darmstadt        Ingolstadt      2      0      H  15-16
16/04/16     D1      Hoffenheim            Hertha      2      1      H  15-16
16/04/16     D1      Leverkusen     Ein Frankfurt      3      0      H  15-16
16/04/16     D1   Werder Bremen         Wolfsburg      3      2      H  15-16
16/04/16     I1         Bologna            Torino      0      1      A  15-16
16/04/16     I1           Carpi             Genoa      4      1      H  15-16
16/04/16     I1           Inter            Napoli      2      0      H  15-16
16/04/16    SP1           Celta             Betis      1      1      D  15-16
16/04/16    SP1           Eibar          Sociedad      2      1      H  15-16
16/04/16    SP1          Getafe       Real Madrid      1      5      A  15-16
16/04/16    SP1      Las Palmas          Sp Gijon      1      1      D  15-16
16/04/16     E2          Burton          Barnsley      0      0      D  15-16
16/04/16     E2    Chesterfield  Sheffield United      0      3      A  15-16
16/04/16     E2      Colchester         Peterboro      1      4      A  15-16
16/04/16     E2        Coventry          Millwall      2      1      H  15-16
16/04/16     E2           Crewe        Scunthorpe      2      3      A  15-16
16/04/16     E2       Doncaster             Wigan      3      1      H  15-16
16/04/16     E2  Fleetwood Town            Oldham      1      1      D  15-16
16/04/16     E2      Gillingham         Port Vale      0      2      A  15-16
16/04/16     E2        Rochdale         Blackpool      3      0      H  15-16
16/04/16     E2      Shrewsbury          Bradford      1      1      D  15-16
16/04/16     E2         Swindon              Bury      0      1      A  15-16
16/04/16     E2         Walsall          Southend      1      0      H  15-16


16/05/14
         league           home        away  hgoal  agoal result season
date                                                                  
16/05/14     T1  Eskisehirspor   Konyaspor      1      1      D  13-14
16/05/14     T1    Kayserispor  Fenerbahce      0      2      A  13-14
16/05/14    SP1         Malaga     Levante      1      0      H  13-14


16/05/15
         league           home            away  hgoal  agoal result season
date                                                                      
16/05/15     D1       Augsburg        Hannover      1      2      A  14-15
16/05/15     D1       Freiburg   Bayern Munich      2      1      H  14-15
16/05/15     D1         Hertha   Ein Frankfurt      0      0      D  14-15
16/05/15     D1     Leverkusen      Hoffenheim      2      0      H  14-15
16/05/15     D1          Mainz         FC Koln      2      0      H  14-15
16/05/15     D1     Schalke 04       Paderborn      1      0      H  14-15
16/05/15     D1      Stuttgart         Hamburg      2      1      H  14-15
16/05/15     D1  Werder Bremen      M'gladbach      0      2      A  14-15
16/05/15     D1      Wolfsburg        Dortmund      2      1      H  14-15
16/05/15     I1          Inter        Juventus      1      2      A  14-15
16/05/15     I1      Sampdoria           Lazio      0      1      A  14-15
16/05/15     T1  Balikesirspor     Karabukspor      4      2      H  14-15
16/05/15     T1    Galatasaray  Genclerbirligi      1      0      H  14-15
16/05/15     T1      Sivasspor       Kasimpasa      1      1      D  14-15


16/08/11
         league              home                away  hgoal  agoal result  \
date                                                                         
16/08/11     E2       Bournemouth           Stevenage      1      3      A   
16/08/11     E2              Bury      Sheffield Weds      2      1      H   
16/08/11     E2      Chesterfield             Preston      0      2      A   
16/08/11     E2        Colchester            Charlton      0      2      A   
16/08/11     E2            Exeter           Brentford      1      2      A   
16/08/11     E2        Hartlepool        Huddersfield      0      0      D   
16/08/11     E2     Leyton Orient             Wycombe      1      3      A   
16/08/11     E2      Notts County            Tranmere      3      2      H   
16/08/11     E2          Rochdale            Carlisle      0      0      D   
16/08/11     E2        Scunthorpe              Oldham      1      2      A   
16/08/11     E2  Sheffield United             Walsall      3      2      H   
16/08/11     E2            Yeovil  Milton Keynes Dons      0      1      A   

         season  
date             
16/08/11  11-12  
16/08/11  11-12  
16/08/11  11-12  
16/08/11  11-12  
16/08/11  11-12  
16/08/11  11-12  
16/08/11  11-12  
16/08/11  11-12  
16/08/11  11-12  
16/08/11  11-12  
16/08/11  11-12  
16/08/11  11-12  


16/08/13
         league         home         away  hgoal  agoal result season
date                                                                 
16/08/13     T1  Antalyaspor  Erciyesspor      0      0      D  13-14


16/08/14
         league          home                away  hgoal  agoal result season
date                                                                         
16/08/14     E2  Bristol City          Colchester      2      1      H  14-15
16/08/14     E2  Chesterfield            Rochdale      2      1      H  14-15
16/08/14     E2      Coventry    Sheffield United      1      0      H  14-15
16/08/14     E2  Crawley Town             Swindon      1      0      H  14-15
16/08/14     E2         Crewe            Barnsley      1      2      A  14-15
16/08/14     E2     Doncaster           Port Vale      1      3      A  14-15
16/08/14     E2    Gillingham              Yeovil      2      0      H  14-15
16/08/14     E2  Notts County      Fleetwood Town      0      1      A  14-15
16/08/14     E2        Oldham       Leyton Orient      1      3      A  14-15
16/08/14     E2     Peterboro  Milton Keynes Dons      3      2      H  14-15
16/08/14     E2    Scunthorpe             Preston      0      4      A  14-15
16/08/14     E2       Walsall            Bradford      0      0      D  14-15


16/08/15
         league                home                  away  hgoal  agoal  \
date                                                                      
16/08/15     T1       Gaziantepspor             Kasimpasa      0      3   
16/08/15     T1           Konyaspor  Akhisar Belediyespor      1      1   
16/08/15     T1  Mersin Idman Yurdu              Besiktas      2      5   
16/08/15     T1         Osmanlispor           Kayserispor      1      1   
16/08/15     D1           Stuttgart               FC Koln      1      3   
16/08/15     D1           Wolfsburg         Ein Frankfurt      2      1   
16/08/15     E2               Wigan             Doncaster      0      0   

         result season  
date                    
16/08/15      A  15-16  
16/08/15      D  15-16  
16/08/15      A  15-16  
16/08/15      D  15-16  
16/08/15      A  15-16  
16/08/15      H  15-16  
16/08/15      D  15-16  


16/09/11
         league           home         away  hgoal  agoal result season
date                                                                   
16/09/11     D1       Freiburg    Stuttgart      1      2      A  11-12
16/09/11     T1  Gaziantepspor   Fenerbahce      1      3      A  11-12
16/09/11     T1    Kayserispor  Antalyaspor      0      1      A  11-12


16/09/12
         league                  home                away  hgoal  agoal  \
date                                                                      
16/09/12    SP1            Ath Madrid           Vallecano      4      3   
16/09/12    SP1               Espanol          Ath Bilbao      3      3   
16/09/12    SP1               Granada           La Coruna      1      1   
16/09/12    SP1               Osasuna            Mallorca      1      1   
16/09/12    SP1              Sociedad            Zaragoza      2      0   
16/09/12     I1                Chievo               Lazio      1      3   
16/09/12     I1            Fiorentina             Catania      2      0   
16/09/12     I1                 Genoa            Juventus      1      3   
16/09/12     I1                Napoli               Parma      3      1   
16/09/12     I1               Pescara           Sampdoria      2      3   
16/09/12     I1                  Roma             Bologna      2      3   
16/09/12     I1                 Siena             Udinese      2      2   
16/09/12     I1                Torino               Inter      0      2   
16/09/12     T1  Akhisar Belediyespor          Buyuksehyr      0      4   
16/09/12     T1         Eskisehirspor      Genclerbirligi      4      2   
16/09/12     T1            Fenerbahce  Mersin Idman Yurdu      2      1   
16/09/12     T1           Trabzonspor           Sivasspor      1      0   
16/09/12     D1         Ein Frankfurt             Hamburg      3      2   
16/09/12     D1              Freiburg          Hoffenheim      5      3   

         result season  
date                    
16/09/12      H  12-13  
16/09/12      D  12-13  
16/09/12      D  12-13  
16/09/12      D  12-13  
16/09/12      H  12-13  
16/09/12      A  12-13  
16/09/12      H  12-13  
16/09/12      A  12-13  
16/09/12      H  12-13  
16/09/12      A  12-13  
16/09/12      A  12-13  
16/09/12      D  12-13  
16/09/12      A  12-13  
16/09/12      A  12-13  
16/09/12      H  12-13  
16/09/12      H  12-13  
16/09/12      H  12-13  
16/09/12      H  12-13  
16/09/12      H  12-13  


16/09/13
         league        home        away  hgoal  agoal result season
date                                                               
16/09/13     T1   Kasimpasa  Fenerbahce      2      3      A  13-14
16/09/13    SP1  Ath Bilbao       Celta      3      2      H  13-14
16/09/13    SP1       Elche  Valladolid      0      0      D  13-14
16/09/13     I1       Parma        Roma      1      3      A  13-14


16/09/14
         league                home              away  hgoal  agoal result  \
date                                                                         
16/09/14     E2          Colchester  Sheffield United      2      3      A   
16/09/14     E2           Doncaster      Crawley Town      0      0      D   
16/09/14     E2          Gillingham         Peterboro      2      1      H   
16/09/14     E2  Milton Keynes Dons          Bradford      1      2      A   
16/09/14     E2        Notts County     Leyton Orient      1      1      D   
16/09/14     E2           Port Vale      Bristol City      0      3      A   
16/09/14     E2             Preston      Chesterfield      3      3      D   
16/09/14     E2            Rochdale           Walsall      4      0      H   
16/09/14     E2          Scunthorpe          Coventry      2      1      H   
16/09/14     E2             Swindon            Oldham      2      2      D   
16/09/14     E2              Yeovil             Crewe      1      1      D   

         season  
date             
16/09/14  14-15  
16/09/14  14-15  
16/09/14  14-15  
16/09/14  14-15  
16/09/14  14-15  
16/09/14  14-15  
16/09/14  14-15  
16/09/14  14-15  
16/09/14  14-15  
16/09/14  14-15  
16/09/14  14-15  


16/10/11
         league              home            away  hgoal  agoal result season
date                                                                         
16/10/11    SP1           Levante          Malaga      3      0      H  11-12
16/10/11    SP1           Sevilla        Sp Gijon      2      1      H  11-12
16/10/11    SP1         Vallecano         Espanol      0      1      A  11-12
16/10/11    SP1          Zaragoza        Sociedad      2      0      H  11-12
16/10/11     I1          Atalanta         Udinese      0      0      D  11-12
16/10/11     I1          Cagliari           Siena      0      0      D  11-12
16/10/11     I1            Cesena      Fiorentina      0      0      D  11-12
16/10/11     I1            Chievo        Juventus      0      0      D  11-12
16/10/11     I1             Genoa           Lecce      0      0      D  11-12
16/10/11     I1             Lazio            Roma      2      1      H  11-12
16/10/11     I1            Novara         Bologna      0      2      A  11-12
16/10/11     D1           FC Koln        Hannover      2      0      H  11-12
16/10/11     D1          Freiburg         Hamburg      1      2      A  11-12
16/10/11     T1        Buyuksehyr      Samsunspor      3      0      H  11-12
16/10/11     T1       Galatasaray       Bursaspor      2      1      H  11-12
16/10/11     T1    Genclerbirligi     Antalyaspor      3      0      H  11-12
16/10/11     T1        Manisaspor     Karabukspor      2      1      H  11-12
16/10/11     E2  Sheffield United  Sheffield Weds      2      2      D  11-12


16/10/12
         league           home        away  hgoal  agoal result season
date                                                                  
16/10/12     E2           Bury    Carlisle      1      1      D  12-13
16/10/12     E2  Leyton Orient  Hartlepool      1      0      H  12-13


16/10/15
         league   home      away  hgoal  agoal result season
date                                                        
16/10/15     D1  Mainz  Dortmund      0      2      A  15-16


16/11/12
         league         home                away  hgoal  agoal result season
date                                                                        
16/11/12     T1  Galatasaray         Karabukspor      1      3      A  12-13
16/11/12     E2     Tranmere  Milton Keynes Dons      0      1      A  12-13


16/11/13
         league              home          away  hgoal  agoal result season
date                                                                       
16/11/13     E2         Brentford         Crewe      5      0      H  13-14
16/11/13     E2          Carlisle  Crawley Town      1      1      D  13-14
16/11/13     E2        Colchester       Swindon      1      2      A  13-14
16/11/13     E2     Leyton Orient       Preston      0      1      A  13-14
16/11/13     E2      Notts County        Wolves      0      1      A  13-14
16/11/13     E2         Port Vale    Shrewsbury      3      1      H  13-14
16/11/13     E2  Sheffield United    Gillingham      1      2      A  13-14
16/11/13     E2         Stevenage     Rotherham      0      3      A  13-14
16/11/13     E2          Tranmere  Bristol City      1      1      D  13-14


16/12/11
         league           home         away  hgoal  agoal result season
date                                                                   
16/12/11     D1  Bayern Munich      FC Koln      3      0      H  11-12
16/12/11     T1       Orduspor  Galatasaray      0      2      A  11-12


16/12/12
         league           home         away  hgoal  agoal result season
date                                                                   
16/12/12    SP1      Barcelona   Ath Madrid      4      1      H  12-13
16/12/12    SP1    Real Madrid      Espanol      2      2      D  12-13
16/12/12    SP1       Valencia    Vallecano      0      1      A  12-13
16/12/12    SP1       Zaragoza      Levante      0      1      A  12-13
16/12/12     I1        Catania    Sampdoria      3      1      H  12-13
16/12/12     I1         Chievo         Roma      1      0      H  12-13
16/12/12     I1     Fiorentina        Siena      4      1      H  12-13
16/12/12     I1          Genoa       Torino      1      1      D  12-13
16/12/12     I1       Juventus     Atalanta      3      0      H  12-13
16/12/12     I1          Milan      Pescara      4      1      H  12-13
16/12/12     I1         Napoli      Bologna      2      3      A  12-13
16/12/12     I1          Parma     Cagliari      4      1      H  12-13
16/12/12     T1     Buyuksehyr  Trabzonspor      2      1      H  12-13
16/12/12     T1    Galatasaray   Fenerbahce      2      1      H  12-13
16/12/12     T1    Karabukspor    Sivasspor      1      0      H  12-13
16/12/12     T1       Orduspor  Antalyaspor      1      1      D  12-13
16/12/12     D1     Hoffenheim     Dortmund      1      3      A  12-13
16/12/12     D1  Werder Bremen     Nurnberg      1      1      D  12-13


16/12/13
         league         home       away  hgoal  agoal result season
date                                                               
16/12/13     T1  Trabzonspor  Bursaspor      2      2      D  13-14
16/12/13    SP1   Valladolid      Celta      3      0      H  13-14
16/12/13     I1        Milan       Roma      2      2      D  13-14


16/12/14
         league           home       away  hgoal  agoal result season
date                                                                 
16/12/14     D1  Bayern Munich   Freiburg      2      0      H  14-15
16/12/14     D1        FC Koln      Mainz      0      0      D  14-15
16/12/14     D1        Hamburg  Stuttgart      0      1      A  14-15
16/12/14     D1       Hannover   Augsburg      2      0      H  14-15


17/01/12
         league      home      away  hgoal  agoal result season
date                                                           
17/01/12     E2  Tranmere  Rochdale      0      0      D  11-12


17/01/14
         league    home      away  hgoal  agoal result season
date                                                         
17/01/14    SP1  Malaga  Valencia      0      0      D  13-14


17/01/15
         league                home              away  hgoal  agoal result  \
date                                                                         
17/01/15     I1              Empoli             Inter      0      0      D   
17/01/15     I1             Palermo              Roma      1      1      D   
17/01/15     E2          Colchester           Walsall      0      2      A   
17/01/15     E2           Doncaster          Barnsley      1      0      H   
17/01/15     E2      Fleetwood Town            Oldham      0      2      A   
17/01/15     E2          Gillingham          Coventry      3      1      H   
17/01/15     E2  Milton Keynes Dons  Sheffield United      1      0      H   
17/01/15     E2        Notts County             Crewe      2      1      H   
17/01/15     E2           Port Vale         Peterboro      2      1      H   
17/01/15     E2            Rochdale      Crawley Town      4      1      H   
17/01/15     E2          Scunthorpe      Bristol City      0      2      A   
17/01/15     E2             Swindon      Chesterfield      3      1      H   
17/01/15     E2              Yeovil          Bradford      1      0      H   
17/01/15    SP1             Espanol             Celta      1      0      H   
17/01/15    SP1            Sociedad         Vallecano      0      1      A   
17/01/15    SP1            Valencia           Almeria      3      2      H   
17/01/15    SP1          Villarreal        Ath Bilbao      2      0      H   

         season  
date             
17/01/15  14-15  
17/01/15  14-15  
17/01/15  14-15  
17/01/15  14-15  
17/01/15  14-15  
17/01/15  14-15  
17/01/15  14-15  
17/01/15  14-15  
17/01/15  14-15  
17/01/15  14-15  
17/01/15  14-15  
17/01/15  14-15  
17/01/15  14-15  
17/01/15  14-15  
17/01/15  14-15  
17/01/15  14-15  
17/01/15  14-15  


17/01/16
         league         home            away  hgoal  agoal result season
date                                                                    
17/01/16     T1  Antalyaspor      Buyuksehyr      1      2      A  15-16
17/01/16     T1    Bursaspor     Trabzonspor      4      2      H  15-16
17/01/16     T1     Rizespor  Genclerbirligi      2      3      A  15-16
17/01/16     I1      Bologna           Lazio      2      2      D  15-16
17/01/16     I1        Carpi       Sampdoria      2      1      H  15-16
17/01/16     I1       Chievo          Empoli      1      1      D  15-16
17/01/16     I1        Genoa         Palermo      4      0      H  15-16
17/01/16     I1        Milan      Fiorentina      2      0      H  15-16
17/01/16     I1         Roma          Verona      1      1      D  15-16
17/01/16     I1      Udinese        Juventus      0      4      A  15-16
17/01/16    SP1    Barcelona      Ath Bilbao      6      0      H  15-16
17/01/16    SP1       Getafe         Espanol      3      1      H  15-16
17/01/16    SP1   Las Palmas      Ath Madrid      0      3      A  15-16
17/01/16    SP1  Real Madrid        Sp Gijon      5      1      H  15-16
17/01/16    SP1     Valencia       Vallecano      2      2      D  15-16


17/02/12
         league                home         away  hgoal  agoal result season
date                                                                        
17/02/12     I1          Fiorentina       Napoli      0      3      A  11-12
17/02/12     I1               Inter      Bologna      0      3      A  11-12
17/02/12     D1          Hoffenheim        Mainz      1      1      D  11-12
17/02/12     T1  Mersin Idman Yurdu  Galatasaray      1      3      A  11-12


17/02/13
         league            home                away  hgoal  agoal result  \
date                                                                       
17/02/13    SP1         Espanol               Betis      1      0      H   
17/02/13    SP1     Real Madrid           Vallecano      2      0      H   
17/02/13    SP1        Sociedad             Levante      1      1      D   
17/02/13    SP1        Valencia            Mallorca      2      0      H   
17/02/13    SP1      Valladolid          Ath Madrid      0      3      A   
17/02/13     I1         Catania             Bologna      1      0      H   
17/02/13     I1      Fiorentina               Inter      4      1      H   
17/02/13     I1           Genoa             Udinese      1      0      H   
17/02/13     I1          Napoli           Sampdoria      0      0      D   
17/02/13     I1         Pescara            Cagliari      0      2      A   
17/02/13     I1          Torino            Atalanta      2      1      H   
17/02/13     T1       Bursaspor          Elazigspor      1      0      H   
17/02/13     T1  Genclerbirligi  Mersin Idman Yurdu      3      1      H   
17/02/13     T1        Orduspor          Buyuksehyr      2      2      D   
17/02/13     T1     Trabzonspor          Fenerbahce      0      3      A   
17/02/13     D1      Hoffenheim           Stuttgart      0      1      A   
17/02/13     D1        Nurnberg            Hannover      2      2      D   

         season  
date             
17/02/13  12-13  
17/02/13  12-13  
17/02/13  12-13  
17/02/13  12-13  
17/02/13  12-13  
17/02/13  12-13  
17/02/13  12-13  
17/02/13  12-13  
17/02/13  12-13  
17/02/13  12-13  
17/02/13  12-13  
17/02/13  12-13  
17/02/13  12-13  
17/02/13  12-13  
17/02/13  12-13  
17/02/13  12-13  
17/02/13  12-13  


17/02/14
         league           home         away  hgoal  agoal result season
date                                                                   
17/02/14     T1    Antalyaspor  Galatasaray      2      2      D  13-14
17/02/14     T1  Eskisehirspor    Sivasspor      2      2      D  13-14
17/02/14     T1      Konyaspor   Elazigspor      2      3      A  13-14
17/02/14    SP1         Malaga     Sociedad      0      1      A  13-14
17/02/14     I1         Verona       Torino      1      3      A  13-14


17/02/15
         league          home                away  hgoal  agoal result season
date                                                                         
17/02/15     E2  Bristol City           Peterboro      2      0      H  14-15
17/02/15     E2    Colchester  Milton Keynes Dons      0      1      A  14-15
17/02/15     E2     Doncaster               Crewe      2      1      H  14-15
17/02/15     E2  Notts County    Sheffield United      1      2      A  14-15
17/02/15     E2    Scunthorpe        Chesterfield      2      0      H  14-15


17/02/16
         league      home                away  hgoal  agoal result season
date                                                                     
17/02/16     T1  Besiktas  Mersin Idman Yurdu      1      0      H  15-16
17/02/16    SP1  Sp Gijon           Barcelona      1      3      A  15-16


17/03/12
         league              home                away  hgoal  agoal result  \
date                                                                         
17/03/12    SP1            Getafe            Sociedad      1      0      H   
17/03/12    SP1           Granada            Sp Gijon      2      1      H   
17/03/12    SP1           Sevilla           Barcelona      0      2      A   
17/03/12    SP1         Vallecano               Betis      3      0      H   
17/03/12    SP1          Zaragoza             Osasuna      1      1      D   
17/03/12     I1        Fiorentina            Juventus      0      5      A   
17/03/12     I1             Parma               Milan      0      2      A   
17/03/12     D1          Augsburg               Mainz      2      1      H   
17/03/12     D1          Dortmund       Werder Bremen      1      0      H   
17/03/12     D1           Hamburg            Freiburg      1      3      A   
17/03/12     D1            Hertha       Bayern Munich      0      6      A   
17/03/12     D1        Leverkusen          M'gladbach      1      2      A   
17/03/12     D1          Nurnberg           Wolfsburg      1      3      A   
17/03/12     T1       Antalyaspor       Eskisehirspor      0      0      D   
17/03/12     T1         Bursaspor          Ankaragucu      2      1      H   
17/03/12     T1        Fenerbahce         Galatasaray      2      2      D   
17/03/12     T1         Sivasspor            Orduspor      1      1      D   
17/03/12     E2       Bournemouth            Carlisle      1      1      D   
17/03/12     E2              Bury             Wycombe      1      4      A   
17/03/12     E2      Chesterfield  Milton Keynes Dons      1      1      D   
17/03/12     E2        Colchester        Huddersfield      1      1      D   
17/03/12     E2            Exeter             Preston      1      2      A   
17/03/12     E2        Hartlepool           Stevenage      0      0      D   
17/03/12     E2     Leyton Orient           Brentford      2      0      H   
17/03/12     E2      Notts County      Sheffield Weds      1      2      A   
17/03/12     E2          Rochdale              Oldham      3      2      H   
17/03/12     E2        Scunthorpe            Charlton      1      1      D   
17/03/12     E2  Sheffield United            Tranmere      1      1      D   
17/03/12     E2            Yeovil             Walsall      2      1      H   

         season  
date             
17/03/12  11-12  
17/03/12  11-12  
17/03/12  11-12  
17/03/12  11-12  
17/03/12  11-12  
17/03/12  11-12  
17/03/12  11-12  
17/03/12  11-12  
17/03/12  11-12  
17/03/12  11-12  
17/03/12  11-12  
17/03/12  11-12  
17/03/12  11-12  
17/03/12  11-12  
17/03/12  11-12  
17/03/12  11-12  
17/03/12  11-12  
17/03/12  11-12  
17/03/12  11-12  
17/03/12  11-12  
17/03/12  11-12  
17/03/12  11-12  
17/03/12  11-12  
17/03/12  11-12  
17/03/12  11-12  
17/03/12  11-12  
17/03/12  11-12  
17/03/12  11-12  
17/03/12  11-12  


17/03/13
         league                  home           away  hgoal  agoal result  \
date                                                                        
17/03/13    SP1             Barcelona      Vallecano      3      1      H   
17/03/13    SP1               Granada        Levante      1      1      D   
17/03/13    SP1                Malaga        Espanol      0      2      A   
17/03/13    SP1               Osasuna     Ath Madrid      0      2      A   
17/03/13    SP1               Sevilla       Zaragoza      4      0      H   
17/03/13     I1            Fiorentina          Genoa      3      2      H   
17/03/13     I1                 Milan        Palermo      2      0      H   
17/03/13     I1                Napoli       Atalanta      3      2      H   
17/03/13     I1               Pescara         Chievo      0      2      A   
17/03/13     I1                  Roma          Parma      2      0      H   
17/03/13     I1                 Siena       Cagliari      0      0      D   
17/03/13     I1                Torino          Lazio      1      0      H   
17/03/13     T1  Akhisar Belediyespor      Sivasspor      2      1      H   
17/03/13     T1           Antalyaspor     Fenerbahce      1      2      A   
17/03/13     T1           Kayserispor    Galatasaray      1      3      A   
17/03/13     T1              Orduspor  Gaziantepspor      2      3      A   
17/03/13     D1         Ein Frankfurt      Stuttgart      1      2      A   
17/03/13     D1            M'gladbach       Hannover      1      0      H   

         season  
date             
17/03/13  12-13  
17/03/13  12-13  
17/03/13  12-13  
17/03/13  12-13  
17/03/13  12-13  
17/03/13  12-13  
17/03/13  12-13  
17/03/13  12-13  
17/03/13  12-13  
17/03/13  12-13  
17/03/13  12-13  
17/03/13  12-13  
17/03/13  12-13  
17/03/13  12-13  
17/03/13  12-13  
17/03/13  12-13  
17/03/13  12-13  
17/03/13  12-13  


17/03/14
         league         home              away  hgoal  agoal result season
date                                                                      
17/03/14     T1  Kayserispor         Bursaspor      2      0      H  13-14
17/03/14     E2      Preston  Sheffield United      0      0      D  13-14
17/03/14    SP1   Villarreal        Ath Bilbao      1      1      D  13-14
17/03/14     I1         Roma           Udinese      3      2      H  13-14
17/03/14     I1       Torino            Napoli      0      1      A  13-14


17/03/15
         league            home                away  hgoal  agoal result  \
date                                                                       
17/03/15     E2    Bristol City               Crewe      3      0      H   
17/03/15     E2    Chesterfield          Gillingham      3      0      H   
17/03/15     E2      Colchester              Yeovil      2      0      H   
17/03/15     E2       Doncaster             Swindon      1      2      A   
17/03/15     E2  Fleetwood Town            Coventry      0      2      A   
17/03/15     E2   Leyton Orient            Barnsley      0      0      D   
17/03/15     E2    Notts County            Rochdale      1      2      A   
17/03/15     E2          Oldham  Milton Keynes Dons      1      3      A   
17/03/15     E2       Port Vale        Crawley Town      2      3      A   
17/03/15     E2         Preston           Peterboro      2      0      H   
17/03/15     E2         Walsall    Sheffield United      1      1      D   

         season  
date             
17/03/15  14-15  
17/03/15  14-15  
17/03/15  14-15  
17/03/15  14-15  
17/03/15  14-15  
17/03/15  14-15  
17/03/15  14-15  
17/03/15  14-15  
17/03/15  14-15  
17/03/15  14-15  
17/03/15  14-15  


17/04/12
         league       home      away  hgoal  agoal result season
date                                                            
17/04/12     E2  Stevenage  Carlisle      1      0      H  11-12


17/04/14
         league           home      away  hgoal  agoal result season
date                                                                
17/04/14     D1  Ein Frankfurt  Hannover      2      3      A  13-14


17/04/15
         league           home        away  hgoal  agoal result season
date                                                                  
17/04/15     D1  Ein Frankfurt  M'gladbach      0      0      D  14-15
17/04/15     T1  Gaziantepspor   Konyaspor      1      1      D  14-15
17/04/15     E2      Port Vale     Preston      2      2      D  14-15


17/04/16
         league        home                  away  hgoal  agoal result season
date                                                                         
17/04/16     T1   Bursaspor  Akhisar Belediyespor      0      2      A  15-16
17/04/16     T1  Buyuksehyr         Gaziantepspor      4      1      H  15-16
17/04/16     T1  Fenerbahce    Mersin Idman Yurdu      4      1      H  15-16
17/04/16     T1   Kasimpasa           Kayserispor      1      2      A  15-16
17/04/16     D1    Dortmund               Hamburg      3      0      H  15-16
17/04/16     D1       Mainz               FC Koln      2      3      A  15-16
17/04/16     I1    Atalanta                  Roma      3      3      D  15-16
17/04/16     I1  Fiorentina              Sassuolo      3      1      H  15-16
17/04/16     I1    Juventus               Palermo      4      0      H  15-16
17/04/16     I1       Lazio                Empoli      2      0      H  15-16
17/04/16     I1   Sampdoria                 Milan      0      1      A  15-16
17/04/16     I1     Udinese                Chievo      0      0      D  15-16
17/04/16     I1      Verona             Frosinone      1      2      A  15-16
17/04/16    SP1  Ath Madrid               Granada      3      0      H  15-16
17/04/16    SP1   Barcelona              Valencia      1      2      A  15-16
17/04/16    SP1      Malaga            Ath Bilbao      0      1      A  15-16
17/04/16    SP1     Sevilla             La Coruna      1      1      D  15-16
17/04/16    SP1   Vallecano            Villarreal      2      1      H  15-16


17/05/13
         league                home           away  hgoal  agoal result season
date                                                                          
17/05/13     T1  Mersin Idman Yurdu  Gaziantepspor      1      2      A  12-13


17/05/14
         league         home            away  hgoal  agoal result season
date                                                                    
17/05/14     T1     Besiktas  Genclerbirligi      1      1      D  13-14
17/05/14     T1    Bursaspor   Gaziantepspor      3      1      H  13-14
17/05/14     T1  Galatasaray     Erciyesspor      2      1      H  13-14
17/05/14     T1     Rizespor      Elazigspor      3      1      H  13-14
17/05/14    SP1    Barcelona      Ath Madrid      1      1      D  13-14
17/05/14    SP1  Real Madrid         Espanol      3      1      H  13-14
17/05/14    SP1     Valencia           Celta      2      1      H  13-14
17/05/14     I1      Udinese       Sampdoria      3      3      D  13-14


17/05/15
         league                home           away  hgoal  agoal result season
date                                                                          
17/05/15     I1            Atalanta          Genoa      1      4      A  14-15
17/05/15     I1            Cagliari        Palermo      0      1      A  14-15
17/05/15     I1                Roma        Udinese      2      1      H  14-15
17/05/15     I1            Sassuolo          Milan      3      2      H  14-15
17/05/15     I1              Torino         Chievo      2      0      H  14-15
17/05/15     I1              Verona         Empoli      2      1      H  14-15
17/05/15     T1           Bursaspor  Gaziantepspor      2      0      H  14-15
17/05/15     T1         Erciyesspor     Buyuksehyr      0      1      A  14-15
17/05/15     T1       Eskisehirspor    Trabzonspor      2      0      H  14-15
17/05/15     T1  Mersin Idman Yurdu     Fenerbahce      0      1      A  14-15
17/05/15    SP1          Ath Madrid      Barcelona      0      1      A  14-15
17/05/15    SP1             Cordoba      Vallecano      1      2      A  14-15
17/05/15    SP1               Elche     Ath Bilbao      2      3      A  14-15
17/05/15    SP1             Espanol    Real Madrid      1      4      A  14-15
17/05/15    SP1              Getafe          Eibar      1      1      D  14-15
17/05/15    SP1           La Coruna        Levante      2      0      H  14-15
17/05/15    SP1             Sevilla        Almeria      2      1      H  14-15
17/05/15    SP1            Sociedad        Granada      0      3      A  14-15
17/05/15    SP1            Valencia          Celta      1      1      D  14-15
17/05/15    SP1          Villarreal         Malaga      2      1      H  14-15


17/08/12
         league           home                  away  hgoal  agoal result  \
date                                                                        
17/08/12     T1  Eskisehirspor  Akhisar Belediyespor      0      1      A   

         season  
date             
17/08/12  12-13  


17/08/13
         league              home                away  hgoal  agoal result  \
date                                                                         
17/08/13     D1     Ein Frankfurt       Bayern Munich      0      1      A   
17/08/13     D1          Freiburg               Mainz      1      2      A   
17/08/13     D1           Hamburg          Hoffenheim      1      5      A   
17/08/13     D1        M'gladbach            Hannover      3      0      H   
17/08/13     D1         Stuttgart          Leverkusen      0      1      A   
17/08/13     D1     Werder Bremen            Augsburg      1      0      H   
17/08/13     D1         Wolfsburg          Schalke 04      4      0      H   
17/08/13     T1       Karabukspor           Kasimpasa      2      0      H   
17/08/13     T1         Konyaspor          Fenerbahce      3      2      H   
17/08/13     T1          Rizespor      Genclerbirligi      1      0      H   
17/08/13     E2      Bristol City              Wolves      1      2      A   
17/08/13     E2          Carlisle            Coventry      0      4      A   
17/08/13     E2      Crawley Town           Rotherham      1      2      A   
17/08/13     E2             Crewe            Tranmere      2      1      H   
17/08/13     E2        Gillingham           Brentford      1      1      D   
17/08/13     E2         Peterboro              Oldham      2      1      H   
17/08/13     E2         Port Vale            Bradford      2      1      H   
17/08/13     E2           Preston  Milton Keynes Dons      2      2      D   
17/08/13     E2  Sheffield United          Colchester      1      1      D   
17/08/13     E2        Shrewsbury             Swindon      2      0      H   
17/08/13     E2         Stevenage       Leyton Orient      0      1      A   
17/08/13     E2           Walsall        Notts County      1      1      D   
17/08/13    SP1          Sociedad              Getafe      2      0      H   
17/08/13    SP1          Valencia              Malaga      1      0      H   
17/08/13    SP1        Valladolid          Ath Bilbao      1      2      A   

         season  
date             
17/08/13  13-14  
17/08/13  13-14  
17/08/13  13-14  
17/08/13  13-14  
17/08/13  13-14  
17/08/13  13-14  
17/08/13  13-14  
17/08/13  13-14  
17/08/13  13-14  
17/08/13  13-14  
17/08/13  13-14  
17/08/13  13-14  
17/08/13  13-14  
17/08/13  13-14  
17/08/13  13-14  
17/08/13  13-14  
17/08/13  13-14  
17/08/13  13-14  
17/08/13  13-14  
17/08/13  13-14  
17/08/13  13-14  
17/08/13  13-14  
17/08/13  13-14  
17/08/13  13-14  
17/08/13  13-14  


17/08/15
         league            home      away  hgoal  agoal result season
date                                                                 
17/08/15     T1  Genclerbirligi  Rizespor      2      3      A  15-16


17/09/11
         league                home            away  hgoal  agoal result  \
date                                                                       
17/09/11    SP1           Barcelona         Osasuna      8      0      H   
17/09/11    SP1             Granada      Villarreal      1      0      H   
17/09/11    SP1            Mallorca          Malaga      0      1      A   
17/09/11    SP1             Sevilla        Sociedad      1      0      H   
17/09/11    SP1            Sp Gijon        Valencia      0      1      A   
17/09/11     I1            Cagliari          Novara      2      1      H   
17/09/11     I1               Inter            Roma      0      0      D   
17/09/11     D1             Hamburg      M'gladbach      0      1      A   
17/09/11     D1              Hertha        Augsburg      2      2      D   
17/09/11     D1          Hoffenheim       Wolfsburg      3      1      H   
17/09/11     D1      Kaiserslautern           Mainz      3      1      H   
17/09/11     D1          Leverkusen         FC Koln      1      4      A   
17/09/11     D1            Nurnberg   Werder Bremen      1      1      D   
17/09/11     T1      Genclerbirligi     Karabukspor      2      1      H   
17/09/11     T1            Orduspor      Manisaspor      1      0      H   
17/09/11     T1         Trabzonspor      Buyuksehyr      0      1      A   
17/09/11     E2           Brentford         Preston      1      3      A   
17/09/11     E2        Chesterfield        Carlisle      4      1      H   
17/09/11     E2              Exeter     Bournemouth      0      2      A   
17/09/11     E2          Hartlepool            Bury      3      0      H   
17/09/11     E2       Leyton Orient          Oldham      1      3      A   
17/09/11     E2  Milton Keynes Dons    Huddersfield      1      1      D   
17/09/11     E2            Rochdale        Charlton      2      3      A   
17/09/11     E2    Sheffield United      Colchester      3      0      H   
17/09/11     E2           Stevenage    Notts County      0      2      A   
17/09/11     E2            Tranmere         Wycombe      2      0      H   
17/09/11     E2             Walsall      Scunthorpe      2      2      D   
17/09/11     E2              Yeovil  Sheffield Weds      2      3      A   

         season  
date             
17/09/11  11-12  
17/09/11  11-12  
17/09/11  11-12  
17/09/11  11-12  
17/09/11  11-12  
17/09/11  11-12  
17/09/11  11-12  
17/09/11  11-12  
17/09/11  11-12  
17/09/11  11-12  
17/09/11  11-12  
17/09/11  11-12  
17/09/11  11-12  
17/09/11  11-12  
17/09/11  11-12  
17/09/11  11-12  
17/09/11  11-12  
17/09/11  11-12  
17/09/11  11-12  
17/09/11  11-12  
17/09/11  11-12  
17/09/11  11-12  
17/09/11  11-12  
17/09/11  11-12  
17/09/11  11-12  
17/09/11  11-12  
17/09/11  11-12  
17/09/11  11-12  


17/09/12
         league        home         away  hgoal  agoal result season
date                                                                
17/09/12    SP1  Valladolid        Betis      0      1      A  12-13
17/09/12     T1    Besiktas   Elazigspor      3      0      H  12-13
17/09/12     T1    Orduspor  Kayserispor      3      2      H  12-13


17/09/13
         league           home          away  hgoal  agoal result season
date                                                                    
17/09/13     E2   Bristol City    Shrewsbury      1      1      D  13-14
17/09/13     E2  Leyton Orient  Notts County      5      1      H  13-14
17/09/13     E2         Wolves       Walsall      0      1      A  13-14


17/09/14
         league            home      away  hgoal  agoal result season
date                                                                 
17/09/14     E2  Fleetwood Town  Barnsley      0      0      D  14-15


17/10/11
         league                home        away  hgoal  agoal result season
date                                                                       
17/10/11    SP1          Ath Bilbao     Osasuna      3      1      H  11-12
17/10/11     T1  Mersin Idman Yurdu  Fenerbahce      1      2      A  11-12


17/10/14
         league     home       away  hgoal  agoal result season
date                                                           
17/10/14    SP1  Granada  Vallecano      0      1      A  14-15


17/10/15
         league            home              away  hgoal  agoal result season
date                                                                         
17/10/15     T1       Bursaspor       Antalyaspor      0      2      A  15-16
17/10/15     T1     Galatasaray    Genclerbirligi      4      1      H  15-16
17/10/15     T1       Konyaspor     Gaziantepspor      2      1      H  15-16
17/10/15     D1        Augsburg         Darmstadt      0      2      A  15-16
17/10/15     D1   Ein Frankfurt        M'gladbach      1      5      A  15-16
17/10/15     D1         Hamburg        Leverkusen      0      0      D  15-16
17/10/15     D1      Schalke 04            Hertha      2      1      H  15-16
17/10/15     D1   Werder Bremen     Bayern Munich      0      1      A  15-16
17/10/15     D1       Wolfsburg        Hoffenheim      4      2      H  15-16
17/10/15     I1            Roma            Empoli      3      1      H  15-16
17/10/15     I1          Torino             Milan      1      1      D  15-16
17/10/15    SP1       Barcelona         Vallecano      5      2      H  15-16
17/10/15    SP1           Betis           Espanol      1      3      A  15-16
17/10/15    SP1           Eibar           Sevilla      1      1      D  15-16
17/10/15    SP1     Real Madrid           Levante      3      0      H  15-16
17/10/15    SP1        Valencia            Malaga      3      0      H  15-16
17/10/15     E2            Bury          Rochdale      0      0      D  15-16
17/10/15     E2        Coventry         Blackpool      0      0      D  15-16
17/10/15     E2           Crewe        Gillingham      0      1      A  15-16
17/10/15     E2       Doncaster          Bradford      0      1      A  15-16
17/10/15     E2  Fleetwood Town            Burton      4      0      H  15-16
17/10/15     E2        Millwall           Swindon      2      0      H  15-16
17/10/15     E2          Oldham  Sheffield United      1      1      D  15-16
17/10/15     E2       Port Vale         Peterboro      1      1      D  15-16
17/10/15     E2      Scunthorpe        Shrewsbury      2      1      H  15-16
17/10/15     E2        Southend          Barnsley      2      1      H  15-16
17/10/15     E2         Walsall      Chesterfield      1      2      A  15-16
17/10/15     E2           Wigan        Colchester      5      0      H  15-16


17/11/12
         league              home            away  hgoal  agoal result season
date                                                                         
17/11/12    SP1         Barcelona        Zaragoza      3      1      H  12-13
17/11/12    SP1           Osasuna          Malaga      0      0      D  12-13
17/11/12    SP1       Real Madrid      Ath Bilbao      5      1      H  12-13
17/11/12    SP1          Valencia         Espanol      2      1      H  12-13
17/11/12     I1          Juventus           Lazio      0      0      D  12-13
17/11/12     I1            Napoli           Milan      2      2      D  12-13
17/11/12     T1        Buyuksehyr      Elazigspor      1      1      D  12-13
17/11/12     T1     Eskisehirspor      Fenerbahce      1      1      D  12-13
17/11/12     T1    Genclerbirligi       Sivasspor      1      1      D  12-13
17/11/12     E2       Bournemouth          Oldham      4      1      H  12-13
17/11/12     E2          Carlisle   Leyton Orient      1      4      A  12-13
17/11/12     E2        Colchester            Bury      2      0      H  12-13
17/11/12     E2      Crawley Town         Walsall      2      2      D  12-13
17/11/12     E2        Hartlepool        Coventry      0      5      A  12-13
17/11/12     E2        Portsmouth       Doncaster      0      1      A  12-13
17/11/12     E2           Preston       Brentford      1      1      D  12-13
17/11/12     E2        Scunthorpe    Notts County      2      2      D  12-13
17/11/12     E2  Sheffield United       Stevenage      4      1      H  12-13
17/11/12     E2        Shrewsbury           Crewe      1      0      H  12-13
17/11/12     E2           Swindon          Yeovil      4      1      H  12-13
17/11/12     D1          Dortmund  Greuther Furth      3      1      H  12-13
17/11/12     D1     Ein Frankfurt        Augsburg      4      2      H  12-13
17/11/12     D1           Hamburg           Mainz      1      0      H  12-13
17/11/12     D1          Hannover        Freiburg      1      2      A  12-13
17/11/12     D1        Leverkusen      Schalke 04      2      0      H  12-13
17/11/12     D1        M'gladbach       Stuttgart      1      2      A  12-13
17/11/12     D1          Nurnberg   Bayern Munich      1      1      D  12-13


17/11/13
         league      home      away  hgoal  agoal result season
date                                                           
17/11/13     E2  Bradford  Coventry      3      3      D  13-14


17/12/11
         league                home                away  hgoal  agoal result  \
date                                                                           
17/12/11    SP1          Ath Bilbao            Zaragoza      2      1      H   
17/12/11    SP1            Mallorca              Getafe      1      2      A   
17/12/11    SP1             Sevilla         Real Madrid      2      6      A   
17/12/11    SP1            Sp Gijon             Espanol      1      2      A   
17/12/11     I1              Chievo            Cagliari      2      0      H   
17/12/11     I1          Fiorentina            Atalanta      2      2      D   
17/12/11     I1               Milan               Siena      2      0      H   
17/12/11     D1            Freiburg            Dortmund      1      4      A   
17/12/11     D1             Hamburg            Augsburg      1      1      D   
17/12/11     D1          Hoffenheim              Hertha      1      1      D   
17/12/11     D1          Leverkusen            Nurnberg      0      3      A   
17/12/11     D1          Schalke 04       Werder Bremen      5      0      H   
17/12/11     D1           Wolfsburg           Stuttgart      1      0      H   
17/12/11     T1          Ankaragucu       Gaziantepspor      0      0      D   
17/12/11     T1           Bursaspor         Antalyaspor      0      0      D   
17/12/11     T1       Eskisehirspor         Kayserispor      1      0      H   
17/12/11     T1         Karabukspor  Mersin Idman Yurdu      3      5      A   
17/12/11     E2         Bournemouth    Sheffield United      0      2      A   
17/12/11     E2                Bury           Brentford      1      1      D   
17/12/11     E2            Carlisle             Wycombe      2      2      D   
17/12/11     E2            Charlton              Oldham      1      1      D   
17/12/11     E2        Chesterfield             Walsall      1      1      D   
17/12/11     E2              Exeter          Scunthorpe      0      0      D   
17/12/11     E2          Hartlepool          Colchester      0      1      A   
17/12/11     E2  Milton Keynes Dons             Preston      0      1      A   
17/12/11     E2        Notts County       Leyton Orient      1      2      A   
17/12/11     E2            Rochdale              Yeovil      0      0      D   
17/12/11     E2      Sheffield Weds        Huddersfield      4      4      D   
17/12/11     E2           Stevenage            Tranmere      2      1      H   

         season  
date             
17/12/11  11-12  
17/12/11  11-12  
17/12/11  11-12  
17/12/11  11-12  
17/12/11  11-12  
17/12/11  11-12  
17/12/11  11-12  
17/12/11  11-12  
17/12/11  11-12  
17/12/11  11-12  
17/12/11  11-12  
17/12/11  11-12  
17/12/11  11-12  
17/12/11  11-12  
17/12/11  11-12  
17/12/11  11-12  
17/12/11  11-12  
17/12/11  11-12  
17/12/11  11-12  
17/12/11  11-12  
17/12/11  11-12  
17/12/11  11-12  
17/12/11  11-12  
17/12/11  11-12  
17/12/11  11-12  
17/12/11  11-12  
17/12/11  11-12  
17/12/11  11-12  
17/12/11  11-12  


17/12/12
         league         home        away  hgoal  agoal result season
date                                                                
17/12/12    SP1        Celta       Betis      0      1      A  12-13
17/12/12    SP1    La Coruna  Valladolid      0      0      D  12-13
17/12/12     T1  Kayserispor   Kasimpasa      1      0      H  12-13


17/12/14
         league           home           away  hgoal  agoal result season
date                                                                     
17/12/14     D1       Dortmund      Wolfsburg      2      2      D  14-15
17/12/14     D1  Ein Frankfurt         Hertha      4      4      D  14-15
17/12/14     D1     Hoffenheim     Leverkusen      0      1      A  14-15
17/12/14     D1     M'gladbach  Werder Bremen      4      1      H  14-15
17/12/14     D1      Paderborn     Schalke 04      1      2      A  14-15


18/01/13
         league        home         away  hgoal  agoal result season
date                                                                
18/01/13    SP1     Espanol     Mallorca      3      2      H  12-13
18/01/13     T1   Kasimpasa  Galatasaray      2      1      H  12-13
18/01/13     D1  Schalke 04     Hannover      5      4      H  12-13


18/01/14
         league          home                away  hgoal  agoal result season
date                                                                         
18/01/14     E2  Bristol City  Milton Keynes Dons      2      2      D  13-14
18/01/14     E2      Carlisle          Colchester      2      4      A  13-14
18/01/14     E2         Crewe       Leyton Orient      1      2      A  13-14
18/01/14     E2    Gillingham             Swindon      2      0      H  13-14
18/01/14     E2     Peterboro            Tranmere      3      0      H  13-14
18/01/14     E2       Walsall           Brentford      1      1      D  13-14
18/01/14    SP1         Betis         Real Madrid      0      5      A  13-14
18/01/14    SP1         Elche           Vallecano      2      0      H  13-14
18/01/14    SP1       Espanol               Celta      1      0      H  13-14
18/01/14    SP1       Granada             Osasuna      0      0      D  13-14
18/01/14     I1      Juventus           Sampdoria      4      2      H  13-14
18/01/14     I1          Roma             Livorno      3      0      H  13-14


18/01/15
         league        home         away  hgoal  agoal result season
date                                                                
18/01/15     I1      Cesena       Torino      2      3      A  14-15
18/01/15     I1      Chievo   Fiorentina      1      2      A  14-15
18/01/15     I1       Genoa     Sassuolo      3      3      D  14-15
18/01/15     I1    Juventus       Verona      4      0      H  14-15
18/01/15     I1       Lazio       Napoli      0      1      A  14-15
18/01/15     I1       Milan     Atalanta      0      1      A  14-15
18/01/15     I1       Parma    Sampdoria      0      2      A  14-15
18/01/15     I1     Udinese     Cagliari      2      2      D  14-15
18/01/15    SP1  Ath Madrid      Granada      2      0      H  14-15
18/01/15    SP1       Elche      Levante      1      0      H  14-15
18/01/15    SP1      Getafe  Real Madrid      0      3      A  14-15
18/01/15    SP1   La Coruna    Barcelona      0      4      A  14-15
18/01/15    SP1     Sevilla       Malaga      2      0      H  14-15


18/01/16
         league           home        away  hgoal  agoal result season
date                                                                  
18/01/16     T1  Eskisehirspor  Fenerbahce      0      3      A  15-16
18/01/16    SP1          Eibar     Granada      5      1      H  15-16


18/02/12
         league                home            away  hgoal  agoal result  \
date                                                                       
18/02/12    SP1              Getafe         Espanol      1      1      D   
18/02/12    SP1         Real Madrid       Santander      4      0      H   
18/02/12    SP1             Sevilla         Osasuna      2      0      H   
18/02/12     I1            Juventus         Catania      3      1      H   
18/02/12     D1            Freiburg   Bayern Munich      0      0      D   
18/02/12     D1             Hamburg   Werder Bremen      1      3      A   
18/02/12     D1              Hertha        Dortmund      0      1      A   
18/02/12     D1      Kaiserslautern      M'gladbach      1      2      A   
18/02/12     D1          Leverkusen        Augsburg      4      1      H   
18/02/12     D1            Nurnberg         FC Koln      2      1      H   
18/02/12     T1          Ankaragucu      Samsunspor      0      3      A   
18/02/12     T1         Antalyaspor      Manisaspor      2      1      H   
18/02/12     T1          Fenerbahce       Sivasspor      4      2      H   
18/02/12     E2        Chesterfield  Sheffield Weds      1      0      H   
18/02/12     E2              Exeter            Bury      3      2      H   
18/02/12     E2          Hartlepool    Notts County      3      0      H   
18/02/12     E2       Leyton Orient      Scunthorpe      1      3      A   
18/02/12     E2  Milton Keynes Dons          Oldham      5      0      H   
18/02/12     E2            Rochdale     Bournemouth      1      0      H   
18/02/12     E2    Sheffield United         Preston      2      1      H   
18/02/12     E2            Tranmere        Charlton      1      1      D   
18/02/12     E2             Walsall         Wycombe      2      0      H   
18/02/12     E2              Yeovil      Colchester      3      2      H   

         season  
date             
18/02/12  11-12  
18/02/12  11-12  
18/02/12  11-12  
18/02/12  11-12  
18/02/12  11-12  
18/02/12  11-12  
18/02/12  11-12  
18/02/12  11-12  
18/02/12  11-12  
18/02/12  11-12  
18/02/12  11-12  
18/02/12  11-12  
18/02/12  11-12  
18/02/12  11-12  
18/02/12  11-12  
18/02/12  11-12  
18/02/12  11-12  
18/02/12  11-12  
18/02/12  11-12  
18/02/12  11-12  
18/02/12  11-12  
18/02/12  11-12  
18/02/12  11-12  


18/02/13
         league       home       away  hgoal  agoal result season
date                                                             
18/02/13     I1      Siena      Lazio      3      0      H  12-13
18/02/13     T1  Kasimpasa  Sivasspor      1      0      H  12-13


18/02/14
         league                home       away  hgoal  agoal result season
date                                                                      
18/02/14     E2            Bradford  Port Vale      1      0      H  13-14
18/02/14     E2            Coventry   Carlisle      1      2      A  13-14
18/02/14     E2       Leyton Orient  Stevenage      2      0      H  13-14
18/02/14     E2  Milton Keynes Dons    Preston      0      0      D  13-14


18/02/15
         league           home      away  hgoal  agoal result season
date                                                                
18/02/15     E2  Leyton Orient  Bradford      0      2      A  14-15


18/03/12
         league                home         away  hgoal  agoal result season
date                                                                        
18/03/12    SP1          Ath Bilbao     Valencia      0      3      A  11-12
18/03/12    SP1             Levante   Villarreal      1      0      H  11-12
18/03/12    SP1            Mallorca   Ath Madrid      2      1      H  11-12
18/03/12    SP1         Real Madrid       Malaga      1      1      D  11-12
18/03/12     I1             Bologna       Chievo      2      2      D  11-12
18/03/12     I1            Cagliari       Cesena      3      0      H  11-12
18/03/12     I1             Catania        Lazio      1      0      H  11-12
18/03/12     I1               Inter     Atalanta      0      0      D  11-12
18/03/12     I1               Lecce      Palermo      1      1      D  11-12
18/03/12     I1               Siena       Novara      0      2      A  11-12
18/03/12     I1             Udinese       Napoli      2      2      D  11-12
18/03/12     D1            Hannover      FC Koln      4      1      H  11-12
18/03/12     D1      Kaiserslautern   Schalke 04      1      4      A  11-12
18/03/12     T1       Gaziantepspor  Karabukspor      3      0      H  11-12
18/03/12     T1         Kayserispor   Samsunspor      2      0      H  11-12
18/03/12     T1  Mersin Idman Yurdu   Buyuksehyr      2      0      H  11-12


18/03/14
         league          home        away  hgoal  agoal result season
date                                                                 
18/03/14     E2    Colchester  Shrewsbury      1      0      H  13-14
18/03/14     E2  Crawley Town      Wolves      2      1      H  13-14


18/03/16
         league                  home           away  hgoal  agoal result  \
date                                                                        
18/03/16     T1  Akhisar Belediyespor       Rizespor      1      1      D   
18/03/16     T1           Kayserispor  Eskisehirspor      0      0      D   
18/03/16     D1            Schalke 04     M'gladbach      2      1      H   
18/03/16    SP1                Getafe          Eibar      1      1      D   

         season  
date             
18/03/16  15-16  
18/03/16  15-16  
18/03/16  15-16  
18/03/16  15-16  


18/04/14
         league              home                away  hgoal  agoal result  \
date                                                                         
18/04/14     T1       Erciyesspor         Trabzonspor      0      5      A   
18/04/14     E2          Bradford           Peterboro      1      0      H   
18/04/14     E2         Brentford             Preston      1      0      H   
18/04/14     E2      Bristol City        Notts County      2      1      H   
18/04/14     E2          Carlisle             Walsall      1      1      D   
18/04/14     E2        Colchester              Oldham      0      1      A   
18/04/14     E2          Coventry             Swindon      1      2      A   
18/04/14     E2      Crawley Town       Leyton Orient      2      1      H   
18/04/14     E2        Gillingham            Tranmere      2      0      H   
18/04/14     E2         Port Vale  Milton Keynes Dons      1      0      H   
18/04/14     E2  Sheffield United           Stevenage      1      0      H   
18/04/14     E2        Shrewsbury               Crewe      1      3      A   
18/04/14     E2            Wolves           Rotherham      6      4      H   
18/04/14    SP1        Ath Madrid               Elche      2      0      H   

         season  
date             
18/04/14  13-14  
18/04/14  13-14  
18/04/14  13-14  
18/04/14  13-14  
18/04/14  13-14  
18/04/14  13-14  
18/04/14  13-14  
18/04/14  13-14  
18/04/14  13-14  
18/04/14  13-14  
18/04/14  13-14  
18/04/14  13-14  
18/04/14  13-14  
18/04/14  13-14  


18/04/15
         league                home            away  hgoal  agoal result  \
date                                                                       
18/04/15     D1            Augsburg       Stuttgart      2      1      H   
18/04/15     D1            Dortmund       Paderborn      3      0      H   
18/04/15     D1            Freiburg           Mainz      2      3      A   
18/04/15     D1              Hertha         FC Koln      0      0      D   
18/04/15     D1          Hoffenheim   Bayern Munich      0      2      A   
18/04/15     D1          Leverkusen        Hannover      4      0      H   
18/04/15     I1            Juventus           Lazio      2      0      H   
18/04/15     I1           Sampdoria          Cesena      0      0      D   
18/04/15     T1         Karabukspor  Genclerbirligi      2      1      H   
18/04/15     T1           Kasimpasa        Besiktas      1      5      A   
18/04/15     E2            Barnsley       Peterboro      1      1      D   
18/04/15     E2        Bristol City        Coventry      0      0      D   
18/04/15     E2          Colchester      Scunthorpe      2      2      D   
18/04/15     E2        Crawley Town    Notts County      2      0      H   
18/04/15     E2               Crewe         Walsall      1      1      D   
18/04/15     E2           Doncaster  Fleetwood Town      0      0      D   
18/04/15     E2          Gillingham        Rochdale      1      0      H   
18/04/15     E2  Milton Keynes Dons   Leyton Orient      6      1      H   
18/04/15     E2              Oldham    Chesterfield      0      0      D   
18/04/15     E2    Sheffield United        Bradford      1      1      D   
18/04/15     E2             Swindon          Yeovil      0      1      A   
18/04/15    SP1          Ath Bilbao          Getafe      4      0      H   
18/04/15    SP1           Barcelona        Valencia      2      0      H   
18/04/15    SP1           La Coruna      Ath Madrid      1      2      A   
18/04/15    SP1         Real Madrid          Malaga      3      1      H   

         season  
date             
18/04/15  14-15  
18/04/15  14-15  
18/04/15  14-15  
18/04/15  14-15  
18/04/15  14-15  
18/04/15  14-15  
18/04/15  14-15  
18/04/15  14-15  
18/04/15  14-15  
18/04/15  14-15  
18/04/15  14-15  
18/04/15  14-15  
18/04/15  14-15  
18/04/15  14-15  
18/04/15  14-15  
18/04/15  14-15  
18/04/15  14-15  
18/04/15  14-15  
18/04/15  14-15  
18/04/15  14-15  
18/04/15  14-15  
18/04/15  14-15  
18/04/15  14-15  
18/04/15  14-15  
18/04/15  14-15  


18/04/16
         league            home         away  hgoal  agoal result season
date                                                                    
18/04/16     T1  Genclerbirligi  Trabzonspor      3      1      H  15-16


18/05/13
         league           home                  away  hgoal  agoal result  \
date                                                                        
18/05/13    SP1         Getafe              Valencia      0      1      A   
18/05/13    SP1        Granada               Osasuna      3      0      H   
18/05/13    SP1        Sevilla              Sociedad      1      2      A   
18/05/13     I1      Sampdoria              Juventus      3      2      H   
18/05/13     T1     Buyuksehyr             Kasimpasa      1      2      A   
18/05/13     T1    Galatasaray           Trabzonspor      2      0      H   
18/05/13     T1    Karabukspor            Fenerbahce      3      2      H   
18/05/13     T1       Orduspor  Akhisar Belediyespor      0      2      A   
18/05/13     D1       Augsburg        Greuther Furth      3      1      H   
18/05/13     D1       Dortmund            Hoffenheim      1      2      A   
18/05/13     D1  Ein Frankfurt             Wolfsburg      2      2      D   
18/05/13     D1       Freiburg            Schalke 04      1      2      A   
18/05/13     D1        Hamburg            Leverkusen      0      1      A   
18/05/13     D1       Hannover    Fortuna Dusseldorf      3      0      H   
18/05/13     D1     M'gladbach         Bayern Munich      3      4      A   
18/05/13     D1       Nurnberg         Werder Bremen      3      2      H   
18/05/13     D1      Stuttgart                 Mainz      2      2      D   

         season  
date             
18/05/13  12-13  
18/05/13  12-13  
18/05/13  12-13  
18/05/13  12-13  
18/05/13  12-13  
18/05/13  12-13  
18/05/13  12-13  
18/05/13  12-13  
18/05/13  12-13  
18/05/13  12-13  
18/05/13  12-13  
18/05/13  12-13  
18/05/13  12-13  
18/05/13  12-13  
18/05/13  12-13  
18/05/13  12-13  
18/05/13  12-13  


18/05/14
         league                  home         away  hgoal  agoal result season
date                                                                          
18/05/14     T1  Akhisar Belediyespor    Kasimpasa      1      3      A  13-14
18/05/14     T1           Antalyaspor  Trabzonspor      0      2      A  13-14
18/05/14     T1           Karabukspor    Sivasspor      1      0      H  13-14
18/05/14    SP1               Almeria   Ath Bilbao      0      0      D  13-14
18/05/14    SP1               Osasuna        Betis      2      1      H  13-14
18/05/14    SP1               Sevilla        Elche      3      1      H  13-14
18/05/14    SP1              Sociedad   Villarreal      1      2      A  13-14
18/05/14    SP1            Valladolid      Granada      0      1      A  13-14
18/05/14    SP1             Vallecano       Getafe      1      2      A  13-14
18/05/14     I1               Catania     Atalanta      2      1      H  13-14
18/05/14     I1                Chievo        Inter      2      1      H  13-14
18/05/14     I1            Fiorentina       Torino      2      2      D  13-14
18/05/14     I1                 Genoa         Roma      1      0      H  13-14
18/05/14     I1              Juventus     Cagliari      3      0      H  13-14
18/05/14     I1                 Lazio      Bologna      1      0      H  13-14
18/05/14     I1                 Milan     Sassuolo      2      1      H  13-14
18/05/14     I1                Napoli       Verona      5      1      H  13-14
18/05/14     I1                 Parma      Livorno      2      0      H  13-14


18/05/15
         league        home                  away  hgoal  agoal result season
date                                                                         
18/05/15     I1  Fiorentina                 Parma      3      0      H  14-15
18/05/15     I1      Napoli                Cesena      3      2      H  14-15
18/05/15     T1    Besiktas             Konyaspor      0      1      A  14-15
18/05/15     T1    Rizespor  Akhisar Belediyespor      3      1      H  14-15


18/05/16
         league                home       away  hgoal  agoal result season
date                                                                      
18/05/16     T1          Buyuksehyr   Rizespor      1      0      H  15-16
18/05/16     T1           Konyaspor   Besiktas      2      1      H  15-16
18/05/16     T1  Mersin Idman Yurdu  Bursaspor      2      5      A  15-16


18/08/12
         league                home           away  hgoal  agoal result season
date                                                                          
18/08/12    SP1               Celta         Malaga      0      1      A  12-13
18/08/12    SP1            Mallorca        Espanol      2      1      H  12-13
18/08/12    SP1             Sevilla         Getafe      2      1      H  12-13
18/08/12     T1          Elazigspor     Fenerbahce      1      1      D  12-13
18/08/12     T1       Gaziantepspor      Sivasspor      0      1      A  12-13
18/08/12     T1         Karabukspor    Trabzonspor      1      1      D  12-13
18/08/12     E2                Bury      Brentford      0      0      D  12-13
18/08/12     E2        Crawley Town     Scunthorpe      3      0      H  12-13
18/08/12     E2               Crewe   Notts County      1      2      A  12-13
18/08/12     E2          Hartlepool        Swindon      0      0      D  12-13
18/08/12     E2  Milton Keynes Dons         Oldham      2      0      H  12-13
18/08/12     E2          Portsmouth    Bournemouth      1      1      D  12-13
18/08/12     E2             Preston     Colchester      0      0      D  12-13
18/08/12     E2    Sheffield United     Shrewsbury      1      0      H  12-13
18/08/12     E2           Stevenage       Carlisle      1      1      D  12-13
18/08/12     E2            Tranmere  Leyton Orient      3      1      H  12-13
18/08/12     E2             Walsall      Doncaster      0      3      A  12-13
18/08/12     E2              Yeovil       Coventry      1      1      D  12-13


18/08/13
         league                  home          away  hgoal  agoal result  \
date                                                                       
18/08/13     D1              Dortmund  Braunschweig      2      1      H   
18/08/13     D1              Nurnberg        Hertha      2      2      D   
18/08/13     T1  Akhisar Belediyespor    Elazigspor      3      1      H   
18/08/13     T1              Besiktas   Trabzonspor      2      0      H   
18/08/13     T1         Eskisehirspor     Bursaspor      2      0      H   
18/08/13    SP1             Barcelona       Levante      7      0      H   
18/08/13    SP1               Osasuna       Granada      1      2      A   
18/08/13    SP1           Real Madrid         Betis      2      1      H   
18/08/13    SP1               Sevilla    Ath Madrid      1      3      A   

         season  
date             
18/08/13  13-14  
18/08/13  13-14  
18/08/13  13-14  
18/08/13  13-14  
18/08/13  13-14  
18/08/13  13-14  
18/08/13  13-14  
18/08/13  13-14  
18/08/13  13-14  


18/08/15
         league        home              away  hgoal  agoal result season
date                                                                     
18/08/15     E2   Blackpool            Burton      1      2      A  15-16
18/08/15     E2    Bradford        Gillingham      1      2      A  15-16
18/08/15     E2        Bury    Fleetwood Town      3      4      A  15-16
18/08/15     E2  Colchester            Oldham      0      0      D  15-16
18/08/15     E2    Coventry             Crewe      3      2      H  15-16
18/08/15     E2    Millwall          Barnsley      2      3      A  15-16
18/08/15     E2   Peterboro  Sheffield United      1      3      A  15-16
18/08/15     E2    Rochdale           Walsall      1      2      A  15-16
18/08/15     E2  Shrewsbury      Chesterfield      1      2      A  15-16
18/08/15     E2     Swindon         Port Vale      2      2      D  15-16


18/09/11
         league                home           away  hgoal  agoal result season
date                                                                          
18/09/11    SP1          Ath Bilbao          Betis      2      3      A  11-12
18/09/11    SP1          Ath Madrid      Santander      4      0      H  11-12
18/09/11    SP1              Getafe      Vallecano      0      1      A  11-12
18/09/11    SP1             Levante    Real Madrid      1      0      H  11-12
18/09/11    SP1            Zaragoza        Espanol      2      1      H  11-12
18/09/11     I1            Atalanta        Palermo      1      0      H  11-12
18/09/11     I1             Bologna          Lecce      0      2      A  11-12
18/09/11     I1             Catania         Cesena      1      0      H  11-12
18/09/11     I1               Lazio          Genoa      1      2      A  11-12
18/09/11     I1              Napoli          Milan      3      1      H  11-12
18/09/11     I1               Parma         Chievo      2      1      H  11-12
18/09/11     I1               Siena       Juventus      0      1      A  11-12
18/09/11     I1             Udinese     Fiorentina      2      0      H  11-12
18/09/11     D1            Hannover       Dortmund      2      1      H  11-12
18/09/11     D1          Schalke 04  Bayern Munich      0      2      A  11-12
18/09/11     T1         Galatasaray     Samsunspor      3      1      H  11-12
18/09/11     T1  Mersin Idman Yurdu      Bursaspor      1      3      A  11-12
18/09/11     T1           Sivasspor  Eskisehirspor      0      4      A  11-12


18/09/12
         league                home          away  hgoal  agoal result season
date                                                                         
18/09/12     E2         Bournemouth     Brentford      2      2      D  12-13
18/09/12     E2            Carlisle         Crewe      0      0      D  12-13
18/09/12     E2          Colchester  Crawley Town      1      1      D  12-13
18/09/12     E2       Leyton Orient        Yeovil      4      1      H  12-13
18/09/12     E2  Milton Keynes Dons  Notts County      1      1      D  12-13
18/09/12     E2              Oldham    Scunthorpe      1      1      D  12-13
18/09/12     E2          Portsmouth       Swindon      1      2      A  12-13
18/09/12     E2             Preston    Hartlepool      5      0      H  12-13
18/09/12     E2    Sheffield United     Doncaster      0      0      D  12-13
18/09/12     E2          Shrewsbury      Coventry      4      1      H  12-13
18/09/12     E2           Stevenage       Walsall      3      1      H  12-13
18/09/12     E2            Tranmere          Bury      3      0      H  12-13


18/09/15
         league                home                  away  hgoal  agoal  \
date                                                                      
18/09/15     T1          Buyuksehyr  Akhisar Belediyespor      2      0   
18/09/15     T1  Mersin Idman Yurdu           Osmanlispor      0      4   
18/09/15     D1               Mainz            Hoffenheim      3      1   
18/09/15    SP1              Getafe                Malaga      1      0   

         result season  
date                    
18/09/15      H  15-16  
18/09/15      A  15-16  
18/09/15      H  15-16  
18/09/15      H  15-16  


18/10/13
         league        home          away  hgoal  agoal result season
date                                                                 
18/10/13     D1  Hoffenheim    Leverkusen      1      2      A  13-14
18/10/13     E2     Swindon  Notts County      2      0      H  13-14
18/10/13     I1        Roma        Napoli      2      0      H  13-14


18/10/14
         league            home                away  hgoal  agoal result  \
date                                                                       
18/10/14     D1   Bayern Munich       Werder Bremen      6      0      H   
18/10/14     D1         FC Koln            Dortmund      2      1      H   
18/10/14     D1        Freiburg           Wolfsburg      1      2      A   
18/10/14     D1        Hannover          M'gladbach      0      3      A   
18/10/14     D1           Mainz            Augsburg      2      1      H   
18/10/14     D1      Schalke 04              Hertha      2      0      H   
18/10/14     D1       Stuttgart          Leverkusen      3      3      D   
18/10/14     I1            Roma              Chievo      3      0      H   
18/10/14     I1        Sassuolo            Juventus      1      1      D   
18/10/14     T1     Galatasaray          Fenerbahce      2      1      H   
18/10/14     T1   Gaziantepspor         Karabukspor      1      0      H   
18/10/14     T1       Konyaspor          Buyuksehyr      0      0      D   
18/10/14     E2        Bradford    Sheffield United      0      2      A   
18/10/14     E2    Chesterfield              Oldham      1      1      D   
18/10/14     E2        Coventry        Bristol City      1      3      A   
18/10/14     E2  Fleetwood Town           Doncaster      3      1      H   
18/10/14     E2   Leyton Orient  Milton Keynes Dons      0      0      D   
18/10/14     E2    Notts County        Crawley Town      5      3      H   
18/10/14     E2       Peterboro            Barnsley      2      1      H   
18/10/14     E2         Preston           Port Vale      2      0      H   
18/10/14     E2        Rochdale          Gillingham      1      1      D   
18/10/14     E2      Scunthorpe          Colchester      1      1      D   
18/10/14     E2         Walsall               Crewe      0      1      A   
18/10/14     E2          Yeovil             Swindon      1      1      D   
18/10/14    SP1      Ath Bilbao               Celta      1      1      D   
18/10/14    SP1       Barcelona               Eibar      3      0      H   
18/10/14    SP1         Cordoba              Malaga      1      2      A   
18/10/14    SP1         Levante         Real Madrid      0      5      A   

         season  
date             
18/10/14  14-15  
18/10/14  14-15  
18/10/14  14-15  
18/10/14  14-15  
18/10/14  14-15  
18/10/14  14-15  
18/10/14  14-15  
18/10/14  14-15  
18/10/14  14-15  
18/10/14  14-15  
18/10/14  14-15  
18/10/14  14-15  
18/10/14  14-15  
18/10/14  14-15  
18/10/14  14-15  
18/10/14  14-15  
18/10/14  14-15  
18/10/14  14-15  
18/10/14  14-15  
18/10/14  14-15  
18/10/14  14-15  
18/10/14  14-15  
18/10/14  14-15  
18/10/14  14-15  
18/10/14  14-15  
18/10/14  14-15  
18/10/14  14-15  
18/10/14  14-15  


18/10/15
         league                  home           away  hgoal  agoal result  \
date                                                                        
18/10/15     T1  Akhisar Belediyespor  Eskisehirspor      1      0      H   
18/10/15     T1              Besiktas       Rizespor      1      0      H   
18/10/15     T1             Kasimpasa      Sivasspor      2      1      H   
18/10/15     T1           Kayserispor     Fenerbahce      0      1      A   
18/10/15     D1               FC Koln       Hannover      0      1      A   
18/10/15     D1             Stuttgart     Ingolstadt      1      0      H   
18/10/15     I1              Atalanta          Carpi      3      0      H   
18/10/15     I1               Bologna        Palermo      0      1      A   
18/10/15     I1             Frosinone      Sampdoria      2      0      H   
18/10/15     I1                 Genoa         Chievo      3      2      H   
18/10/15     I1                 Inter       Juventus      0      0      D   
18/10/15     I1                Napoli     Fiorentina      2      1      H   
18/10/15     I1              Sassuolo          Lazio      2      1      H   
18/10/15     I1                Verona        Udinese      1      1      D   
18/10/15    SP1                Getafe     Las Palmas      4      0      H   
18/10/15    SP1             La Coruna     Ath Bilbao      2      2      D   
18/10/15    SP1              Sociedad     Ath Madrid      0      2      A   
18/10/15    SP1            Villarreal          Celta      1      2      A   

         season  
date             
18/10/15  15-16  
18/10/15  15-16  
18/10/15  15-16  
18/10/15  15-16  
18/10/15  15-16  
18/10/15  15-16  
18/10/15  15-16  
18/10/15  15-16  
18/10/15  15-16  
18/10/15  15-16  
18/10/15  15-16  
18/10/15  15-16  
18/10/15  15-16  
18/10/15  15-16  
18/10/15  15-16  
18/10/15  15-16  
18/10/15  15-16  
18/10/15  15-16  


18/11/11
         league                home         away  hgoal  agoal result season
date                                                                        
18/11/11     D1      Kaiserslautern   Leverkusen      0      2      A  11-12
18/11/11     T1  Mersin Idman Yurdu  Trabzonspor      1      1      D  11-12


18/11/12
         league                  home                away  hgoal  agoal  \
date                                                                      
18/11/12    SP1                 Celta            Mallorca      1      1   
18/11/12    SP1                Getafe          Valladolid      2      1   
18/11/12    SP1               Granada          Ath Madrid      0      1   
18/11/12    SP1             La Coruna             Levante      0      2   
18/11/12    SP1               Sevilla               Betis      5      1   
18/11/12     I1               Bologna             Palermo      3      0   
18/11/12     I1               Catania              Chievo      2      1   
18/11/12     I1            Fiorentina            Atalanta      4      1   
18/11/12     I1                 Inter            Cagliari      2      2   
18/11/12     I1             Sampdoria               Genoa      3      1   
18/11/12     I1                 Siena             Pescara      1      0   
18/11/12     I1               Udinese               Parma      2      2   
18/11/12     T1  Akhisar Belediyespor           Kasimpasa      0      2   
18/11/12     T1           Antalyaspor            Besiktas      3      5   
18/11/12     T1             Bursaspor  Mersin Idman Yurdu      3      0   
18/11/12     T1           Kayserispor       Gaziantepspor      1      1   
18/11/12     D1            Hoffenheim           Wolfsburg      1      3   
18/11/12     D1         Werder Bremen  Fortuna Dusseldorf      2      1   

         result season  
date                    
18/11/12      D  12-13  
18/11/12      H  12-13  
18/11/12      A  12-13  
18/11/12      A  12-13  
18/11/12      H  12-13  
18/11/12      H  12-13  
18/11/12      H  12-13  
18/11/12      H  12-13  
18/11/12      D  12-13  
18/11/12      H  12-13  
18/11/12      H  12-13  
18/11/12      D  12-13  
18/11/12      A  12-13  
18/11/12      A  12-13  
18/11/12      H  12-13  
18/11/12      D  12-13  
18/11/12      A  12-13  
18/11/12      H  12-13  


18/11/13
         league     home       away  hgoal  agoal result season
date                                                           
18/11/13     E2  Walsall  Peterboro      2      0      H  13-14


18/12/11
         league            home            away  hgoal  agoal result season
date                                                                       
18/12/11    SP1      Ath Madrid           Betis      0      2      A  11-12
18/12/11    SP1         Granada         Levante      2      1      H  11-12
18/12/11    SP1         Osasuna      Villarreal      2      1      H  11-12
18/12/11    SP1       Santander        Sociedad      0      0      D  11-12
18/12/11    SP1        Valencia          Malaga      2      0      H  11-12
18/12/11     I1         Catania         Palermo      2      0      H  11-12
18/12/11     I1          Cesena           Inter      0      1      A  11-12
18/12/11     I1           Genoa         Bologna      2      1      H  11-12
18/12/11     I1        Juventus          Novara      2      0      H  11-12
18/12/11     I1           Lazio         Udinese      2      2      D  11-12
18/12/11     I1          Napoli            Roma      1      3      A  11-12
18/12/11     I1           Parma           Lecce      3      3      D  11-12
18/12/11     D1  Kaiserslautern        Hannover      1      1      D  11-12
18/12/11     D1      M'gladbach           Mainz      1      0      H  11-12
18/12/11     T1      Buyuksehyr       Sivasspor      1      1      D  11-12
18/12/11     T1      Fenerbahce     Trabzonspor      1      0      H  11-12
18/12/11     T1      Manisaspor  Genclerbirligi      0      1      A  11-12
18/12/11     T1      Samsunspor        Besiktas      1      1      D  11-12


18/12/14
         league      home      away  hgoal  agoal result season
date                                                           
18/12/14     I1  Cagliari  Juventus      1      3      A  14-15
18/12/14     I1    Napoli     Parma      2      0      H  14-15


18/12/15
         league        home        away  hgoal  agoal result season
date                                                               
18/12/15     D1  Schalke 04  Hoffenheim      1      0      H  15-16
18/12/15     E2    Southend        Bury      4      1      H  15-16


19/01/13
         league           home              away  hgoal  agoal result season
date                                                                        
19/01/13    SP1         Getafe           Sevilla      1      1      D  12-13
19/01/13    SP1        Granada         Vallecano      2      0      H  12-13
19/01/13    SP1         Malaga             Celta      1      1      D  12-13
19/01/13    SP1       Sociedad         Barcelona      3      2      H  12-13
19/01/13     I1       Juventus           Udinese      4      0      H  12-13
19/01/13     I1          Milan           Bologna      2      1      H  12-13
19/01/13     I1        Palermo             Lazio      2      2      D  12-13
19/01/13     T1       Besiktas        Buyuksehyr      2      2      D  12-13
19/01/13     T1      Bursaspor       Kayserispor      2      1      H  12-13
19/01/13     T1      Sivasspor     Gaziantepspor      0      0      D  12-13
19/01/13     E2      Brentford          Tranmere      1      2      A  12-13
19/01/13     E2       Coventry            Oldham      2      1      H  12-13
19/01/13     E2      Doncaster     Leyton Orient      2      0      H  12-13
19/01/13     E2   Notts County  Sheffield United      1      1      D  12-13
19/01/13     E2        Swindon        Shrewsbury      2      0      H  12-13
19/01/13     E2        Walsall       Bournemouth      3      1      H  12-13
19/01/13     D1  Bayern Munich    Greuther Furth      2      0      H  12-13
19/01/13     D1     Hoffenheim        M'gladbach      0      0      D  12-13
19/01/13     D1     Leverkusen     Ein Frankfurt      3      1      H  12-13
19/01/13     D1          Mainz          Freiburg      0      0      D  12-13
19/01/13     D1  Werder Bremen          Dortmund      0      5      A  12-13
19/01/13     D1      Wolfsburg         Stuttgart      2      0      H  12-13


19/01/14
         league        home        away  hgoal  agoal result season
date                                                               
19/01/14    SP1  Ath Madrid     Sevilla      1      1      D  13-14
19/01/14    SP1      Getafe    Sociedad      2      2      D  13-14
19/01/14    SP1     Levante   Barcelona      1      1      D  13-14
19/01/14    SP1  Villarreal     Almeria      2      0      H  13-14
19/01/14     I1    Atalanta    Cagliari      1      0      H  13-14
19/01/14     I1     Bologna      Napoli      2      2      D  13-14
19/01/14     I1     Catania  Fiorentina      0      3      A  13-14
19/01/14     I1      Chievo       Parma      1      2      A  13-14
19/01/14     I1       Genoa       Inter      1      0      H  13-14
19/01/14     I1       Milan      Verona      1      0      H  13-14
19/01/14     I1    Sassuolo      Torino      0      2      A  13-14
19/01/14     I1     Udinese       Lazio      2      3      A  13-14


19/02/12
         league           home            away  hgoal  agoal result season
date                                                                      
19/02/12    SP1     Ath Bilbao          Malaga      3      0      H  11-12
19/02/12    SP1      Barcelona        Valencia      5      1      H  11-12
19/02/12    SP1        Granada        Sociedad      4      1      H  11-12
19/02/12    SP1        Levante       Vallecano      3      5      A  11-12
19/02/12    SP1       Mallorca      Villarreal      4      0      H  11-12
19/02/12    SP1       Sp Gijon      Ath Madrid      1      1      D  11-12
19/02/12     I1         Cesena           Milan      1      3      A  11-12
19/02/12     I1          Genoa          Chievo      0      1      A  11-12
19/02/12     I1          Lecce           Siena      4      1      H  11-12
19/02/12     I1         Novara        Atalanta      0      0      D  11-12
19/02/12     I1        Palermo           Lazio      5      1      H  11-12
19/02/12     I1           Roma           Parma      1      0      H  11-12
19/02/12     I1        Udinese        Cagliari      0      0      D  11-12
19/02/12     D1       Hannover       Stuttgart      4      2      H  11-12
19/02/12     D1     Schalke 04       Wolfsburg      4      0      H  11-12
19/02/12     T1       Besiktas  Genclerbirligi      3      2      H  11-12
19/02/12     T1  Eskisehirspor     Karabukspor      1      2      A  11-12
19/02/12     T1  Gaziantepspor        Orduspor      1      0      H  11-12
19/02/12     T1    Kayserispor     Trabzonspor      3      3      D  11-12


19/02/13
         league      home     away  hgoal  agoal result season
date                                                          
19/02/13     E2  Tranmere  Swindon      1      3      A  12-13


19/02/14
         league        home              away  hgoal  agoal result season
date                                                                     
19/02/14     E2  Gillingham  Sheffield United      0      1      A  13-14


19/02/16
         league           home       away  hgoal  agoal result season
date                                                                 
19/02/16     T1      Konyaspor  Sivasspor      2      1      H  15-16
19/02/16     D1  Ein Frankfurt    Hamburg      0      0      D  15-16
19/02/16     I1        Bologna   Juventus      0      0      D  15-16
19/02/16    SP1        Levante     Getafe      3      0      H  15-16


19/03/12
         league      home        away  hgoal  agoal result season
date                                                             
19/03/12    SP1   Espanol   Santander      3      1      H  11-12
19/03/12     I1      Roma       Genoa      1      0      H  11-12
19/03/12     T1  Besiktas  Manisaspor      4      1      H  11-12


19/03/13
         league    home                away  hgoal  agoal result season
date                                                                   
19/03/13     E2    Bury           Stevenage      2      0      H  12-13
19/03/13     E2   Crewe  Milton Keynes Dons      2      1      H  12-13
19/03/13     E2  Oldham          Hartlepool      3      0      H  12-13
19/03/13     E2  Yeovil             Swindon      0      2      A  12-13


19/03/16
         league            home              away  hgoal  agoal result season
date                                                                         
19/03/16     T1        Besiktas       Antalyaspor      1      0      H  15-16
19/03/16     T1     Osmanlispor    Genclerbirligi      3      1      H  15-16
19/03/16     T1     Trabzonspor         Sivasspor      1      0      H  15-16
19/03/16     D1   Ein Frankfurt          Hannover      1      0      H  15-16
19/03/16     D1         FC Koln     Bayern Munich      0      1      A  15-16
19/03/16     D1         Hamburg        Hoffenheim      1      3      A  15-16
19/03/16     D1          Hertha        Ingolstadt      2      1      H  15-16
19/03/16     D1   Werder Bremen             Mainz      1      1      D  15-16
19/03/16     D1       Wolfsburg         Darmstadt      1      1      D  15-16
19/03/16     I1          Empoli           Palermo      0      0      D  15-16
19/03/16     I1            Roma             Inter      1      1      D  15-16
19/03/16    SP1           Betis            Malaga      0      1      A  15-16
19/03/16    SP1         Granada         Vallecano      2      2      D  15-16
19/03/16    SP1       La Coruna           Levante      2      1      H  15-16
19/03/16    SP1        Sociedad        Las Palmas      0      1      A  15-16
19/03/16    SP1        Sp Gijon        Ath Madrid      2      1      H  15-16
19/03/16     E2            Bury        Shrewsbury      2      2      D  15-16
19/03/16     E2        Coventry           Swindon      0      0      D  15-16
19/03/16     E2           Crewe         Blackpool      1      2      A  15-16
19/03/16     E2       Doncaster         Peterboro      1      2      A  15-16
19/03/16     E2  Fleetwood Town          Barnsley      0      2      A  15-16
19/03/16     E2        Millwall  Sheffield United      1      0      H  15-16
19/03/16     E2          Oldham          Rochdale      2      3      A  15-16
19/03/16     E2       Port Vale            Burton      0      4      A  15-16
19/03/16     E2      Scunthorpe      Chesterfield      1      1      D  15-16
19/03/16     E2        Southend        Gillingham      1      1      D  15-16
19/03/16     E2         Walsall        Colchester      2      1      H  15-16
19/03/16     E2           Wigan          Bradford      1      0      H  15-16


19/04/13
         league         home        away  hgoal  agoal result season
date                                                                
19/04/13     T1  Galatasaray  Elazigspor      3      1      H  12-13
19/04/13     D1   M'gladbach    Augsburg      1      0      H  12-13


19/04/14
         league                  home            away  hgoal  agoal result  \
date                                                                         
19/04/14     D1              Augsburg          Hertha      0      0      D   
19/04/14     D1          Braunschweig   Bayern Munich      0      2      A   
19/04/14     D1              Dortmund           Mainz      4      2      H   
19/04/14     D1              Freiburg      M'gladbach      4      2      H   
19/04/14     D1               Hamburg       Wolfsburg      1      3      A   
19/04/14     D1         Werder Bremen      Hoffenheim      3      1      H   
19/04/14     T1  Akhisar Belediyespor     Kayserispor      2      2      D   
19/04/14     T1             Bursaspor      Elazigspor      1      0      H   
19/04/14     T1           Galatasaray       Kasimpasa      0      4      A   
19/04/14     T1         Gaziantepspor  Genclerbirligi      0      1      A   
19/04/14    SP1               Levante          Getafe      0      0      D   
19/04/14    SP1               Osasuna        Valencia      1      1      D   
19/04/14    SP1              Sociedad         Espanol      2      1      H   
19/04/14     I1              Atalanta          Verona      1      2      A   
19/04/14     I1               Catania       Sampdoria      2      1      H   
19/04/14     I1                Chievo        Sassuolo      0      1      A   
19/04/14     I1            Fiorentina            Roma      0      1      A   
19/04/14     I1                 Genoa        Cagliari      1      2      A   
19/04/14     I1              Juventus         Bologna      1      0      H   
19/04/14     I1                 Lazio          Torino      3      3      D   
19/04/14     I1                 Milan         Livorno      3      0      H   
19/04/14     I1                 Parma           Inter      0      2      A   
19/04/14     I1               Udinese          Napoli      1      1      D   

         season  
date             
19/04/14  13-14  
19/04/14  13-14  
19/04/14  13-14  
19/04/14  13-14  
19/04/14  13-14  
19/04/14  13-14  
19/04/14  13-14  
19/04/14  13-14  
19/04/14  13-14  
19/04/14  13-14  
19/04/14  13-14  
19/04/14  13-14  
19/04/14  13-14  
19/04/14  13-14  
19/04/14  13-14  
19/04/14  13-14  
19/04/14  13-14  
19/04/14  13-14  
19/04/14  13-14  
19/04/14  13-14  
19/04/14  13-14  
19/04/14  13-14  
19/04/14  13-14  


19/04/15
         league           home           away  hgoal  agoal result season
date                                                                     
19/04/15     D1  Werder Bremen        Hamburg      1      0      H  14-15
19/04/15     D1      Wolfsburg     Schalke 04      1      1      D  14-15
19/04/15     I1       Cagliari         Napoli      0      3      A  14-15
19/04/15     I1         Chievo        Udinese      1      1      D  14-15
19/04/15     I1         Empoli          Parma      2      2      D  14-15
19/04/15     I1          Inter          Milan      0      0      D  14-15
19/04/15     T1     Buyuksehyr       Rizespor      3      1      H  14-15
19/04/15     T1    Erciyesspor  Eskisehirspor      0      1      A  14-15
19/04/15     T1      Sivasspor  Balikesirspor      1      1      D  14-15
19/04/15     T1    Trabzonspor    Galatasaray      2      1      H  14-15
19/04/15    SP1          Eibar          Celta      0      1      A  14-15
19/04/15    SP1        Granada        Sevilla      1      1      D  14-15
19/04/15    SP1      Vallecano        Almeria      2      0      H  14-15
19/04/15    SP1     Villarreal        Cordoba      0      0      D  14-15


19/04/16
         league          home              away  hgoal  agoal result season
date                                                                       
19/04/16     I1        Napoli           Bologna      6      0      H  15-16
19/04/16    SP1         Betis        Las Palmas      1      0      H  15-16
19/04/16    SP1       Espanol             Celta      1      1      D  15-16
19/04/16     E2      Barnsley         Peterboro      1      0      H  15-16
19/04/16     E2        Burton             Wigan      1      1      D  15-16
19/04/16     E2  Chesterfield         Doncaster      1      1      D  15-16
19/04/16     E2      Coventry          Bradford      1      0      H  15-16
19/04/16     E2         Crewe        Colchester      1      1      D  15-16
19/04/16     E2      Millwall    Fleetwood Town      1      0      H  15-16
19/04/16     E2      Rochdale        Gillingham      1      1      D  15-16
19/04/16     E2    Scunthorpe              Bury      2      1      H  15-16
19/04/16     E2    Shrewsbury  Sheffield United      1      2      A  15-16
19/04/16     E2      Southend            Oldham      0      1      A  15-16
19/04/16     E2       Walsall           Swindon      1      1      D  15-16


19/05/13
         league            home         away  hgoal  agoal result season
date                                                                    
19/05/13    SP1       Barcelona   Valladolid      2      1      H  12-13
19/05/13    SP1       La Coruna      Espanol      2      0      H  12-13
19/05/13    SP1         Levante    Vallecano      2      3      A  12-13
19/05/13    SP1        Zaragoza   Ath Bilbao      1      2      A  12-13
19/05/13     I1        Atalanta       Chievo      2      2      D  12-13
19/05/13     I1         Bologna        Genoa      0      0      D  12-13
19/05/13     I1        Cagliari        Lazio      1      0      H  12-13
19/05/13     I1           Inter      Udinese      2      5      A  12-13
19/05/13     I1         Palermo        Parma      1      3      A  12-13
19/05/13     I1         Pescara   Fiorentina      1      5      A  12-13
19/05/13     I1            Roma       Napoli      2      1      H  12-13
19/05/13     I1           Siena        Milan      1      2      A  12-13
19/05/13     I1          Torino      Catania      2      2      D  12-13
19/05/13     T1      Elazigspor    Sivasspor      0      0      D  12-13
19/05/13     T1   Eskisehirspor  Antalyaspor      3      1      H  12-13
19/05/13     T1  Genclerbirligi    Bursaspor      2      2      D  12-13
19/05/13     T1     Kayserispor     Besiktas      2      0      H  12-13


19/05/16
         league            home                  away  hgoal  agoal result  \
date                                                                         
19/05/16     T1     Galatasaray           Kayserispor      6      0      H   
19/05/16     T1   Gaziantepspor           Antalyaspor      2      0      H   
19/05/16     T1  Genclerbirligi         Eskisehirspor      3      1      H   
19/05/16     T1     Osmanlispor  Akhisar Belediyespor      1      0      H   
19/05/16     T1       Sivasspor            Fenerbahce      2      2      D   
19/05/16     T1     Trabzonspor             Kasimpasa      0      6      A   

         season  
date             
19/05/16  15-16  
19/05/16  15-16  
19/05/16  15-16  
19/05/16  15-16  
19/05/16  15-16  
19/05/16  15-16  


19/08/11
         league        home       away  hgoal  agoal result season
date                                                              
19/08/11     D1  M'gladbach  Wolfsburg      4      1      H  11-12


19/08/12
         league                home        away  hgoal  agoal result season
date                                                                       
19/08/12    SP1          Ath Bilbao       Betis      3      5      A  12-13
19/08/12    SP1           Barcelona    Sociedad      5      1      H  12-13
19/08/12    SP1             Levante  Ath Madrid      1      1      D  12-13
19/08/12    SP1         Real Madrid    Valencia      1      1      D  12-13
19/08/12     T1          Buyuksehyr    Besiktas      1      1      D  12-13
19/08/12     T1         Kayserispor   Bursaspor      0      1      A  12-13
19/08/12     T1  Mersin Idman Yurdu    Orduspor      0      0      D  12-13


19/08/13
         league         home           away  hgoal  agoal result season
date                                                                   
19/08/13     T1  Galatasaray  Gaziantepspor      2      1      H  13-14
19/08/13     T1  Kayserispor      Sivasspor      1      0      H  13-14
19/08/13    SP1      Almeria     Villarreal      2      3      A  13-14
19/08/13    SP1        Celta        Espanol      2      2      D  13-14
19/08/13    SP1    Vallecano          Elche      3      0      H  13-14


19/08/14
         league          home                away  hgoal  agoal result season
date                                                                         
19/08/14     E2  Bristol City       Leyton Orient      0      0      D  14-15
19/08/14     E2  Chesterfield  Milton Keynes Dons      0      1      A  14-15
19/08/14     E2      Coventry            Barnsley      2      2      D  14-15
19/08/14     E2  Crawley Town            Bradford      1      3      A  14-15
19/08/14     E2         Crewe            Rochdale      2      5      A  14-15
19/08/14     E2     Doncaster             Preston      1      1      D  14-15
19/08/14     E2    Gillingham             Swindon      2      2      D  14-15
19/08/14     E2  Notts County          Colchester      2      1      H  14-15
19/08/14     E2        Oldham           Port Vale      1      1      D  14-15
19/08/14     E2     Peterboro    Sheffield United      1      2      A  14-15
19/08/14     E2    Scunthorpe      Fleetwood Town      0      2      A  14-15
19/08/14     E2       Walsall              Yeovil      1      2      A  14-15


19/08/15
         league       home        away  hgoal  agoal result season
date                                                              
19/08/15     E2  Doncaster    Southend      0      0      D  15-16
19/08/15     E2      Wigan  Scunthorpe      3      0      H  15-16


19/09/11
         league      home        away  hgoal  agoal result season
date                                                             
19/09/11     T1  Besiktas  Ankaragucu      3      1      H  11-12


19/09/14
         league           home            away  hgoal  agoal result season
date                                                                      
19/09/14     D1       Freiburg          Hertha      2      2      D  14-15
19/09/14     T1  Eskisehirspor  Genclerbirligi      0      2      A  14-15
19/09/14    SP1          Elche           Eibar      0      2      A  14-15


19/09/15
         league           home            away  hgoal  agoal result season
date                                                                      
19/09/15     T1  Eskisehirspor       Kasimpasa      0      3      A  15-16
19/09/15     T1       Rizespor     Antalyaspor      5      1      H  15-16
19/09/15     T1      Sivasspor       Konyaspor      0      0      D  15-16
19/09/15     T1    Trabzonspor     Galatasaray      0      1      A  15-16
19/09/15     D1      Darmstadt   Bayern Munich      0      3      A  15-16
19/09/15     D1        FC Koln      M'gladbach      1      0      H  15-16
19/09/15     D1        Hamburg   Ein Frankfurt      0      0      D  15-16
19/09/15     D1  Werder Bremen      Ingolstadt      0      1      A  15-16
19/09/15     D1      Wolfsburg          Hertha      2      0      H  15-16
19/09/15     I1          Milan         Palermo      3      2      H  15-16
19/09/15     I1        Udinese          Empoli      1      2      A  15-16
19/09/15    SP1          Eibar      Ath Madrid      0      2      A  15-16
19/09/15    SP1    Real Madrid         Granada      1      0      H  15-16
19/09/15    SP1       Sociedad         Espanol      2      3      A  15-16
19/09/15    SP1       Valencia           Betis      0      0      D  15-16
19/09/15     E2      Blackpool        Barnsley      1      1      D  15-16
19/09/15     E2           Bury       Port Vale      1      0      H  15-16
19/09/15     E2     Colchester      Gillingham      2      1      H  15-16
19/09/15     E2       Coventry    Chesterfield      1      0      H  15-16
19/09/15     E2      Doncaster          Oldham      1      1      D  15-16
19/09/15     E2       Millwall        Southend      0      2      A  15-16
19/09/15     E2      Peterboro         Walsall      1      1      D  15-16
19/09/15     E2       Rochdale      Scunthorpe      2      1      H  15-16
19/09/15     E2     Shrewsbury           Crewe      0      1      A  15-16
19/09/15     E2        Swindon          Burton      0      1      A  15-16
19/09/15     E2          Wigan  Fleetwood Town      2      1      H  15-16


19/10/11
         league     home              away  hgoal  agoal result season
date                                                                  
19/10/11     E2  Preston  Sheffield United      2      4      A  11-12


19/10/12
         league            home            away  hgoal  agoal result season
date                                                                       
19/10/12     T1  Genclerbirligi     Galatasaray      3      3      D  12-13
19/10/12     D1      Hoffenheim  Greuther Furth      3      3      D  12-13


19/10/13
         league                home           away  hgoal  agoal result season
date                                                                          
19/10/13     D1       Bayern Munich          Mainz      4      1      H  13-14
19/10/13     D1        Braunschweig     Schalke 04      2      3      A  13-14
19/10/13     D1            Dortmund       Hannover      1      0      H  13-14
19/10/13     D1       Ein Frankfurt       Nurnberg      1      1      D  13-14
19/10/13     D1              Hertha     M'gladbach      1      0      H  13-14
19/10/13     D1       Werder Bremen       Freiburg      0      0      D  13-14
19/10/13     T1          Elazigspor  Eskisehirspor      0      2      A  13-14
19/10/13     T1         Galatasaray    Karabukspor      2      1      H  13-14
19/10/13     T1      Genclerbirligi      Kasimpasa      1      3      A  13-14
19/10/13     E2           Brentford     Colchester      3      1      H  13-14
19/10/13     E2        Crawley Town       Bradford      1      0      H  13-14
19/10/13     E2               Crewe   Bristol City      1      0      H  13-14
19/10/13     E2          Gillingham        Preston      1      2      A  13-14
19/10/13     E2  Milton Keynes Dons      Rotherham      3      2      H  13-14
19/10/13     E2              Oldham       Carlisle      1      0      H  13-14
19/10/13     E2           Peterboro     Shrewsbury      1      0      H  13-14
19/10/13     E2    Sheffield United      Port Vale      2      1      H  13-14
19/10/13     E2            Tranmere  Leyton Orient      0      4      A  13-14
19/10/13     E2             Walsall      Stevenage      2      1      H  13-14
19/10/13     E2              Wolves       Coventry      1      1      D  13-14
19/10/13    SP1             Espanol     Ath Madrid      1      0      H  13-14
19/10/13    SP1             Osasuna      Barcelona      0      0      D  13-14
19/10/13    SP1         Real Madrid         Malaga      2      0      H  13-14
19/10/13    SP1            Valencia       Sociedad      1      2      A  13-14
19/10/13     I1            Cagliari        Catania      2      1      H  13-14
19/10/13     I1               Milan        Udinese      1      0      H  13-14


19/10/14
         league                  home                away  hgoal  agoal  \
date                                                                      
19/10/14     D1               Hamburg          Hoffenheim      1      1   
19/10/14     D1             Paderborn       Ein Frankfurt      3      1   
19/10/14     I1              Atalanta               Parma      1      0   
19/10/14     I1              Cagliari           Sampdoria      2      2   
19/10/14     I1            Fiorentina               Lazio      0      2   
19/10/14     I1                 Inter              Napoli      2      2   
19/10/14     I1               Palermo              Cesena      2      1   
19/10/14     I1                Torino             Udinese      1      0   
19/10/14     I1                Verona               Milan      1      3   
19/10/14     T1  Akhisar Belediyespor           Kasimpasa      2      0   
19/10/14     T1              Besiktas           Sivasspor      3      2   
19/10/14     T1             Bursaspor       Eskisehirspor      2      2   
19/10/14     T1           Trabzonspor  Mersin Idman Yurdu      3      1   
19/10/14    SP1            Ath Madrid             Espanol      2      0   
19/10/14    SP1                 Elche             Sevilla      0      2   
19/10/14    SP1             La Coruna            Valencia      3      0   
19/10/14    SP1            Villarreal             Almeria      2      0   

         result season  
date                    
19/10/14      D  14-15  
19/10/14      H  14-15  
19/10/14      H  14-15  
19/10/14      D  14-15  
19/10/14      A  14-15  
19/10/14      D  14-15  
19/10/14      H  14-15  
19/10/14      H  14-15  
19/10/14      A  14-15  
19/10/14      H  14-15  
19/10/14      H  14-15  
19/10/14      D  14-15  
19/10/14      H  14-15  
19/10/14      H  14-15  
19/10/14      A  14-15  
19/10/14      H  14-15  
19/10/14      H  14-15  


19/10/15
         league                home         away  hgoal  agoal result season
date                                                                        
19/10/15     T1  Mersin Idman Yurdu  Trabzonspor      3      2      H  15-16
19/10/15     T1         Osmanlispor   Buyuksehyr      0      3      A  15-16
19/10/15    SP1            Sp Gijon      Granada      3      3      D  15-16


19/11/11
         league              home                away  hgoal  agoal result  \
date                                                                         
19/11/11    SP1         Barcelona            Zaragoza      4      0      H   
19/11/11    SP1          Valencia         Real Madrid      2      3      A   
19/11/11    SP1        Villarreal               Betis      1      0      H   
19/11/11     I1        Fiorentina               Milan      0      0      D   
19/11/11     I1             Inter            Cagliari      2      1      H   
19/11/11     I1            Napoli               Lazio      0      0      D   
19/11/11     D1     Bayern Munich            Dortmund      0      1      A   
19/11/11     D1          Freiburg              Hertha      2      2      D   
19/11/11     D1        M'gladbach       Werder Bremen      5      0      H   
19/11/11     D1        Schalke 04            Nurnberg      4      0      H   
19/11/11     D1         Wolfsburg            Hannover      4      1      H   
19/11/11     T1        Ankaragucu         Karabukspor      2      1      H   
19/11/11     T1        Fenerbahce       Eskisehirspor      1      0      H   
19/11/11     T1       Kayserispor            Orduspor      1      0      H   
19/11/11     E2         Brentford            Charlton      0      1      A   
19/11/11     E2        Colchester  Milton Keynes Dons      1      5      A   
19/11/11     E2      Huddersfield        Notts County      2      1      H   
19/11/11     E2     Leyton Orient           Stevenage      0      0      D   
19/11/11     E2            Oldham        Chesterfield      5      2      H   
19/11/11     E2           Preston            Rochdale      0      1      A   
19/11/11     E2        Scunthorpe          Hartlepool      0      2      A   
19/11/11     E2  Sheffield United            Carlisle      1      0      H   
19/11/11     E2          Tranmere      Sheffield Weds      1      2      A   
19/11/11     E2           Walsall                Bury      2      4      A   
19/11/11     E2           Wycombe         Bournemouth      0      1      A   
19/11/11     E2            Yeovil              Exeter      2      2      D   

         season  
date             
19/11/11  11-12  
19/11/11  11-12  
19/11/11  11-12  
19/11/11  11-12  
19/11/11  11-12  
19/11/11  11-12  
19/11/11  11-12  
19/11/11  11-12  
19/11/11  11-12  
19/11/11  11-12  
19/11/11  11-12  
19/11/11  11-12  
19/11/11  11-12  
19/11/11  11-12  
19/11/11  11-12  
19/11/11  11-12  
19/11/11  11-12  
19/11/11  11-12  
19/11/11  11-12  
19/11/11  11-12  
19/11/11  11-12  
19/11/11  11-12  
19/11/11  11-12  
19/11/11  11-12  
19/11/11  11-12  
19/11/11  11-12  


19/11/12
         league      home         away  hgoal  agoal result season
date                                                              
19/11/12    SP1  Sociedad    Vallecano      4      0      H  12-13
19/11/12     I1      Roma       Torino      2      0      H  12-13
19/11/12     T1  Orduspor  Trabzonspor      1      2      A  12-13


19/12/14
         league         home           away  hgoal  agoal result season
date                                                                   
19/12/14     D1        Mainz  Bayern Munich      1      2      A  14-15
19/12/14     T1  Erciyesspor     Fenerbahce      0      1      A  14-15
19/12/14    SP1        Celta        Almeria      0      1      A  14-15


19/12/15
         league                home              away  hgoal  agoal result  \
date                                                                         
19/12/15     T1       Gaziantepspor          Rizespor      2      0      H   
19/12/15     T1           Konyaspor         Bursaspor      1      0      H   
19/12/15     T1  Mersin Idman Yurdu         Kasimpasa      1      2      A   
19/12/15     T1         Trabzonspor       Antalyaspor      3      0      H   
19/12/15     D1       Ein Frankfurt     Werder Bremen      2      1      H   
19/12/15     D1             FC Koln          Dortmund      2      1      H   
19/12/15     D1             Hamburg          Augsburg      0      1      A   
19/12/15     D1            Hannover     Bayern Munich      0      1      A   
19/12/15     D1          Ingolstadt        Leverkusen      0      1      A   
19/12/15     D1           Stuttgart         Wolfsburg      3      1      H   
19/12/15     I1             Bologna            Empoli      2      3      A   
19/12/15    SP1               Betis           Sevilla      0      0      D   
19/12/15    SP1             Espanol        Las Palmas      1      0      H   
19/12/15    SP1           La Coruna             Eibar      2      0      H   
19/12/15    SP1            Valencia            Getafe      2      2      D   
19/12/15     E2            Barnsley             Wigan      0      2      A   
19/12/15     E2           Blackpool         Peterboro      2      0      H   
19/12/15     E2              Burton         Doncaster      3      3      D   
19/12/15     E2        Chesterfield          Bradford      0      1      A   
19/12/15     E2            Coventry            Oldham      1      1      D   
19/12/15     E2               Crewe    Fleetwood Town      1      1      D   
19/12/15     E2            Millwall        Gillingham      0      3      A   
19/12/15     E2            Rochdale        Colchester      3      1      H   
19/12/15     E2          Scunthorpe  Sheffield United      0      1      A   
19/12/15     E2          Shrewsbury           Swindon      0      1      A   

         season  
date             
19/12/15  15-16  
19/12/15  15-16  
19/12/15  15-16  
19/12/15  15-16  
19/12/15  15-16  
19/12/15  15-16  
19/12/15  15-16  
19/12/15  15-16  
19/12/15  15-16  
19/12/15  15-16  
19/12/15  15-16  
19/12/15  15-16  
19/12/15  15-16  
19/12/15  15-16  
19/12/15  15-16  
19/12/15  15-16  
19/12/15  15-16  
19/12/15  15-16  
19/12/15  15-16  
19/12/15  15-16  
19/12/15  15-16  
19/12/15  15-16  
19/12/15  15-16  
19/12/15  15-16  
19/12/15  15-16  


20/01/12
         league           home                away  hgoal  agoal result season
date                                                                          
20/01/12     D1     M'gladbach       Bayern Munich      3      1      H  11-12
20/01/12     T1    Antalyaspor            Besiktas      1      2      A  11-12
20/01/12     T1  Gaziantepspor  Mersin Idman Yurdu      1      0      H  11-12


20/01/13
         league                home            away  hgoal  agoal result  \
date                                                                       
20/01/13    SP1          Ath Madrid         Levante      2      0      H   
20/01/13    SP1             Osasuna       La Coruna      2      1      H   
20/01/13    SP1            Valencia     Real Madrid      0      5      A   
20/01/13    SP1          Valladolid        Zaragoza      2      0      H   
20/01/13     I1            Atalanta        Cagliari      1      1      D   
20/01/13     I1              Chievo           Parma      1      1      D   
20/01/13     I1          Fiorentina          Napoli      1      1      D   
20/01/13     I1               Genoa         Catania      0      2      A   
20/01/13     I1             Pescara          Torino      0      2      A   
20/01/13     I1                Roma           Inter      1      1      D   
20/01/13     I1               Siena       Sampdoria      1      0      H   
20/01/13     T1         Antalyaspor  Genclerbirligi      3      5      A   
20/01/13     T1          Fenerbahce      Elazigspor      2      2      D   
20/01/13     T1         Trabzonspor     Karabukspor      1      3      A   
20/01/13     D1  Fortuna Dusseldorf        Augsburg      2      3      A   
20/01/13     D1            Nurnberg         Hamburg      1      1      D   

         season  
date             
20/01/13  12-13  
20/01/13  12-13  
20/01/13  12-13  
20/01/13  12-13  
20/01/13  12-13  
20/01/13  12-13  
20/01/13  12-13  
20/01/13  12-13  
20/01/13  12-13  
20/01/13  12-13  
20/01/13  12-13  
20/01/13  12-13  
20/01/13  12-13  
20/01/13  12-13  
20/01/13  12-13  
20/01/13  12-13  


20/01/14
         league        home        away  hgoal  agoal result season
date                                                               
20/01/14    SP1  Ath Bilbao  Valladolid      4      2      H  13-14


20/01/15
         league       home          away  hgoal  agoal result season
date                                                                
20/01/15     E2  Doncaster  Notts County      0      0      D  14-15
20/01/15     E2    Preston        Yeovil      1      1      D  14-15


20/01/16
         league      home    away  hgoal  agoal result season
date                                                         
20/01/16     I1  Sassuolo  Torino      1      1      D  15-16


20/02/12
         league       home        away  hgoal  agoal result season
date                                                              
20/02/12    SP1   Zaragoza       Betis      0      2      A  11-12
20/02/12     T1  Bursaspor  Buyuksehyr      2      1      H  11-12
20/02/12     E2  Brentford    Carlisle      4      0      H  11-12


20/02/15
         league         home       away  hgoal  agoal result season
date                                                               
20/02/15     D1    Stuttgart   Dortmund      2      3      A  14-15
20/02/15     I1     Juventus   Atalanta      2      1      H  14-15
20/02/15     T1  Erciyesspor  Konyaspor      3      0      H  14-15
20/02/15    SP1       Getafe    Espanol      2      1      H  14-15


20/02/16
         league              home           away  hgoal  agoal result season
date                                                                        
20/02/16     T1       Antalyaspor       Rizespor      2      1      H  15-16
20/02/16     T1         Bursaspor     Fenerbahce      0      0      D  15-16
20/02/16     T1         Kasimpasa  Eskisehirspor      2      1      H  15-16
20/02/16     D1     Bayern Munich      Darmstadt      3      1      H  15-16
20/02/16     D1            Hertha      Wolfsburg      1      1      D  15-16
20/02/16     D1        Hoffenheim          Mainz      3      2      H  15-16
20/02/16     D1        Ingolstadt  Werder Bremen      2      0      H  15-16
20/02/16     D1        M'gladbach        FC Koln      1      0      H  15-16
20/02/16     I1             Inter      Sampdoria      3      1      H  15-16
20/02/16     I1            Verona         Chievo      3      1      H  15-16
20/02/16    SP1             Betis       Sp Gijon      1      1      D  15-16
20/02/16    SP1             Celta          Eibar      3      2      H  15-16
20/02/16    SP1           Espanol      La Coruna      1      0      H  15-16
20/02/16    SP1        Las Palmas      Barcelona      1      2      A  15-16
20/02/16     E2          Barnsley      Doncaster      1      0      H  15-16
20/02/16     E2          Bradford       Rochdale      2      2      D  15-16
20/02/16     E2              Bury     Colchester      5      2      H  15-16
20/02/16     E2      Chesterfield          Crewe      3      1      H  15-16
20/02/16     E2    Fleetwood Town     Scunthorpe      2      1      H  15-16
20/02/16     E2          Millwall      Peterboro      3      0      H  15-16
20/02/16     E2            Oldham     Gillingham      2      1      H  15-16
20/02/16     E2  Sheffield United      Port Vale      1      0      H  15-16
20/02/16     E2           Swindon      Blackpool      3      2      H  15-16
20/02/16     E2           Walsall          Wigan      1      2      A  15-16


20/03/12
         league                home              away  hgoal  agoal result  \
date                                                                         
20/03/12    SP1           Barcelona           Granada      5      3      H   
20/03/12    SP1             Osasuna            Getafe      0      0      D   
20/03/12     E2         Bournemouth         Brentford      1      0      H   
20/03/12     E2                Bury        Scunthorpe      0      0      D   
20/03/12     E2            Carlisle           Preston      0      0      D   
20/03/12     E2            Charlton            Yeovil      3      0      H   
20/03/12     E2        Chesterfield      Huddersfield      0      2      A   
20/03/12     E2              Exeter           Wycombe      1      3      A   
20/03/12     E2          Hartlepool            Oldham      0      1      A   
20/03/12     E2  Milton Keynes Dons     Leyton Orient      4      1      H   
20/03/12     E2        Notts County  Sheffield United      2      5      A   
20/03/12     E2            Rochdale          Tranmere      0      2      A   
20/03/12     E2      Sheffield Weds           Walsall      2      2      D   
20/03/12     E2           Stevenage        Colchester      0      0      D   

         season  
date             
20/03/12  11-12  
20/03/12  11-12  
20/03/12  11-12  
20/03/12  11-12  
20/03/12  11-12  
20/03/12  11-12  
20/03/12  11-12  
20/03/12  11-12  
20/03/12  11-12  
20/03/12  11-12  
20/03/12  11-12  
20/03/12  11-12  
20/03/12  11-12  
20/03/12  11-12  


20/03/15
         league           home           away  hgoal  agoal result season
date                                                                     
20/03/15     D1        Hamburg         Hertha      0      1      A  14-15
20/03/15     T1  Balikesirspor  Eskisehirspor      4      1      H  14-15
20/03/15     T1    Karabukspor      Konyaspor      0      1      A  14-15
20/03/15    SP1          Elche       Valencia      0      4      A  14-15


20/03/16
         league                home           away  hgoal  agoal result season
date                                                                          
20/03/16     T1           Bursaspor      Kasimpasa      4      1      H  15-16
20/03/16     T1           Konyaspor     Buyuksehyr      1      1      D  15-16
20/03/16     T1  Mersin Idman Yurdu  Gaziantepspor      0      0      D  15-16
20/03/16     D1            Augsburg       Dortmund      1      3      A  15-16
20/03/16     D1           Stuttgart     Leverkusen      0      2      A  15-16
20/03/16     I1            Atalanta        Bologna      2      0      H  15-16
20/03/16     I1           Frosinone     Fiorentina      0      0      D  15-16
20/03/16     I1               Milan          Lazio      1      1      D  15-16
20/03/16     I1              Napoli          Genoa      3      1      H  15-16
20/03/16     I1           Sampdoria         Chievo      0      1      A  15-16
20/03/16     I1            Sassuolo        Udinese      1      1      D  15-16
20/03/16     I1              Torino       Juventus      1      4      A  15-16
20/03/16     I1              Verona          Carpi      1      2      A  15-16
20/03/16    SP1             Espanol     Ath Bilbao      2      1      H  15-16
20/03/16    SP1         Real Madrid        Sevilla      4      0      H  15-16
20/03/16    SP1            Valencia          Celta      0      2      A  15-16
20/03/16    SP1          Villarreal      Barcelona      2      2      D  15-16


20/04/12
         league   home       away  hgoal  agoal result season
date                                                         
20/04/12     D1  Mainz  Wolfsburg      0      0      D  11-12


20/04/13
         league                  home                away  hgoal  agoal  \
date                                                                      
20/04/13    SP1             Barcelona             Levante      1      0   
20/04/13    SP1               Granada          Valladolid      1      1   
20/04/13    SP1           Real Madrid               Betis      3      1   
20/04/13    SP1              Valencia              Malaga      5      1   
20/04/13     I1                 Genoa            Atalanta      1      1   
20/04/13     I1               Udinese               Lazio      1      0   
20/04/13     T1  Akhisar Belediyespor            Besiktas      4      1   
20/04/13     T1           Karabukspor  Mersin Idman Yurdu      1      0   
20/04/13     T1              Orduspor           Kasimpasa      0      2   
20/04/13     E2           Bournemouth            Carlisle      3      1   
20/04/13     E2            Colchester          Shrewsbury      0      0   
20/04/13     E2              Coventry       Leyton Orient      0      1   
20/04/13     E2             Doncaster        Notts County      0      1   
20/04/13     E2            Hartlepool           Brentford      1      1   
20/04/13     E2    Milton Keynes Dons          Scunthorpe      0      1   
20/04/13     E2                Oldham        Crawley Town      2      1   
20/04/13     E2            Portsmouth    Sheffield United      3      0   
20/04/13     E2               Preston            Tranmere      1      0   
20/04/13     E2               Swindon           Stevenage      3      0   
20/04/13     E2               Walsall                Bury      1      1   
20/04/13     E2                Yeovil               Crewe      1      0   
20/04/13     D1              Dortmund               Mainz      2      0   
20/04/13     D1         Ein Frankfurt          Schalke 04      1      0   
20/04/13     D1               Hamburg  Fortuna Dusseldorf      2      1   
20/04/13     D1              Hannover       Bayern Munich      1      6   
20/04/13     D1            Leverkusen          Hoffenheim      5      0   
20/04/13     D1         Werder Bremen           Wolfsburg      0      3   

         result season  
date                    
20/04/13      H  12-13  
20/04/13      D  12-13  
20/04/13      H  12-13  
20/04/13      H  12-13  
20/04/13      D  12-13  
20/04/13      H  12-13  
20/04/13      H  12-13  
20/04/13      H  12-13  
20/04/13      A  12-13  
20/04/13      H  12-13  
20/04/13      D  12-13  
20/04/13      A  12-13  
20/04/13      A  12-13  
20/04/13      D  12-13  
20/04/13      A  12-13  
20/04/13      H  12-13  
20/04/13      H  12-13  
20/04/13      H  12-13  
20/04/13      H  12-13  
20/04/13      D  12-13  
20/04/13      H  12-13  
20/04/13      H  12-13  
20/04/13      H  12-13  
20/04/13      H  12-13  
20/04/13      A  12-13  
20/04/13      H  12-13  
20/04/13      A  12-13  


20/04/14
         league       home        away  hgoal  agoal result season
date                                                              
20/04/14     D1   Nurnberg  Leverkusen      1      4      A  13-14
20/04/14     D1  Stuttgart  Schalke 04      3      1      H  13-14
20/04/14     T1   Besiktas  Fenerbahce      1      1      D  13-14
20/04/14     T1   Rizespor   Konyaspor      3      1      H  13-14
20/04/14    SP1    Almeria       Celta      2      4      A  13-14
20/04/14    SP1  Barcelona  Ath Bilbao      2      1      H  13-14
20/04/14    SP1    Sevilla     Granada      4      0      H  13-14
20/04/14    SP1  Vallecano       Betis      3      1      H  13-14


20/04/15
         league                home                  away  hgoal  agoal  \
date                                                                      
20/04/15     T1          Fenerbahce             Bursaspor      1      0   
20/04/15     T1  Mersin Idman Yurdu  Akhisar Belediyespor      1      1   
20/04/15    SP1               Elche              Sociedad      1      0   

         result season  
date                    
20/04/15      H  14-15  
20/04/15      D  14-15  
20/04/15      H  14-15  


20/04/16
         league         home        away  hgoal  agoal result season
date                                                                
20/04/16     I1       Chievo   Frosinone      5      1      H  15-16
20/04/16     I1       Empoli      Verona      1      0      H  15-16
20/04/16     I1        Genoa       Inter      1      0      H  15-16
20/04/16     I1     Juventus       Lazio      3      0      H  15-16
20/04/16     I1      Palermo    Atalanta      2      2      D  15-16
20/04/16     I1         Roma      Torino      3      2      H  15-16
20/04/16     I1     Sassuolo   Sampdoria      0      0      D  15-16
20/04/16     I1      Udinese  Fiorentina      2      1      H  15-16
20/04/16    SP1   Ath Bilbao  Ath Madrid      0      1      A  15-16
20/04/16    SP1    La Coruna   Barcelona      0      8      A  15-16
20/04/16    SP1       Malaga   Vallecano      1      1      D  15-16
20/04/16    SP1  Real Madrid  Villarreal      3      0      H  15-16
20/04/16    SP1     Sp Gijon     Sevilla      2      1      H  15-16
20/04/16    SP1     Valencia       Eibar      4      0      H  15-16


20/05/13
         league      home   away  hgoal  agoal result season
date                                                        
20/05/13    SP1  Mallorca  Betis      1      0      H  12-13


20/08/11
         league                home              away  hgoal  agoal result  \
date                                                                         
20/08/11     D1            Augsburg        Hoffenheim      0      2      A   
20/08/11     D1       Bayern Munich           Hamburg      5      0      H   
20/08/11     D1            Dortmund          Nurnberg      2      0      H   
20/08/11     D1             FC Koln    Kaiserslautern      1      1      D   
20/08/11     D1           Stuttgart        Leverkusen      0      1      A   
20/08/11     D1       Werder Bremen          Freiburg      5      3      H   
20/08/11     E2           Brentford     Leyton Orient      5      0      H   
20/08/11     E2            Carlisle       Bournemouth      2      1      H   
20/08/11     E2            Charlton        Scunthorpe      2      2      D   
20/08/11     E2        Huddersfield        Colchester      3      2      H   
20/08/11     E2  Milton Keynes Dons      Chesterfield      6      2      H   
20/08/11     E2              Oldham          Rochdale      2      0      H   
20/08/11     E2             Preston            Exeter      1      0      H   
20/08/11     E2      Sheffield Weds      Notts County      2      1      H   
20/08/11     E2           Stevenage        Hartlepool      2      2      D   
20/08/11     E2            Tranmere  Sheffield United      1      1      D   
20/08/11     E2             Walsall            Yeovil      1      1      D   
20/08/11     E2             Wycombe              Bury      0      2      A   

         season  
date             
20/08/11  11-12  
20/08/11  11-12  
20/08/11  11-12  
20/08/11  11-12  
20/08/11  11-12  
20/08/11  11-12  
20/08/11  11-12  
20/08/11  11-12  
20/08/11  11-12  
20/08/11  11-12  
20/08/11  11-12  
20/08/11  11-12  
20/08/11  11-12  
20/08/11  11-12  
20/08/11  11-12  
20/08/11  11-12  
20/08/11  11-12  
20/08/11  11-12  


20/08/12
         league            home         away  hgoal  agoal result season
date                                                                    
20/08/12    SP1       La Coruna      Osasuna      2      0      H  12-13
20/08/12    SP1       Vallecano      Granada      1      0      H  12-13
20/08/12    SP1        Zaragoza   Valladolid      0      1      A  12-13
20/08/12     T1     Galatasaray    Kasimpasa      2      1      H  12-13
20/08/12     T1  Genclerbirligi  Antalyaspor      3      1      H  12-13


20/09/11
         league           home         away  hgoal  agoal result season
date                                                                   
20/09/11    SP1        Osasuna      Sevilla      0      0      D  11-12
20/09/11    SP1       Sociedad      Granada      1      0      H  11-12
20/09/11    SP1     Villarreal     Mallorca      2      0      H  11-12
20/09/11     I1         Novara        Inter      3      1      H  11-12
20/09/11     T1     Buyuksehyr     Orduspor      1      1      D  11-12
20/09/11     T1     Fenerbahce   Manisaspor      1      1      D  11-12
20/09/11     T1  Gaziantepspor  Kayserispor      1      2      A  11-12


20/09/13
         league                  home           away  hgoal  agoal result  \
date                                                                        
20/09/13     D1            M'gladbach   Braunschweig      4      1      H   
20/09/13     T1  Akhisar Belediyespor  Gaziantepspor      2      0      H   
20/09/13     T1           Karabukspor    Erciyesspor      0      0      D   
20/09/13    SP1               Osasuna          Elche      2      1      H   

         season  
date             
20/09/13  13-14  
20/09/13  13-14  
20/09/13  13-14  
20/09/13  13-14  


20/09/14
         league                home                  away  hgoal  agoal  \
date                                                                      
20/09/14     D1            Augsburg         Werder Bremen      4      2   
20/09/14     D1             Hamburg         Bayern Munich      0      0   
20/09/14     D1               Mainz              Dortmund      2      0   
20/09/14     D1           Paderborn              Hannover      2      0   
20/09/14     D1          Schalke 04         Ein Frankfurt      2      2   
20/09/14     D1           Stuttgart            Hoffenheim      0      2   
20/09/14     I1              Cesena                Empoli      2      2   
20/09/14     I1               Milan              Juventus      0      1   
20/09/14     T1       Balikesirspor           Galatasaray      2      0   
20/09/14     T1         Erciyesspor  Akhisar Belediyespor      1      2   
20/09/14     T1  Mersin Idman Yurdu              Rizespor      2      0   
20/09/14     E2          Colchester              Bradford      0      0   
20/09/14     E2           Doncaster          Chesterfield      3      2   
20/09/14     E2      Fleetwood Town          Bristol City      3      3   
20/09/14     E2          Gillingham               Walsall      0      0   
20/09/14     E2  Milton Keynes Dons                 Crewe      6      1   
20/09/14     E2        Notts County                Oldham      0      0   
20/09/14     E2           Port Vale              Barnsley      2      1   
20/09/14     E2             Preston          Crawley Town      2      0   
20/09/14     E2            Rochdale              Coventry      1      0   
20/09/14     E2          Scunthorpe         Leyton Orient      1      2   
20/09/14     E2             Swindon      Sheffield United      5      2   
20/09/14     E2              Yeovil             Peterboro      1      0   
20/09/14    SP1          Ath Bilbao               Granada      0      1   
20/09/14    SP1          Ath Madrid                 Celta      2      2   
20/09/14    SP1             Espanol                Malaga      2      2   
20/09/14    SP1           La Coruna           Real Madrid      2      8   

         result season  
date                    
20/09/14      H  14-15  
20/09/14      D  14-15  
20/09/14      H  14-15  
20/09/14      H  14-15  
20/09/14      D  14-15  
20/09/14      A  14-15  
20/09/14      D  14-15  
20/09/14      A  14-15  
20/09/14      H  14-15  
20/09/14      A  14-15  
20/09/14      H  14-15  
20/09/14      D  14-15  
20/09/14      H  14-15  
20/09/14      D  14-15  
20/09/14      D  14-15  
20/09/14      H  14-15  
20/09/14      D  14-15  
20/09/14      H  14-15  
20/09/14      H  14-15  
20/09/14      H  14-15  
20/09/14      A  14-15  
20/09/14      H  14-15  
20/09/14      H  14-15  
20/09/14      A  14-15  
20/09/14      D  14-15  
20/09/14      D  14-15  
20/09/14      A  14-15  


20/09/15
         league           home              away  hgoal  agoal result season
date                                                                        
20/09/15     T1     Fenerbahce         Bursaspor      2      1      H  15-16
20/09/15     T1  Gaziantepspor       Kayserispor      1      0      H  15-16
20/09/15     D1       Augsburg          Hannover      2      0      H  15-16
20/09/15     D1       Dortmund        Leverkusen      3      0      H  15-16
20/09/15     D1      Stuttgart        Schalke 04      0      1      A  15-16
20/09/15     I1       Atalanta            Verona      1      1      D  15-16
20/09/15     I1        Bologna         Frosinone      1      0      H  15-16
20/09/15     I1          Carpi        Fiorentina      0      1      A  15-16
20/09/15     I1         Chievo             Inter      0      1      A  15-16
20/09/15     I1          Genoa          Juventus      0      2      A  15-16
20/09/15     I1         Napoli             Lazio      5      0      H  15-16
20/09/15     I1           Roma          Sassuolo      2      2      D  15-16
20/09/15     I1         Torino         Sampdoria      2      0      H  15-16
20/09/15    SP1      Barcelona           Levante      4      1      H  15-16
20/09/15    SP1      La Coruna          Sp Gijon      2      3      A  15-16
20/09/15    SP1     Las Palmas         Vallecano      0      1      A  15-16
20/09/15    SP1        Sevilla             Celta      1      2      A  15-16
20/09/15    SP1     Villarreal        Ath Bilbao      3      1      H  15-16
20/09/15     E2       Bradford  Sheffield United      2      2      D  15-16


20/10/12
         league                home              away  hgoal  agoal result  \
date                                                                         
20/10/12    SP1           La Coruna         Barcelona      4      5      A   
20/10/12    SP1              Malaga        Valladolid      2      1      H   
20/10/12    SP1         Real Madrid             Celta      2      0      H   
20/10/12    SP1            Valencia        Ath Bilbao      3      2      H   
20/10/12     I1            Juventus            Napoli      2      0      H   
20/10/12     I1               Lazio             Milan      3      2      H   
20/10/12     T1         Antalyaspor         Sivasspor      4      2      H   
20/10/12     T1           Bursaspor        Fenerbahce      1      1      D   
20/10/12     T1            Orduspor        Elazigspor      2      2      D   
20/10/12     E2         Bournemouth          Tranmere      3      1      H   
20/10/12     E2          Colchester          Carlisle      2      0      H   
20/10/12     E2            Coventry      Notts County      1      2      A   
20/10/12     E2           Doncaster         Brentford      2      1      H   
20/10/12     E2          Hartlepool      Crawley Town      0      1      A   
20/10/12     E2  Milton Keynes Dons         Stevenage      0      1      A   
20/10/12     E2              Oldham     Leyton Orient      2      0      H   
20/10/12     E2          Portsmouth        Shrewsbury      2      1      H   
20/10/12     E2             Preston  Sheffield United      0      1      A   
20/10/12     E2             Swindon        Scunthorpe      1      1      D   
20/10/12     E2             Walsall             Crewe      2      2      D   
20/10/12     E2              Yeovil              Bury      2      1      H   
20/10/12     D1            Dortmund        Schalke 04      1      2      A   
20/10/12     D1       Ein Frankfurt          Hannover      3      1      H   
20/10/12     D1  Fortuna Dusseldorf     Bayern Munich      0      5      A   
20/10/12     D1          Leverkusen             Mainz      2      2      D   
20/10/12     D1       Werder Bremen        M'gladbach      4      0      H   
20/10/12     D1           Wolfsburg          Freiburg      0      2      A   

         season  
date             
20/10/12  12-13  
20/10/12  12-13  
20/10/12  12-13  
20/10/12  12-13  
20/10/12  12-13  
20/10/12  12-13  
20/10/12  12-13  
20/10/12  12-13  
20/10/12  12-13  
20/10/12  12-13  
20/10/12  12-13  
20/10/12  12-13  
20/10/12  12-13  
20/10/12  12-13  
20/10/12  12-13  
20/10/12  12-13  
20/10/12  12-13  
20/10/12  12-13  
20/10/12  12-13  
20/10/12  12-13  
20/10/12  12-13  
20/10/12  12-13  
20/10/12  12-13  
20/10/12  12-13  
20/10/12  12-13  
20/10/12  12-13  
20/10/12  12-13  


20/10/13
         league           home                  away  hgoal  agoal result  \
date                                                                        
20/10/13     D1       Augsburg             Wolfsburg      1      2      A   
20/10/13     D1        Hamburg             Stuttgart      3      3      D   
20/10/13     T1    Antalyaspor  Akhisar Belediyespor      1      0      H   
20/10/13     T1    Erciyesspor            Fenerbahce      1      2      A   
20/10/13     T1  Gaziantepspor             Konyaspor      3      3      D   
20/10/13     T1    Trabzonspor             Sivasspor      0      0      D   
20/10/13    SP1        Almeria             Vallecano      0      1      A   
20/10/13    SP1          Betis                 Elche      1      2      A   
20/10/13    SP1        Granada                Getafe      0      2      A   
20/10/13    SP1     Valladolid               Sevilla      2      2      D   
20/10/13     I1       Atalanta                 Lazio      2      1      H   
20/10/13     I1     Fiorentina              Juventus      4      2      H   
20/10/13     I1          Genoa                Chievo      2      1      H   
20/10/13     I1        Livorno             Sampdoria      1      2      A   
20/10/13     I1       Sassuolo               Bologna      2      1      H   
20/10/13     I1         Torino                 Inter      3      3      D   
20/10/13     I1         Verona                 Parma      3      2      H   

         season  
date             
20/10/13  13-14  
20/10/13  13-14  
20/10/13  13-14  
20/10/13  13-14  
20/10/13  13-14  
20/10/13  13-14  
20/10/13  13-14  
20/10/13  13-14  
20/10/13  13-14  
20/10/13  13-14  
20/10/13  13-14  
20/10/13  13-14  
20/10/13  13-14  
20/10/13  13-14  
20/10/13  13-14  
20/10/13  13-14  
20/10/13  13-14  


20/10/14
         league            home           away  hgoal  agoal result season
date                                                                      
20/10/14     I1           Genoa         Empoli      1      1      D  14-15
20/10/14     T1  Genclerbirligi    Erciyesspor      0      0      D  14-15
20/10/14     T1        Rizespor  Balikesirspor      2      2      D  14-15
20/10/14    SP1        Sociedad         Getafe      1      2      A  14-15


20/10/15
         league              home            away  hgoal  agoal result season
date                                                                         
20/10/15     E2          Barnsley         Walsall      0      2      A  15-16
20/10/15     E2         Blackpool        Millwall      1      1      D  15-16
20/10/15     E2          Bradford            Bury      2      1      H  15-16
20/10/15     E2            Burton           Crewe      0      0      D  15-16
20/10/15     E2      Chesterfield        Southend      3      0      H  15-16
20/10/15     E2        Colchester       Port Vale      2      1      H  15-16
20/10/15     E2        Gillingham      Scunthorpe      2      1      H  15-16
20/10/15     E2         Peterboro           Wigan      2      3      A  15-16
20/10/15     E2          Rochdale        Coventry      0      0      D  15-16
20/10/15     E2  Sheffield United  Fleetwood Town      3      0      H  15-16
20/10/15     E2        Shrewsbury       Doncaster      1      2      A  15-16
20/10/15     E2           Swindon          Oldham      1      2      A  15-16


20/11/11
         league           home            away  hgoal  agoal result season
date                                                                      
20/11/11    SP1     Ath Madrid         Levante      3      2      H  11-12
20/11/11    SP1        Osasuna       Vallecano      0      0      D  11-12
20/11/11    SP1        Sevilla      Ath Bilbao      1      2      A  11-12
20/11/11    SP1       Sociedad         Espanol      0      0      D  11-12
20/11/11    SP1       Sp Gijon          Getafe      2      1      H  11-12
20/11/11     I1        Bologna          Cesena      0      1      A  11-12
20/11/11     I1        Catania          Chievo      1      2      A  11-12
20/11/11     I1          Genoa          Novara      1      0      H  11-12
20/11/11     I1       Juventus         Palermo      3      0      H  11-12
20/11/11     I1          Parma         Udinese      2      0      H  11-12
20/11/11     I1           Roma           Lecce      2      1      H  11-12
20/11/11     I1          Siena        Atalanta      2      2      D  11-12
20/11/11     D1        Hamburg      Hoffenheim      2      0      H  11-12
20/11/11     D1      Stuttgart        Augsburg      2      1      H  11-12
20/11/11     T1    Antalyaspor      Buyuksehyr      2      1      H  11-12
20/11/11     T1       Besiktas     Galatasaray      0      0      D  11-12
20/11/11     T1  Gaziantepspor      Manisaspor      1      1      D  11-12
20/11/11     T1      Sivasspor  Genclerbirligi      1      1      D  11-12


20/11/12
         league              home                away  hgoal  agoal result  \
date                                                                         
20/11/12     E2       Bournemouth           Stevenage      1      1      D   
20/11/12     E2          Carlisle           Doncaster      1      3      A   
20/11/12     E2        Colchester            Coventry      1      3      A   
20/11/12     E2      Crawley Town              Yeovil      0      1      A   
20/11/12     E2        Hartlepool              Oldham      1      2      A   
20/11/12     E2        Portsmouth       Leyton Orient      2      3      A   
20/11/12     E2           Preston        Notts County      0      0      D   
20/11/12     E2        Scunthorpe                Bury      1      2      A   
20/11/12     E2  Sheffield United               Crewe      3      3      D   
20/11/12     E2        Shrewsbury  Milton Keynes Dons      2      2      D   
20/11/12     E2           Swindon           Brentford      0      1      A   
20/11/12     E2          Tranmere             Walsall      0      0      D   

         season  
date             
20/11/12  12-13  
20/11/12  12-13  
20/11/12  12-13  
20/11/12  12-13  
20/11/12  12-13  
20/11/12  12-13  
20/11/12  12-13  
20/11/12  12-13  
20/11/12  12-13  
20/11/12  12-13  
20/11/12  12-13  
20/11/12  12-13  


20/11/15
         league     home      away  hgoal  agoal result season
date                                                          
20/11/15     D1  Hamburg  Dortmund      3      1      H  15-16


20/12/11
         league      home        away  hgoal  agoal result season
date                                                             
20/12/11     I1  Cagliari       Milan      0      2      A  11-12
20/12/11     I1     Siena  Fiorentina      0      0      D  11-12


20/12/12
         league       home       away  hgoal  agoal result season
date                                                             
20/12/12    SP1    Espanol  La Coruna      2      0      H  12-13
20/12/12    SP1   Sociedad    Sevilla      2      1      H  12-13
20/12/12    SP1  Vallecano    Levante      3      0      H  12-13


20/12/13
         league           home        away  hgoal  agoal result season
date                                                                  
20/12/13     D1  Ein Frankfurt    Augsburg      1      1      D  13-14
20/12/13     T1       Rizespor   Kasimpasa      0      0      D  13-14
20/12/13     E2       Tranmere  Gillingham      1      2      A  13-14
20/12/13    SP1          Elche      Malaga      0      1      A  13-14


20/12/14
         league                home                away  hgoal  agoal result  \
date                                                                           
20/12/14     D1            Augsburg          M'gladbach      2      1      H   
20/12/14     D1          Leverkusen       Ein Frankfurt      1      1      D   
20/12/14     D1          Schalke 04             Hamburg      0      0      D   
20/12/14     D1           Stuttgart           Paderborn      0      0      D   
20/12/14     D1       Werder Bremen            Dortmund      2      1      H   
20/12/14     D1           Wolfsburg             FC Koln      2      1      H   
20/12/14     I1                Roma               Milan      0      0      D   
20/12/14     I1            Sassuolo              Cesena      1      1      D   
20/12/14     T1       Eskisehirspor         Karabukspor      1      1      D   
20/12/14     T1         Galatasaray  Mersin Idman Yurdu      3      2      H   
20/12/14     T1      Genclerbirligi           Konyaspor      5      0      H   
20/12/14     T1           Sivasspor          Buyuksehyr      0      2      A   
20/12/14     E2            Barnsley       Leyton Orient      2      0      H   
20/12/14     E2            Bradford          Scunthorpe      1      1      D   
20/12/14     E2            Coventry      Fleetwood Town      1      1      D   
20/12/14     E2        Crawley Town           Port Vale      1      2      A   
20/12/14     E2               Crewe        Bristol City      1      0      H   
20/12/14     E2          Gillingham        Chesterfield      2      3      A   
20/12/14     E2  Milton Keynes Dons              Oldham      7      0      H   
20/12/14     E2           Peterboro             Preston      0      1      A   
20/12/14     E2            Rochdale        Notts County      2      2      D   
20/12/14     E2    Sheffield United             Walsall      1      1      D   
20/12/14     E2             Swindon           Doncaster      0      1      A   
20/12/14     E2              Yeovil          Colchester      0      1      A   
20/12/14    SP1           Barcelona             Cordoba      5      0      H   
20/12/14    SP1               Eibar            Valencia      0      1      A   
20/12/14    SP1             Levante            Sociedad      1      1      D   
20/12/14    SP1           Vallecano             Espanol      1      3      A   

         season  
date             
20/12/14  14-15  
20/12/14  14-15  
20/12/14  14-15  
20/12/14  14-15  
20/12/14  14-15  
20/12/14  14-15  
20/12/14  14-15  
20/12/14  14-15  
20/12/14  14-15  
20/12/14  14-15  
20/12/14  14-15  
20/12/14  14-15  
20/12/14  14-15  
20/12/14  14-15  
20/12/14  14-15  
20/12/14  14-15  
20/12/14  14-15  
20/12/14  14-15  
20/12/14  14-15  
20/12/14  14-15  
20/12/14  14-15  
20/12/14  14-15  
20/12/14  14-15  
20/12/14  14-15  
20/12/14  14-15  
20/12/14  14-15  
20/12/14  14-15  
20/12/14  14-15  


20/12/15
         league            home                  away  hgoal  agoal result  \
date                                                                         
20/12/15     T1      Buyuksehyr         Eskisehirspor      2      1      H   
20/12/15     T1     Galatasaray  Akhisar Belediyespor      3      2      H   
20/12/15     T1  Genclerbirligi            Fenerbahce      0      1      A   
20/12/15     T1       Sivasspor           Kayserispor      0      0      D   
20/12/15     D1          Hertha                 Mainz      2      0      H   
20/12/15     D1      M'gladbach             Darmstadt      3      2      H   
20/12/15     I1        Atalanta                Napoli      1      3      A   
20/12/15     I1           Carpi              Juventus      2      3      A   
20/12/15     I1      Fiorentina                Chievo      2      0      H   
20/12/15     I1       Frosinone                 Milan      2      4      A   
20/12/15     I1           Inter                 Lazio      1      2      A   
20/12/15     I1            Roma                 Genoa      2      0      H   
20/12/15     I1       Sampdoria               Palermo      2      0      H   
20/12/15     I1          Torino               Udinese      0      1      A   
20/12/15     I1          Verona              Sassuolo      1      1      D   
20/12/15    SP1      Ath Bilbao               Levante      2      0      H   
20/12/15    SP1         Granada                 Celta      0      2      A   
20/12/15    SP1          Malaga            Ath Madrid      1      0      H   
20/12/15    SP1     Real Madrid             Vallecano     10      2      H   
20/12/15    SP1        Sociedad            Villarreal      0      2      A   
20/12/15     E2         Walsall             Port Vale      2      0      H   

         season  
date             
20/12/15  15-16  
20/12/15  15-16  
20/12/15  15-16  
20/12/15  15-16  
20/12/15  15-16  
20/12/15  15-16  
20/12/15  15-16  
20/12/15  15-16  
20/12/15  15-16  
20/12/15  15-16  
20/12/15  15-16  
20/12/15  15-16  
20/12/15  15-16  
20/12/15  15-16  
20/12/15  15-16  
20/12/15  15-16  
20/12/15  15-16  
20/12/15  15-16  
20/12/15  15-16  
20/12/15  15-16  
20/12/15  15-16  


21/01/12
         league            home                away  hgoal  agoal result  \
date                                                                       
21/01/12    SP1           Betis             Sevilla      1      1      D   
21/01/12    SP1         Espanol             Granada      3      0      H   
21/01/12    SP1       Santander              Getafe      1      2      A   
21/01/12    SP1        Sociedad          Ath Madrid      0      4      A   
21/01/12     I1        Atalanta            Juventus      0      2      A   
21/01/12     I1            Roma              Cesena      5      1      H   
21/01/12     D1        Freiburg            Augsburg      1      0      H   
21/01/12     D1      Hoffenheim            Hannover      0      0      D   
21/01/12     D1  Kaiserslautern       Werder Bremen      0      0      D   
21/01/12     D1        Nurnberg              Hertha      2      0      H   
21/01/12     D1      Schalke 04           Stuttgart      3      1      H   
21/01/12     D1       Wolfsburg             FC Koln      1      0      H   
21/01/12     T1       Bursaspor           Sivasspor      1      2      A   
21/01/12     T1      Buyuksehyr          Manisaspor      3      2      H   
21/01/12     T1      Fenerbahce         Kayserispor      4      0      H   
21/01/12     T1     Karabukspor         Trabzonspor      2      1      H   
21/01/12     T1      Samsunspor            Orduspor      2      0      H   
21/01/12     E2    Huddersfield           Brentford      3      2      H   
21/01/12     E2    Notts County  Milton Keynes Dons      1      1      D   
21/01/12     E2          Oldham              Exeter      0      0      D   
21/01/12     E2         Preston       Leyton Orient      0      2      A   
21/01/12     E2      Scunthorpe           Stevenage      1      1      D   
21/01/12     E2  Sheffield Weds          Hartlepool      2      2      D   
21/01/12     E2         Wycombe            Rochdale      3      0      H   

         season  
date             
21/01/12  11-12  
21/01/12  11-12  
21/01/12  11-12  
21/01/12  11-12  
21/01/12  11-12  
21/01/12  11-12  
21/01/12  11-12  
21/01/12  11-12  
21/01/12  11-12  
21/01/12  11-12  
21/01/12  11-12  
21/01/12  11-12  
21/01/12  11-12  
21/01/12  11-12  
21/01/12  11-12  
21/01/12  11-12  
21/01/12  11-12  
21/01/12  11-12  
21/01/12  11-12  
21/01/12  11-12  
21/01/12  11-12  
21/01/12  11-12  
21/01/12  11-12  
21/01/12  11-12  


21/01/13
         league                  home                away  hgoal  agoal  \
date                                                                      
21/01/13    SP1                 Betis          Ath Bilbao      1      1   
21/01/13     T1  Akhisar Belediyespor       Eskisehirspor      1      1   
21/01/13     T1              Orduspor  Mersin Idman Yurdu      1      1   

         result season  
date                    
21/01/13      D  12-13  
21/01/13      D  12-13  
21/01/13      D  12-13  


21/01/14
         league       home                away  hgoal  agoal result season
date                                                                      
21/01/14     E2      Crewe  Milton Keynes Dons      2      0      H  13-14
21/01/14     E2  Peterboro        Notts County      4      3      H  13-14


21/02/12
         league                home        away  hgoal  agoal result season
date                                                                       
21/02/12     I1             Bologna  Fiorentina      2      0      H  11-12
21/02/12     E2            Charlton    Rochdale      1      1      D  11-12
21/02/12     E2  Milton Keynes Dons        Bury      2      1      H  11-12
21/02/12     E2          Scunthorpe     Walsall      0      1      A  11-12


21/02/14
         league        home      away  hgoal  agoal result season
date                                                             
21/02/14     D1  Schalke 04     Mainz      0      0      D  13-14
21/02/14     T1   Bursaspor  Rizespor      2      0      H  13-14
21/02/14    SP1  Valladolid   Levante      1      1      D  13-14


21/02/15
         league                home           away  hgoal  agoal result season
date                                                                          
21/02/15     D1            Augsburg     Leverkusen      2      2      D  14-15
21/02/15     D1             FC Koln       Hannover      1      1      D  14-15
21/02/15     D1            Freiburg     Hoffenheim      1      1      D  14-15
21/02/15     D1               Mainz  Ein Frankfurt      3      1      H  14-15
21/02/15     D1           Paderborn  Bayern Munich      0      6      A  14-15
21/02/15     D1          Schalke 04  Werder Bremen      1      1      D  14-15
21/02/15     T1           Bursaspor       Rizespor      1      1      D  14-15
21/02/15     T1          Buyuksehyr  Gaziantepspor      1      0      H  14-15
21/02/15     T1           Sivasspor    Galatasaray      2      3      A  14-15
21/02/15     E2            Barnsley          Crewe      2      0      H  14-15
21/02/15     E2            Bradford        Walsall      1      1      D  14-15
21/02/15     E2          Colchester   Bristol City      3      2      H  14-15
21/02/15     E2      Fleetwood Town   Notts County      2      1      H  14-15
21/02/15     E2       Leyton Orient         Oldham      3      0      H  14-15
21/02/15     E2  Milton Keynes Dons      Peterboro      3      0      H  14-15
21/02/15     E2           Port Vale      Doncaster      3      0      H  14-15
21/02/15     E2             Preston     Scunthorpe      2      0      H  14-15
21/02/15     E2            Rochdale   Chesterfield      1      0      H  14-15
21/02/15     E2    Sheffield United       Coventry      2      2      D  14-15
21/02/15     E2             Swindon   Crawley Town      1      2      A  14-15
21/02/15     E2              Yeovil     Gillingham      2      2      D  14-15
21/02/15    SP1          Ath Madrid        Almeria      3      0      H  14-15
21/02/15    SP1           Barcelona         Malaga      0      1      A  14-15
21/02/15    SP1             Cordoba       Valencia      1      2      A  14-15
21/02/15    SP1           La Coruna          Celta      0      2      A  14-15


21/02/16
         league                  home                away  hgoal  agoal  \
date                                                                      
21/02/16     T1  Akhisar Belediyespor          Buyuksehyr      0      0   
21/02/16     T1           Galatasaray         Trabzonspor      2      1   
21/02/16     T1           Kayserispor       Gaziantepspor      2      2   
21/02/16     T1           Osmanlispor  Mersin Idman Yurdu      3      1   
21/02/16     D1              Hannover            Augsburg      0      1   
21/02/16     D1            Leverkusen            Dortmund      0      1   
21/02/16     D1            Schalke 04           Stuttgart      1      1   
21/02/16     I1              Atalanta          Fiorentina      2      3   
21/02/16     I1             Frosinone               Lazio      0      0   
21/02/16     I1                 Genoa             Udinese      2      1   
21/02/16     I1                  Roma             Palermo      5      0   
21/02/16     I1              Sassuolo              Empoli      3      2   
21/02/16     I1                Torino               Carpi      0      0   
21/02/16    SP1            Ath Bilbao            Sociedad      0      1   
21/02/16    SP1            Ath Madrid          Villarreal      0      0   
21/02/16    SP1               Granada            Valencia      1      2   
21/02/16    SP1                Malaga         Real Madrid      1      1   
21/02/16    SP1             Vallecano             Sevilla      2      2   

         result season  
date                    
21/02/16      D  15-16  
21/02/16      H  15-16  
21/02/16      D  15-16  
21/02/16      H  15-16  
21/02/16      A  15-16  
21/02/16      A  15-16  
21/02/16      D  15-16  
21/02/16      A  15-16  
21/02/16      D  15-16  
21/02/16      H  15-16  
21/02/16      H  15-16  
21/02/16      H  15-16  
21/02/16      D  15-16  
21/02/16      A  15-16  
21/02/16      D  15-16  
21/02/16      A  15-16  
21/02/16      D  15-16  
21/02/16      D  15-16  


21/03/12
         league        home         away  hgoal  agoal result season
date                                                                
21/03/12    SP1  Ath Madrid   Ath Bilbao      2      1      H  11-12
21/03/12    SP1    Sociedad      Levante      1      3      A  11-12
21/03/12    SP1    Sp Gijon     Mallorca      2      3      A  11-12
21/03/12    SP1    Valencia     Zaragoza      1      2      A  11-12
21/03/12    SP1  Villarreal  Real Madrid      1      1      D  11-12


21/03/14
         league         home           away  hgoal  agoal result season
date                                                                   
21/03/14     D1     Freiburg  Werder Bremen      3      1      H  13-14
21/03/14     T1  Trabzonspor      Kasimpasa      0      0      D  13-14
21/03/14    SP1        Celta         Malaga      0      2      A  13-14


21/03/15
         league                home            away  hgoal  agoal result  \
date                                                                       
21/03/15     D1             FC Koln   Werder Bremen      1      1      D   
21/03/15     D1            Freiburg        Augsburg      2      0      H   
21/03/15     D1            Hannover        Dortmund      2      3      A   
21/03/15     D1           Paderborn      Hoffenheim      0      0      D   
21/03/15     D1          Schalke 04      Leverkusen      0      1      A   
21/03/15     D1           Stuttgart   Ein Frankfurt      3      1      H   
21/03/15     I1              Chievo         Palermo      1      0      H   
21/03/15     I1               Milan        Cagliari      3      1      H   
21/03/15     T1         Erciyesspor        Rizespor      0      3      A   
21/03/15     T1           Kasimpasa     Galatasaray      2      3      A   
21/03/15     T1  Mersin Idman Yurdu   Gaziantepspor      0      1      A   
21/03/15     T1           Sivasspor       Bursaspor      4      1      H   
21/03/15     E2            Barnsley         Preston      1      1      D   
21/03/15     E2            Bradford  Fleetwood Town      2      2      D   
21/03/15     E2            Coventry       Doncaster      1      3      A   
21/03/15     E2        Crawley Town   Leyton Orient      1      0      H   
21/03/15     E2               Crewe          Oldham      0      1      A   
21/03/15     E2          Gillingham      Colchester      2      2      D   
21/03/15     E2  Milton Keynes Dons    Notts County      4      1      H   
21/03/15     E2           Peterboro    Chesterfield      1      0      H   
21/03/15     E2            Rochdale      Scunthorpe      3      1      H   
21/03/15     E2    Sheffield United       Port Vale      1      0      H   
21/03/15    SP1          Ath Bilbao         Almeria      2      1      H   
21/03/15    SP1          Ath Madrid          Getafe      2      0      H   
21/03/15    SP1             Granada           Eibar      0      0      D   
21/03/15    SP1             Levante           Celta      0      1      A   
21/03/15    SP1           Vallecano          Malaga      1      0      H   

         season  
date             
21/03/15  14-15  
21/03/15  14-15  
21/03/15  14-15  
21/03/15  14-15  
21/03/15  14-15  
21/03/15  14-15  
21/03/15  14-15  
21/03/15  14-15  
21/03/15  14-15  
21/03/15  14-15  
21/03/15  14-15  
21/03/15  14-15  
21/03/15  14-15  
21/03/15  14-15  
21/03/15  14-15  
21/03/15  14-15  
21/03/15  14-15  
21/03/15  14-15  
21/03/15  14-15  
21/03/15  14-15  
21/03/15  14-15  
21/03/15  14-15  
21/03/15  14-15  
21/03/15  14-15  
21/03/15  14-15  
21/03/15  14-15  
21/03/15  14-15  


21/04/12
         league                home              away  hgoal  agoal result  \
date                                                                         
21/04/12    SP1           Barcelona       Real Madrid      1      2      A   
21/04/12    SP1            Mallorca          Zaragoza      1      0      H   
21/04/12    SP1             Sevilla           Levante      1      1      D   
21/04/12    SP1            Sp Gijon         Vallecano      2      1      H   
21/04/12     I1             Catania          Atalanta      2      0      H   
21/04/12     I1              Chievo           Udinese      0      0      D   
21/04/12     I1              Napoli            Novara      2      0      H   
21/04/12     I1               Parma          Cagliari      3      0      H   
21/04/12     D1            Dortmund        M'gladbach      2      0      H   
21/04/12     D1             FC Koln         Stuttgart      1      1      D   
21/04/12     D1              Hertha    Kaiserslautern      1      2      A   
21/04/12     D1          Hoffenheim        Leverkusen      0      1      A   
21/04/12     D1            Nurnberg           Hamburg      1      1      D   
21/04/12     D1       Werder Bremen     Bayern Munich      1      2      A   
21/04/12     E2         Bournemouth        Colchester      1      1      D   
21/04/12     E2            Charlton           Wycombe      2      1      H   
21/04/12     E2        Chesterfield          Rochdale      2      1      H   
21/04/12     E2              Exeter           Walsall      4      2      H   
21/04/12     E2        Huddersfield        Scunthorpe      1      0      H   
21/04/12     E2       Leyton Orient            Yeovil      2      2      D   
21/04/12     E2  Milton Keynes Dons  Sheffield United      1      0      H   
21/04/12     E2        Notts County              Bury      2      4      A   
21/04/12     E2              Oldham           Preston      1      1      D   
21/04/12     E2      Sheffield Weds          Carlisle      2      1      H   
21/04/12     E2           Stevenage         Brentford      2      1      H   
21/04/12     E2            Tranmere        Hartlepool      1      1      D   

         season  
date             
21/04/12  11-12  
21/04/12  11-12  
21/04/12  11-12  
21/04/12  11-12  
21/04/12  11-12  
21/04/12  11-12  
21/04/12  11-12  
21/04/12  11-12  
21/04/12  11-12  
21/04/12  11-12  
21/04/12  11-12  
21/04/12  11-12  
21/04/12  11-12  
21/04/12  11-12  
21/04/12  11-12  
21/04/12  11-12  
21/04/12  11-12  
21/04/12  11-12  
21/04/12  11-12  
21/04/12  11-12  
21/04/12  11-12  
21/04/12  11-12  
21/04/12  11-12  
21/04/12  11-12  
21/04/12  11-12  
21/04/12  11-12  


21/04/13
         league            home            away  hgoal  agoal result season
date                                                                       
21/04/13    SP1          Getafe         Espanol      0      2      A  12-13
21/04/13    SP1       La Coruna      Ath Bilbao      1      1      D  12-13
21/04/13    SP1         Osasuna        Sociedad      0      0      D  12-13
21/04/13    SP1         Sevilla      Ath Madrid      0      1      A  12-13
21/04/13     I1         Bologna       Sampdoria      1      1      D  12-13
21/04/13     I1         Catania         Palermo      1      1      D  12-13
21/04/13     I1      Fiorentina          Torino      4      3      H  12-13
21/04/13     I1           Inter           Parma      1      0      H  12-13
21/04/13     I1        Juventus           Milan      1      0      H  12-13
21/04/13     I1          Napoli        Cagliari      3      2      H  12-13
21/04/13     I1            Roma         Pescara      1      1      D  12-13
21/04/13     I1           Siena          Chievo      0      1      A  12-13
21/04/13     T1     Antalyaspor       Bursaspor      0      1      A  12-13
21/04/13     T1      Buyuksehyr   Gaziantepspor      1      3      A  12-13
21/04/13     T1  Genclerbirligi      Fenerbahce      2      0      H  12-13
21/04/13     T1     Kayserispor       Sivasspor      1      1      D  12-13
21/04/13     D1        Nurnberg  Greuther Furth      0      1      A  12-13
21/04/13     D1       Stuttgart        Freiburg      2      1      H  12-13


21/04/14
         league                home              away  hgoal  agoal result  \
date                                                                         
21/04/14     T1         Antalyaspor         Sivasspor      1      2      A   
21/04/14     T1         Karabukspor     Eskisehirspor      0      0      D   
21/04/14     E2               Crewe        Colchester      0      0      D   
21/04/14     E2       Leyton Orient            Wolves      1      3      A   
21/04/14     E2  Milton Keynes Dons         Brentford      2      2      D   
21/04/14     E2        Notts County      Crawley Town      1      0      H   
21/04/14     E2              Oldham          Coventry      0      0      D   
21/04/14     E2           Peterboro          Carlisle      4      1      H   
21/04/14     E2             Preston        Shrewsbury      5      2      H   
21/04/14     E2           Rotherham         Port Vale      1      0      H   
21/04/14     E2           Stevenage      Bristol City      1      3      A   
21/04/14     E2             Swindon          Bradford      1      0      H   
21/04/14     E2            Tranmere  Sheffield United      0      0      D   
21/04/14     E2             Walsall        Gillingham      1      1      D   
21/04/14    SP1              Malaga        Villarreal      2      0      H   

         season  
date             
21/04/14  13-14  
21/04/14  13-14  
21/04/14  13-14  
21/04/14  13-14  
21/04/14  13-14  
21/04/14  13-14  
21/04/14  13-14  
21/04/14  13-14  
21/04/14  13-14  
21/04/14  13-14  
21/04/14  13-14  
21/04/14  13-14  
21/04/14  13-14  
21/04/14  13-14  
21/04/14  13-14  


21/04/15
         league                home           away  hgoal  agoal result season
date                                                                          
21/04/15     E2  Milton Keynes Dons      Doncaster      3      0      H  14-15
21/04/15     E2        Notts County        Preston      1      3      A  14-15
21/04/15     E2            Rochdale  Leyton Orient      1      0      H  14-15
21/04/15     E2          Scunthorpe       Bradford      1      1      D  14-15
21/04/15     E2             Swindon        Walsall      3      3      D  14-15


21/04/16
         league      home     away  hgoal  agoal result season
date                                                          
21/04/16     I1     Milan    Carpi      0      0      D  15-16
21/04/16    SP1   Granada  Levante      5      1      H  15-16
21/04/16    SP1  Sociedad   Getafe      1      2      A  15-16


21/08/11
         league      home        away  hgoal  agoal result season
date                                                             
21/08/11     D1  Hannover      Hertha      1      1      D  11-12
21/08/11     D1     Mainz  Schalke 04      2      4      A  11-12


21/08/12
         league           home                away  hgoal  agoal result season
date                                                                          
21/08/12     E2    Bournemouth  Milton Keynes Dons      1      1      D  12-13
21/08/12     E2      Brentford              Yeovil      1      3      A  12-13
21/08/12     E2       Carlisle            Tranmere      0      3      A  12-13
21/08/12     E2     Colchester          Portsmouth      2      2      D  12-13
21/08/12     E2       Coventry    Sheffield United      1      1      D  12-13
21/08/12     E2      Doncaster                Bury      2      1      H  12-13
21/08/12     E2  Leyton Orient           Stevenage      0      1      A  12-13
21/08/12     E2   Notts County          Hartlepool      2      0      H  12-13
21/08/12     E2         Oldham             Walsall      1      1      D  12-13
21/08/12     E2     Scunthorpe               Crewe      1      2      A  12-13
21/08/12     E2     Shrewsbury             Preston      1      0      H  12-13
21/08/12     E2        Swindon        Crawley Town      3      0      H  12-13


21/08/15
         league       home           away  hgoal  agoal result season
date                                                                 
21/08/15     T1  Kasimpasa     Buyuksehyr      1      0      H  15-16
21/08/15     D1     Hertha  Werder Bremen      1      1      D  15-16
21/08/15    SP1     Malaga        Sevilla      0      0      D  15-16


21/09/11
         league           home                away  hgoal  agoal result season
date                                                                          
21/09/11    SP1     Ath Madrid            Sp Gijon      4      0      H  11-12
21/09/11    SP1         Malaga          Ath Bilbao      1      0      H  11-12
21/09/11    SP1      Santander         Real Madrid      0      0      D  11-12
21/09/11    SP1       Valencia           Barcelona      2      2      D  11-12
21/09/11    SP1      Vallecano             Levante      1      2      A  11-12
21/09/11     I1         Cesena               Lazio      1      2      A  11-12
21/09/11     I1         Chievo              Napoli      1      0      H  11-12
21/09/11     I1     Fiorentina               Parma      3      0      H  11-12
21/09/11     I1          Genoa             Catania      3      0      H  11-12
21/09/11     I1       Juventus             Bologna      1      1      D  11-12
21/09/11     I1          Lecce            Atalanta      1      2      A  11-12
21/09/11     I1          Milan             Udinese      1      1      D  11-12
21/09/11     I1        Palermo            Cagliari      3      2      H  11-12
21/09/11     T1    Antalyaspor  Mersin Idman Yurdu      1      2      A  11-12
21/09/11     T1  Eskisehirspor      Genclerbirligi      0      0      D  11-12
21/09/11     T1    Karabukspor         Galatasaray      1      1      D  11-12
21/09/11     T1     Samsunspor         Trabzonspor      1      1      D  11-12


21/09/12
         league         home           away  hgoal  agoal result season
date                                                                   
21/09/12     T1  Karabukspor    Antalyaspor      1      0      H  12-13
21/09/12     D1     Nurnberg  Ein Frankfurt      1      2      A  12-13


21/09/13
         league              home                away  hgoal  agoal result  \
date                                                                         
21/09/13     D1           Hamburg       Werder Bremen      0      2      A   
21/09/13     D1          Hannover            Augsburg      2      1      H   
21/09/13     D1             Mainz          Leverkusen      1      4      A   
21/09/13     D1          Nurnberg            Dortmund      1      1      D   
21/09/13     D1        Schalke 04       Bayern Munich      0      4      A   
21/09/13     D1         Wolfsburg          Hoffenheim      2      1      H   
21/09/13     T1     Eskisehirspor         Antalyaspor      2      1      H   
21/09/13     T1        Fenerbahce          Elazigspor      4      0      H   
21/09/13     T1         Konyaspor      Genclerbirligi      1      0      H   
21/09/13     T1         Sivasspor           Kasimpasa      1      2      A   
21/09/13     E2        Colchester        Crawley Town      1      1      D   
21/09/13     E2        Gillingham            Bradford      0      1      A   
21/09/13     E2      Notts County            Tranmere      2      0      H   
21/09/13     E2            Oldham               Crewe      1      1      D   
21/09/13     E2         Peterboro  Milton Keynes Dons      2      1      H   
21/09/13     E2         Port Vale            Coventry      3      2      H   
21/09/13     E2  Sheffield United             Preston      0      1      A   
21/09/13     E2        Shrewsbury              Wolves      0      1      A   
21/09/13     E2         Stevenage            Carlisle      1      3      A   
21/09/13     E2           Swindon        Bristol City      3      2      H   
21/09/13     E2           Walsall           Rotherham      1      1      D   
21/09/13    SP1           Almeria             Levante      2      2      D   
21/09/13    SP1          Sociedad              Malaga      0      0      D   
21/09/13    SP1        Valladolid          Ath Madrid      0      2      A   
21/09/13    SP1         Vallecano           Barcelona      0      4      A   
21/09/13     I1          Cagliari           Sampdoria      2      2      D   
21/09/13     I1            Chievo             Udinese      2      1      H   
21/09/13     I1             Genoa             Livorno      0      0      D   

         season  
date             
21/09/13  13-14  
21/09/13  13-14  
21/09/13  13-14  
21/09/13  13-14  
21/09/13  13-14  
21/09/13  13-14  
21/09/13  13-14  
21/09/13  13-14  
21/09/13  13-14  
21/09/13  13-14  
21/09/13  13-14  
21/09/13  13-14  
21/09/13  13-14  
21/09/13  13-14  
21/09/13  13-14  
21/09/13  13-14  
21/09/13  13-14  
21/09/13  13-14  
21/09/13  13-14  
21/09/13  13-14  
21/09/13  13-14  
21/09/13  13-14  
21/09/13  13-14  
21/09/13  13-14  
21/09/13  13-14  
21/09/13  13-14  
21/09/13  13-14  
21/09/13  13-14  


21/09/14
         league        home           away  hgoal  agoal result season
date                                                                  
21/09/14     D1     FC Koln     M'gladbach      0      0      D  14-15
21/09/14     D1   Wolfsburg     Leverkusen      4      1      H  14-15
21/09/14     I1    Atalanta     Fiorentina      0      1      A  14-15
21/09/14     I1      Chievo          Parma      2      3      A  14-15
21/09/14     I1       Genoa          Lazio      1      0      H  14-15
21/09/14     I1     Palermo          Inter      1      1      D  14-15
21/09/14     I1        Roma       Cagliari      2      0      H  14-15
21/09/14     I1    Sassuolo      Sampdoria      0      0      D  14-15
21/09/14     I1      Torino         Verona      0      1      A  14-15
21/09/14     I1     Udinese         Napoli      1      0      H  14-15
21/09/14     T1  Fenerbahce  Gaziantepspor      1      0      H  14-15
21/09/14     T1   Kasimpasa    Karabukspor      2      1      H  14-15
21/09/14     T1   Sivasspor      Konyaspor      0      0      D  14-15
21/09/14    SP1     Cordoba        Sevilla      1      3      A  14-15
21/09/14    SP1     Levante      Barcelona      0      5      A  14-15
21/09/14    SP1    Sociedad        Almeria      1      2      A  14-15
21/09/14    SP1  Villarreal      Vallecano      4      2      H  14-15


21/09/15
         league            home      away  hgoal  agoal result season
date                                                                 
21/09/15     T1  Genclerbirligi  Besiktas      1      1      D  15-16


21/10/11
         league         home           away  hgoal  agoal result season
date                                                                   
21/10/11     D1     Augsburg  Werder Bremen      1      1      D  11-12
21/10/11     T1  Antalyaspor    Galatasaray      0      0      D  11-12


21/10/12
         league                  home                away  hgoal  agoal  \
date                                                                      
21/10/12    SP1               Espanol           Vallecano      3      2   
21/10/12    SP1                Getafe             Levante      0      1   
21/10/12    SP1               Granada            Zaragoza      1      2   
21/10/12    SP1               Osasuna               Betis      0      0   
21/10/12    SP1              Sociedad          Ath Madrid      0      1   
21/10/12     I1              Atalanta               Siena      2      1   
21/10/12     I1              Cagliari             Bologna      1      0   
21/10/12     I1                Chievo          Fiorentina      1      1   
21/10/12     I1                 Genoa                Roma      2      4   
21/10/12     I1                 Inter             Catania      2      0   
21/10/12     I1               Palermo              Torino      0      0   
21/10/12     I1                 Parma           Sampdoria      2      1   
21/10/12     I1               Udinese             Pescara      1      0   
21/10/12     T1  Akhisar Belediyespor       Gaziantepspor      0      0   
21/10/12     T1              Besiktas         Trabzonspor      1      1   
21/10/12     T1         Eskisehirspor         Karabukspor      5      2   
21/10/12     T1             Kasimpasa  Mersin Idman Yurdu      2      2   
21/10/12     D1               Hamburg           Stuttgart      0      1   
21/10/12     D1              Nurnberg            Augsburg      0      0   

         result season  
date                    
21/10/12      H  12-13  
21/10/12      A  12-13  
21/10/12      A  12-13  
21/10/12      D  12-13  
21/10/12      A  12-13  
21/10/12      H  12-13  
21/10/12      H  12-13  
21/10/12      D  12-13  
21/10/12      A  12-13  
21/10/12      H  12-13  
21/10/12      D  12-13  
21/10/12      H  12-13  
21/10/12      H  12-13  
21/10/12      D  12-13  
21/10/12      D  12-13  
21/10/12      H  12-13  
21/10/12      D  12-13  
21/10/12      A  12-13  
21/10/12      D  12-13  


21/10/13
         league        home         away  hgoal  agoal result season
date                                                                
21/10/13     T1    Besiktas     Rizespor      0      0      D  13-14
21/10/13     T1   Bursaspor  Kayserispor      2      0      H  13-14
21/10/13    SP1  Ath Bilbao   Villarreal      2      0      H  13-14
21/10/13    SP1       Celta      Levante      0      1      A  13-14


21/10/14
         league                home            away  hgoal  agoal result  \
date                                                                       
21/10/14     E2            Barnsley    Notts County      2      3      A   
21/10/14     E2        Bristol City        Bradford      2      2      D   
21/10/14     E2          Colchester    Chesterfield      2      1      H   
21/10/14     E2        Crawley Town         Walsall      1      0      H   
21/10/14     E2               Crewe       Peterboro      1      0      H   
21/10/14     E2           Doncaster   Leyton Orient      0      2      A   
21/10/14     E2          Gillingham         Preston      0      1      A   
21/10/14     E2  Milton Keynes Dons  Fleetwood Town      2      1      H   
21/10/14     E2              Oldham        Coventry      4      1      H   
21/10/14     E2           Port Vale      Scunthorpe      2      2      D   
21/10/14     E2    Sheffield United          Yeovil      2      0      H   
21/10/14     E2             Swindon        Rochdale      2      3      A   

         season  
date             
21/10/14  14-15  
21/10/14  14-15  
21/10/14  14-15  
21/10/14  14-15  
21/10/14  14-15  
21/10/14  14-15  
21/10/14  14-15  
21/10/14  14-15  
21/10/14  14-15  
21/10/14  14-15  
21/10/14  14-15  
21/10/14  14-15  


21/11/11
         league       home        away  hgoal  agoal result season
date                                                              
21/11/11    SP1  Santander      Malaga      1      3      A  11-12
21/11/11     T1  Bursaspor  Samsunspor      1      0      H  11-12


21/11/14
         league        home     away  hgoal  agoal result season
date                                                            
21/11/14    SP1  Ath Bilbao  Espanol      3      1      H  14-15


21/11/15
         league                  home              away  hgoal  agoal result  \
date                                                                           
21/11/15     T1  Akhisar Belediyespor         Bursaspor      3      1      H   
21/11/15     T1           Galatasaray       Antalyaspor      3      3      D   
21/11/15     T1           Kayserispor         Kasimpasa      0      0      D   
21/11/15     T1    Mersin Idman Yurdu        Fenerbahce      1      3      A   
21/11/15     D1         Ein Frankfurt        Leverkusen      1      3      A   
21/11/15     D1               FC Koln             Mainz      0      0      D   
21/11/15     D1            M'gladbach          Hannover      2      1      H   
21/11/15     D1            Schalke 04     Bayern Munich      1      3      A   
21/11/15     D1             Stuttgart          Augsburg      0      4      A   
21/11/15     D1             Wolfsburg     Werder Bremen      6      0      H   
21/11/15     I1               Bologna              Roma      2      2      D   
21/11/15     I1              Juventus             Milan      1      0      H   
21/11/15    SP1               Espanol            Malaga      2      0      H   
21/11/15    SP1             La Coruna             Celta      2      0      H   
21/11/15    SP1           Real Madrid         Barcelona      0      4      A   
21/11/15    SP1              Sociedad           Sevilla      2      0      H   
21/11/15    SP1              Valencia        Las Palmas      1      1      D   
21/11/15     E2                  Bury            Burton      1      0      H   
21/11/15     E2              Coventry        Gillingham      4      1      H   
21/11/15     E2                 Crewe         Peterboro      1      5      A   
21/11/15     E2             Doncaster          Rochdale      0      2      A   
21/11/15     E2        Fleetwood Town           Swindon      5      1      H   
21/11/15     E2              Millwall        Colchester      4      1      H   
21/11/15     E2                Oldham          Barnsley      1      2      A   
21/11/15     E2             Port Vale      Chesterfield      3      2      H   
21/11/15     E2            Scunthorpe          Bradford      0      2      A   
21/11/15     E2              Southend         Blackpool      1      0      H   
21/11/15     E2               Walsall  Sheffield United      1      1      D   
21/11/15     E2                 Wigan        Shrewsbury      1      0      H   

         season  
date             
21/11/15  15-16  
21/11/15  15-16  
21/11/15  15-16  
21/11/15  15-16  
21/11/15  15-16  
21/11/15  15-16  
21/11/15  15-16  
21/11/15  15-16  
21/11/15  15-16  
21/11/15  15-16  
21/11/15  15-16  
21/11/15  15-16  
21/11/15  15-16  
21/11/15  15-16  
21/11/15  15-16  
21/11/15  15-16  
21/11/15  15-16  
21/11/15  15-16  
21/11/15  15-16  
21/11/15  15-16  
21/11/15  15-16  
21/11/15  15-16  
21/11/15  15-16  
21/11/15  15-16  
21/11/15  15-16  
21/11/15  15-16  
21/11/15  15-16  
21/11/15  15-16  
21/11/15  15-16  


21/12/11
         league                home           away  hgoal  agoal result season
date                                                                          
21/12/11     I1            Atalanta         Cesena      4      1      H  11-12
21/12/11     I1             Bologna           Roma      0      2      A  11-12
21/12/11     I1               Inter          Lecce      4      1      H  11-12
21/12/11     I1               Lazio         Chievo      0      0      D  11-12
21/12/11     I1              Napoli          Genoa      6      1      H  11-12
21/12/11     I1              Novara        Palermo      2      2      D  11-12
21/12/11     I1               Parma        Catania      3      3      D  11-12
21/12/11     I1             Udinese       Juventus      0      0      D  11-12
21/12/11     T1         Antalyaspor     Fenerbahce      0      0      D  11-12
21/12/11     T1         Galatasaray     Manisaspor      1      0      H  11-12
21/12/11     T1         Kayserispor     Ankaragucu      3      0      H  11-12
21/12/11     T1  Mersin Idman Yurdu  Eskisehirspor      0      0      D  11-12
21/12/11     T1           Sivasspor     Samsunspor      3      2      H  11-12


21/12/12
         league                  home         away  hgoal  agoal result season
date                                                                          
21/12/12    SP1            Ath Madrid        Celta      1      0      H  12-13
21/12/12    SP1              Valencia       Getafe      4      2      H  12-13
21/12/12     I1              Cagliari     Juventus      1      3      A  12-13
21/12/12     I1               Pescara      Catania      2      1      H  12-13
21/12/12     T1  Akhisar Belediyespor     Orduspor      0      0      D  12-13
21/12/12     T1              Besiktas  Kayserispor      3      1      H  12-13
21/12/12     E2                  Bury   Shrewsbury      2      2      D  12-13
21/12/12     E2               Swindon     Tranmere      5      0      H  12-13


21/12/13
         league                home              away  hgoal  agoal result  \
date                                                                         
21/12/13     D1        Braunschweig        Hoffenheim      1      0      H   
21/12/13     D1            Dortmund            Hertha      1      2      A   
21/12/13     D1            Freiburg          Hannover      2      1      H   
21/12/13     D1             Hamburg             Mainz      2      3      A   
21/12/13     D1            Nurnberg        Schalke 04      0      0      D   
21/12/13     D1       Werder Bremen        Leverkusen      1      0      H   
21/12/13     T1            Besiktas        Elazigspor      4      1      H   
21/12/13     E2               Crewe        Shrewsbury      1      1      D   
21/12/13     E2       Leyton Orient      Crawley Town      2      3      A   
21/12/13     E2  Milton Keynes Dons         Port Vale      3      0      H   
21/12/13     E2        Notts County      Bristol City      1      1      D   
21/12/13     E2              Oldham        Colchester      0      2      A   
21/12/13     E2           Peterboro          Bradford      2      1      H   
21/12/13     E2             Preston         Brentford      0      3      A   
21/12/13     E2           Rotherham            Wolves      3      3      D   
21/12/13     E2           Stevenage  Sheffield United      0      0      D   
21/12/13     E2             Swindon          Coventry      2      1      H   
21/12/13     E2             Walsall          Carlisle      2      0      H   
21/12/13    SP1          Ath Madrid           Levante      3      2      H   
21/12/13    SP1               Betis           Almeria      0      1      A   
21/12/13    SP1             Granada          Sociedad      1      3      A   
21/12/13    SP1          Villarreal           Sevilla      1      2      A   
21/12/13     I1            Cagliari            Napoli      1      1      D   
21/12/13     I1             Livorno           Udinese      1      2      A   

         season  
date             
21/12/13  13-14  
21/12/13  13-14  
21/12/13  13-14  
21/12/13  13-14  
21/12/13  13-14  
21/12/13  13-14  
21/12/13  13-14  
21/12/13  13-14  
21/12/13  13-14  
21/12/13  13-14  
21/12/13  13-14  
21/12/13  13-14  
21/12/13  13-14  
21/12/13  13-14  
21/12/13  13-14  
21/12/13  13-14  
21/12/13  13-14  
21/12/13  13-14  
21/12/13  13-14  
21/12/13  13-14  
21/12/13  13-14  
21/12/13  13-14  
21/12/13  13-14  
21/12/13  13-14  


21/12/14
         league           home                  away  hgoal  agoal result  \
date                                                                        
21/12/14     D1       Freiburg              Hannover      2      2      D   
21/12/14     D1         Hertha            Hoffenheim      0      5      A   
21/12/14     I1       Atalanta               Palermo      3      3      D   
21/12/14     I1     Fiorentina                Empoli      1      1      D   
21/12/14     I1          Inter                 Lazio      2      2      D   
21/12/14     I1      Sampdoria               Udinese      2      2      D   
21/12/14     I1         Torino                 Genoa      2      1      H   
21/12/14     I1         Verona                Chievo      0      1      A   
21/12/14     T1  Balikesirspor             Kasimpasa      5      3      H   
21/12/14     T1       Besiktas  Akhisar Belediyespor      3      1      H   
21/12/14     T1      Bursaspor           Trabzonspor      3      3      D   
21/12/14    SP1     Ath Bilbao            Ath Madrid      1      4      A   
21/12/14    SP1          Elche                Malaga      1      2      A   
21/12/14    SP1        Granada                Getafe      1      1      D   
21/12/14    SP1     Villarreal             La Coruna      3      0      H   

         season  
date             
21/12/14  14-15  
21/12/14  14-15  
21/12/14  14-15  
21/12/14  14-15  
21/12/14  14-15  
21/12/14  14-15  
21/12/14  14-15  
21/12/14  14-15  
21/12/14  14-15  
21/12/14  14-15  
21/12/14  14-15  
21/12/14  14-15  
21/12/14  14-15  
21/12/14  14-15  
21/12/14  14-15  


21/12/15
         league         home      away  hgoal  agoal result season
date                                                              
21/12/15     T1  Osmanlispor  Besiktas      2      3      A  15-16


22/01/12
         league           home            away  hgoal  agoal result season
date                                                                      
22/01/12    SP1        Levante        Zaragoza      0      0      D  11-12
22/01/12    SP1         Malaga       Barcelona      1      4      A  11-12
22/01/12    SP1        Osasuna        Valencia      1      1      D  11-12
22/01/12    SP1    Real Madrid      Ath Bilbao      4      1      H  11-12
22/01/12    SP1      Vallecano        Mallorca      0      1      A  11-12
22/01/12     I1        Bologna           Parma      0      0      D  11-12
22/01/12     I1       Cagliari      Fiorentina      0      0      D  11-12
22/01/12     I1          Inter           Lazio      2      1      H  11-12
22/01/12     I1          Lecce          Chievo      2      2      D  11-12
22/01/12     I1         Novara           Milan      0      3      A  11-12
22/01/12     I1        Palermo           Genoa      5      3      H  11-12
22/01/12     I1          Siena          Napoli      1      1      D  11-12
22/01/12     I1        Udinese         Catania      2      1      H  11-12
22/01/12     D1        Hamburg        Dortmund      1      5      A  11-12
22/01/12     D1     Leverkusen           Mainz      3      2      H  11-12
22/01/12     T1     Ankaragucu  Genclerbirligi      0      1      A  11-12
22/01/12     T1  Eskisehirspor     Galatasaray      0      0      D  11-12


22/01/13
         league          home           away  hgoal  agoal result season
date                                                                    
22/01/13     E2     Brentford  Leyton Orient      2      2      D  12-13
22/01/13     E2    Hartlepool    Bournemouth      1      2      A  12-13
22/01/13     E2  Notts County         Oldham      1      0      H  12-13


22/01/16
         league      home           away  hgoal  agoal result season
date                                                                
22/01/16     D1   Hamburg  Bayern Munich      1      2      A  15-16
22/01/16    SP1  Sp Gijon       Sociedad      5      1      H  15-16


22/02/12
         league          home       away  hgoal  agoal result season
date                                                                
22/02/12     I1         Siena    Catania      0      1      A  11-12
22/02/12     E2  Notts County  Stevenage      1      0      H  11-12


22/02/13
         league           home           away  hgoal  agoal result season
date                                                                     
22/02/13    SP1     Ath Bilbao       Sociedad      1      3      A  12-13
22/02/13     T1  Gaziantepspor      Bursaspor      2      1      H  12-13
22/02/13     E2   Notts County           Bury      4      1      H  12-13
22/02/13     D1       Freiburg  Ein Frankfurt      0      0      D  12-13


22/02/14
         league              home                  away  hgoal  agoal result  \
date                                                                           
22/02/14     D1          Freiburg              Augsburg      2      4      A   
22/02/14     D1           Hamburg              Dortmund      3      0      H   
22/02/14     D1        M'gladbach            Hoffenheim      2      2      D   
22/02/14     D1          Nurnberg          Braunschweig      2      1      H   
22/02/14     D1         Stuttgart                Hertha      1      2      A   
22/02/14     D1         Wolfsburg            Leverkusen      3      1      H   
22/02/14     T1       Erciyesspor           Karabukspor      2      1      H   
22/02/14     T1       Galatasaray              Besiktas      1      0      H   
22/02/14     T1     Gaziantepspor  Akhisar Belediyespor      1      1      D   
22/02/14     E2          Bradford    Milton Keynes Dons      1      0      H   
22/02/14     E2         Brentford                Wolves      0      3      A   
22/02/14     E2          Carlisle             Rotherham      1      2      A   
22/02/14     E2        Colchester               Preston      1      2      A   
22/02/14     E2     Leyton Orient               Swindon      2      0      H   
22/02/14     E2      Notts County            Shrewsbury      2      3      A   
22/02/14     E2            Oldham            Gillingham      1      0      H   
22/02/14     E2         Port Vale                 Crewe      1      3      A   
22/02/14     E2  Sheffield United          Bristol City      3      0      H   
22/02/14     E2         Stevenage             Peterboro      0      1      A   
22/02/14     E2          Tranmere              Coventry      3      1      H   
22/02/14     E2           Walsall          Crawley Town      1      2      A   
22/02/14    SP1           Almeria                Malaga      0      0      D   
22/02/14    SP1             Celta                Getafe      1      1      D   
22/02/14    SP1       Real Madrid                 Elche      3      0      H   
22/02/14    SP1          Sociedad             Barcelona      3      1      H   
22/02/14     I1           Bologna                  Roma      0      1      A   

         season  
date             
22/02/14  13-14  
22/02/14  13-14  
22/02/14  13-14  
22/02/14  13-14  
22/02/14  13-14  
22/02/14  13-14  
22/02/14  13-14  
22/02/14  13-14  
22/02/14  13-14  
22/02/14  13-14  
22/02/14  13-14  
22/02/14  13-14  
22/02/14  13-14  
22/02/14  13-14  
22/02/14  13-14  
22/02/14  13-14  
22/02/14  13-14  
22/02/14  13-14  
22/02/14  13-14  
22/02/14  13-14  
22/02/14  13-14  
22/02/14  13-14  
22/02/14  13-14  
22/02/14  13-14  
22/02/14  13-14  
22/02/14  13-14  


22/02/15
         league                home            away  hgoal  agoal result  \
date                                                                       
22/02/15     D1             Hamburg      M'gladbach      1      1      D   
22/02/15     D1           Wolfsburg          Hertha      2      1      H   
22/02/15     I1              Empoli          Chievo      3      0      H   
22/02/15     I1          Fiorentina          Torino      1      1      D   
22/02/15     I1               Lazio         Palermo      2      1      H   
22/02/15     I1               Milan          Cesena      2      0      H   
22/02/15     I1              Verona            Roma      1      1      D   
22/02/15     T1       Balikesirspor  Genclerbirligi      0      1      A   
22/02/15     T1       Eskisehirspor        Besiktas      1      0      H   
22/02/15     T1           Kasimpasa     Trabzonspor      1      1      D   
22/02/15     T1  Mersin Idman Yurdu     Karabukspor      2      1      H   
22/02/15    SP1          Ath Bilbao       Vallecano      1      0      H   
22/02/15    SP1               Elche     Real Madrid      0      2      A   
22/02/15    SP1            Sociedad         Sevilla      4      3      H   
22/02/15    SP1          Villarreal           Eibar      1      0      H   

         season  
date             
22/02/15  14-15  
22/02/15  14-15  
22/02/15  14-15  
22/02/15  14-15  
22/02/15  14-15  
22/02/15  14-15  
22/02/15  14-15  
22/02/15  14-15  
22/02/15  14-15  
22/02/15  14-15  
22/02/15  14-15  
22/02/15  14-15  
22/02/15  14-15  
22/02/15  14-15  
22/02/15  14-15  


22/02/16
         league      home            away  hgoal  agoal result season
date                                                                 
22/02/16     T1  Besiktas  Genclerbirligi      1      0      H  15-16
22/02/16     I1    Napoli           Milan      1      1      D  15-16
22/02/16     E2  Southend          Burton      3      1      H  15-16


22/03/12
         league       home       away  hgoal  agoal result season
date                                                             
22/03/12    SP1      Betis    Espanol      1      1      D  11-12
22/03/12    SP1     Malaga  Vallecano      4      2      H  11-12
22/03/12    SP1  Santander    Sevilla      0      3      A  11-12


22/03/14
         league              home                away  hgoal  agoal result  \
date                                                                         
22/03/14     D1          Hannover            Dortmund      0      3      A   
22/03/14     D1             Mainz       Bayern Munich      0      2      A   
22/03/14     D1        M'gladbach              Hertha      3      0      H   
22/03/14     D1        Schalke 04        Braunschweig      3      1      H   
22/03/14     D1         Stuttgart             Hamburg      1      0      H   
22/03/14     D1         Wolfsburg            Augsburg      1      1      D   
22/03/14     T1       Antalyaspor         Karabukspor      0      0      D   
22/03/14     T1         Bursaspor           Konyaspor      1      2      A   
22/03/14     T1       Galatasaray         Kayserispor      0      1      A   
22/03/14     T1          Rizespor       Eskisehirspor      0      0      D   
22/03/14     E2         Brentford            Coventry      3      1      H   
22/03/14     E2        Colchester        Bristol City      2      2      D   
22/03/14     E2        Gillingham               Crewe      1      3      A   
22/03/14     E2      Notts County            Carlisle      4      1      H   
22/03/14     E2            Oldham        Crawley Town      1      0      H   
22/03/14     E2         Peterboro           Rotherham      0      1      A   
22/03/14     E2         Port Vale            Tranmere      3      2      H   
22/03/14     E2  Sheffield United              Wolves      0      2      A   
22/03/14     E2        Shrewsbury            Bradford      2      1      H   
22/03/14     E2         Stevenage  Milton Keynes Dons      2      3      A   
22/03/14     E2           Swindon             Preston      1      0      H   
22/03/14     E2           Walsall       Leyton Orient      1      1      D   
22/03/14    SP1        Ath Bilbao              Getafe      1      0      H   
22/03/14    SP1           Espanol             Levante      0      0      D   
22/03/14    SP1           Granada               Elche      1      0      H   
22/03/14    SP1        Valladolid           Vallecano      1      1      D   
22/03/14     I1            Chievo                Roma      0      2      A   
22/03/14     I1            Torino             Livorno      3      1      H   

         season  
date             
22/03/14  13-14  
22/03/14  13-14  
22/03/14  13-14  
22/03/14  13-14  
22/03/14  13-14  
22/03/14  13-14  
22/03/14  13-14  
22/03/14  13-14  
22/03/14  13-14  
22/03/14  13-14  
22/03/14  13-14  
22/03/14  13-14  
22/03/14  13-14  
22/03/14  13-14  
22/03/14  13-14  
22/03/14  13-14  
22/03/14  13-14  
22/03/14  13-14  
22/03/14  13-14  
22/03/14  13-14  
22/03/14  13-14  
22/03/14  13-14  
22/03/14  13-14  
22/03/14  13-14  
22/03/14  13-14  
22/03/14  13-14  
22/03/14  13-14  
22/03/14  13-14  


22/03/15
         league           home                  away  hgoal  agoal result  \
date                                                                        
22/03/15     D1  Bayern Munich            M'gladbach      0      2      A   
22/03/15     D1          Mainz             Wolfsburg      1      1      D   
22/03/15     I1         Cesena                  Roma      0      1      A   
22/03/15     I1         Empoli              Sassuolo      3      1      H   
22/03/15     I1       Juventus                 Genoa      1      0      H   
22/03/15     I1          Lazio                Verona      2      0      H   
22/03/15     I1         Napoli              Atalanta      1      1      D   
22/03/15     I1          Parma                Torino      0      2      A   
22/03/15     I1      Sampdoria                 Inter      1      0      H   
22/03/15     I1        Udinese            Fiorentina      2      2      D   
22/03/15     T1     Buyuksehyr        Genclerbirligi      3      1      H   
22/03/15     T1     Fenerbahce              Besiktas      1      0      H   
22/03/15     T1    Trabzonspor  Akhisar Belediyespor      2      0      H   
22/03/15    SP1      Barcelona           Real Madrid      2      1      H   
22/03/15    SP1      La Coruna               Espanol      0      0      D   
22/03/15    SP1       Sociedad               Cordoba      3      1      H   
22/03/15    SP1     Villarreal               Sevilla      0      2      A   

         season  
date             
22/03/15  14-15  
22/03/15  14-15  
22/03/15  14-15  
22/03/15  14-15  
22/03/15  14-15  
22/03/15  14-15  
22/03/15  14-15  
22/03/15  14-15  
22/03/15  14-15  
22/03/15  14-15  
22/03/15  14-15  
22/03/15  14-15  
22/03/15  14-15  
22/03/15  14-15  
22/03/15  14-15  
22/03/15  14-15  
22/03/15  14-15  


22/04/12
         league        home        away  hgoal  agoal result season
date                                                               
22/04/12    SP1  Ath Madrid     Espanol      3      1      H  11-12
22/04/12    SP1     Granada      Getafe      1      0      H  11-12
22/04/12    SP1   Santander  Ath Bilbao      0      1      A  11-12
22/04/12    SP1    Sociedad  Villarreal      1      1      D  11-12
22/04/12    SP1    Valencia       Betis      4      0      H  11-12
22/04/12     I1      Cesena     Palermo      2      2      D  11-12
22/04/12     I1  Fiorentina       Inter      0      0      D  11-12
22/04/12     I1       Genoa       Siena      1      4      A  11-12
22/04/12     I1    Juventus        Roma      4      0      H  11-12
22/04/12     I1       Lazio       Lecce      1      1      D  11-12
22/04/12     I1       Milan     Bologna      1      1      D  11-12
22/04/12     D1    Augsburg  Schalke 04      1      1      D  11-12
22/04/12     D1    Hannover    Freiburg      0      0      D  11-12


22/04/13
         league           home         away  hgoal  agoal result season
date                                                                   
22/04/13    SP1          Celta     Zaragoza      2      1      H  12-13
22/04/13     T1  Eskisehirspor  Trabzonspor      0      1      A  12-13


22/04/16
         league         home           away  hgoal  agoal result season
date                                                                   
22/04/16     T1  Kayserispor      Bursaspor      2      1      H  15-16
22/04/16     D1      Hamburg  Werder Bremen      2      1      H  15-16
22/04/16    SP1   Las Palmas        Espanol      4      0      H  15-16


22/05/15
         league            home                away  hgoal  agoal result  \
date                                                                       
22/05/15     T1  Genclerbirligi  Mersin Idman Yurdu      1      2      A   

         season  
date             
22/05/15  14-15  


22/08/14
         league           home       away  hgoal  agoal result season
date                                                                 
22/08/14     D1  Bayern Munich  Wolfsburg      2      1      H  14-15


22/08/15
         league                  home                away  hgoal  agoal  \
date                                                                      
22/08/15     T1  Akhisar Belediyespor  Mersin Idman Yurdu      2      0   
22/08/15     T1              Besiktas         Trabzonspor      1      2   
22/08/15     T1           Kayserispor           Konyaspor      1      1   
22/08/15     D1         Ein Frankfurt            Augsburg      1      1   
22/08/15     D1               FC Koln           Wolfsburg      1      1   
22/08/15     D1               Hamburg           Stuttgart      3      2   
22/08/15     D1              Hannover          Leverkusen      0      1   
22/08/15     D1            Hoffenheim       Bayern Munich      1      2   
22/08/15     D1            Schalke 04           Darmstadt      1      1   
22/08/15     I1                 Lazio             Bologna      2      1   
22/08/15     I1                Verona                Roma      1      1   
22/08/15    SP1            Ath Madrid          Las Palmas      1      0   
22/08/15    SP1               Espanol              Getafe      1      0   
22/08/15    SP1             La Coruna            Sociedad      0      0   
22/08/15    SP1             Vallecano            Valencia      0      0   
22/08/15     E2              Barnsley            Bradford      0      0   
22/08/15     E2                Burton           Peterboro      2      1   
22/08/15     E2          Chesterfield            Rochdale      0      0   
22/08/15     E2                 Crewe                Bury      3      3   
22/08/15     E2        Fleetwood Town          Colchester      4      0   
22/08/15     E2            Gillingham               Wigan      2      0   
22/08/15     E2                Oldham          Shrewsbury      1      1   
22/08/15     E2             Port Vale           Doncaster      3      0   
22/08/15     E2            Scunthorpe            Millwall      0      0   
22/08/15     E2      Sheffield United           Blackpool      2      0   
22/08/15     E2              Southend             Swindon      0      1   
22/08/15     E2               Walsall            Coventry      2      1   

         result season  
date                    
22/08/15      H  15-16  
22/08/15      A  15-16  
22/08/15      D  15-16  
22/08/15      D  15-16  
22/08/15      D  15-16  
22/08/15      H  15-16  
22/08/15      A  15-16  
22/08/15      A  15-16  
22/08/15      D  15-16  
22/08/15      H  15-16  
22/08/15      D  15-16  
22/08/15      H  15-16  
22/08/15      H  15-16  
22/08/15      D  15-16  
22/08/15      D  15-16  
22/08/15      D  15-16  
22/08/15      H  15-16  
22/08/15      D  15-16  
22/08/15      D  15-16  
22/08/15      H  15-16  
22/08/15      H  15-16  
22/08/15      D  15-16  
22/08/15      H  15-16  
22/08/15      D  15-16  
22/08/15      H  15-16  
22/08/15      A  15-16  
22/08/15      H  15-16  


22/09/11
         league        home       away  hgoal  agoal result season
date                                                              
22/09/11    SP1       Betis   Zaragoza      4      3      H  11-12
22/09/11    SP1     Espanol     Getafe      1      0      H  11-12
22/09/11     I1        Roma      Siena      1      1      D  11-12
22/09/11     T1  Ankaragucu  Sivasspor      1      2      A  11-12
22/09/11     T1   Bursaspor   Besiktas      1      2      A  11-12


22/09/12
         league                home                away  hgoal  agoal result  \
date                                                                           
22/09/12    SP1           Barcelona             Granada      2      0      H   
22/09/12    SP1               Betis             Espanol      1      0      H   
22/09/12    SP1               Celta              Getafe      2      1      H   
22/09/12    SP1            Zaragoza             Osasuna      3      1      H   
22/09/12     I1            Juventus              Chievo      2      0      H   
22/09/12     I1               Parma          Fiorentina      1      1      D   
22/09/12     T1          Buyuksehyr            Orduspor      1      1      D   
22/09/12     T1       Gaziantepspor            Besiktas      3      2      H   
22/09/12     T1         Kayserispor       Eskisehirspor      3      2      H   
22/09/12     T1  Mersin Idman Yurdu      Genclerbirligi      1      1      D   
22/09/12     E2           Brentford              Oldham      1      0      H   
22/09/12     E2                Bury  Milton Keynes Dons      1      4      A   
22/09/12     E2            Coventry            Carlisle      1      2      A   
22/09/12     E2        Crawley Town            Tranmere      2      5      A   
22/09/12     E2               Crewe       Leyton Orient      1      1      D   
22/09/12     E2           Doncaster           Stevenage      1      1      D   
22/09/12     E2          Hartlepool          Shrewsbury      2      2      D   
22/09/12     E2        Notts County          Portsmouth      3      0      H   
22/09/12     E2          Scunthorpe          Colchester      1      0      H   
22/09/12     E2             Swindon         Bournemouth      4      0      H   
22/09/12     E2             Walsall             Preston      3      1      H   
22/09/12     E2              Yeovil    Sheffield United      0      1      A   
22/09/12     D1  Fortuna Dusseldorf            Freiburg      0      0      D   
22/09/12     D1             Hamburg            Dortmund      3      2      H   
22/09/12     D1               Mainz            Augsburg      2      0      H   
22/09/12     D1          Schalke 04       Bayern Munich      0      2      A   
22/09/12     D1           Wolfsburg      Greuther Furth      1      1      D   

         season  
date             
22/09/12  12-13  
22/09/12  12-13  
22/09/12  12-13  
22/09/12  12-13  
22/09/12  12-13  
22/09/12  12-13  
22/09/12  12-13  
22/09/12  12-13  
22/09/12  12-13  
22/09/12  12-13  
22/09/12  12-13  
22/09/12  12-13  
22/09/12  12-13  
22/09/12  12-13  
22/09/12  12-13  
22/09/12  12-13  
22/09/12  12-13  
22/09/12  12-13  
22/09/12  12-13  
22/09/12  12-13  
22/09/12  12-13  
22/09/12  12-13  
22/09/12  12-13  
22/09/12  12-13  
22/09/12  12-13  
22/09/12  12-13  
22/09/12  12-13  


22/09/13
         league         home           away  hgoal  agoal result season
date                                                                   
22/09/13     D1     Freiburg         Hertha      1      1      D  13-14
22/09/13     D1    Stuttgart  Ein Frankfurt      1      1      D  13-14
22/09/13     T1     Besiktas    Galatasaray      0      3      A  13-14
22/09/13     T1     Rizespor      Bursaspor      2      1      H  13-14
22/09/13    SP1        Betis        Granada      0      0      D  13-14
22/09/13    SP1        Celta     Villarreal      0      0      D  13-14
22/09/13    SP1  Real Madrid         Getafe      4      1      H  13-14
22/09/13    SP1     Valencia        Sevilla      3      1      H  13-14
22/09/13     I1     Atalanta     Fiorentina      0      2      A  13-14
22/09/13     I1      Bologna         Torino      1      2      A  13-14
22/09/13     I1      Catania          Parma      0      0      D  13-14
22/09/13     I1     Juventus         Verona      2      1      H  13-14
22/09/13     I1        Milan         Napoli      1      2      A  13-14
22/09/13     I1         Roma          Lazio      2      0      H  13-14
22/09/13     I1     Sassuolo          Inter      0      7      A  13-14


22/09/14
         league        home         away  hgoal  agoal result season
date                                                                
22/09/14     T1   Bursaspor     Besiktas      0      1      A  14-15
22/09/14     T1  Buyuksehyr  Trabzonspor      1      1      D  14-15
22/09/14    SP1      Getafe     Valencia      0      3      A  14-15


22/09/15
         league           home           away  hgoal  agoal result season
date                                                                     
22/09/15     D1  Bayern Munich      Wolfsburg      5      1      H  15-16
22/09/15     D1      Darmstadt  Werder Bremen      2      1      H  15-16
22/09/15     D1         Hertha        FC Koln      2      0      H  15-16
22/09/15     D1     Ingolstadt        Hamburg      0      1      A  15-16
22/09/15     I1        Udinese          Milan      2      3      A  15-16
22/09/15    SP1     Ath Madrid         Getafe      2      0      H  15-16
22/09/15    SP1        Espanol       Valencia      1      0      H  15-16
22/09/15    SP1        Granada       Sociedad      0      3      A  15-16


22/10/11
         league                home              away  hgoal  agoal result  \
date                                                                         
22/10/11    SP1           Barcelona           Sevilla      0      0      D   
22/10/11    SP1              Malaga       Real Madrid      0      4      A   
22/10/11    SP1           Santander           Espanol      0      1      A   
22/10/11    SP1            Sp Gijon           Granada      2      0      H   
22/10/11     I1          Fiorentina           Catania      2      2      D   
22/10/11     I1            Juventus             Genoa      2      2      D   
22/10/11     D1            Dortmund           FC Koln      5      0      H   
22/10/11     D1             Hamburg         Wolfsburg      1      1      D   
22/10/11     D1              Hertha             Mainz      0      0      D   
22/10/11     D1          Hoffenheim        M'gladbach      1      0      H   
22/10/11     D1      Kaiserslautern          Freiburg      1      0      H   
22/10/11     D1            Nurnberg         Stuttgart      2      2      D   
22/10/11     T1           Bursaspor       Trabzonspor      1      1      D   
22/10/11     T1       Eskisehirspor        Manisaspor      0      2      A   
22/10/11     T1         Karabukspor        Buyuksehyr      2      0      H   
22/10/11     E2         Bournemouth              Bury      1      2      A   
22/10/11     E2            Charlton          Carlisle      4      0      H   
22/10/11     E2        Chesterfield        Hartlepool      2      3      A   
22/10/11     E2              Exeter          Rochdale      3      1      H   
22/10/11     E2        Huddersfield           Preston      3      1      H   
22/10/11     E2       Leyton Orient  Sheffield United      1      1      D   
22/10/11     E2  Milton Keynes Dons        Scunthorpe      0      0      D   
22/10/11     E2        Notts County         Brentford      1      1      D   
22/10/11     E2              Oldham           Wycombe      2      0      H   
22/10/11     E2      Sheffield Weds        Colchester      2      0      H   
22/10/11     E2           Stevenage            Yeovil      0      0      D   
22/10/11     E2            Tranmere           Walsall      2      1      H   

         season  
date             
22/10/11  11-12  
22/10/11  11-12  
22/10/11  11-12  
22/10/11  11-12  
22/10/11  11-12  
22/10/11  11-12  
22/10/11  11-12  
22/10/11  11-12  
22/10/11  11-12  
22/10/11  11-12  
22/10/11  11-12  
22/10/11  11-12  
22/10/11  11-12  
22/10/11  11-12  
22/10/11  11-12  
22/10/11  11-12  
22/10/11  11-12  
22/10/11  11-12  
22/10/11  11-12  
22/10/11  11-12  
22/10/11  11-12  
22/10/11  11-12  
22/10/11  11-12  
22/10/11  11-12  
22/10/11  11-12  
22/10/11  11-12  
22/10/11  11-12  


22/10/12
         league         home        away  hgoal  agoal result season
date                                                                
22/10/12    SP1      Sevilla    Mallorca      3      2      H  12-13
22/10/12     T1  Kayserispor  Buyuksehyr      0      1      A  12-13


22/10/13
         league                home              away  hgoal  agoal result  \
date                                                                         
22/10/13     E2        Bristol City         Brentford      1      2      A   
22/10/13     E2            Coventry     Leyton Orient      3      1      H   
22/10/13     E2        Crawley Town         Port Vale      0      3      A   
22/10/13     E2               Crewe         Stevenage      0      3      A   
22/10/13     E2          Gillingham      Notts County      2      1      H   
22/10/13     E2  Milton Keynes Dons          Carlisle      0      1      A   
22/10/13     E2           Peterboro  Sheffield United      0      0      D   
22/10/13     E2             Preston          Bradford      2      2      D   
22/10/13     E2           Rotherham          Tranmere      1      1      D   
22/10/13     E2          Shrewsbury        Colchester      1      1      D   
22/10/13     E2             Swindon           Walsall      1      3      A   
22/10/13     E2              Wolves            Oldham      2      0      H   

         season  
date             
22/10/13  13-14  
22/10/13  13-14  
22/10/13  13-14  
22/10/13  13-14  
22/10/13  13-14  
22/10/13  13-14  
22/10/13  13-14  
22/10/13  13-14  
22/10/13  13-14  
22/10/13  13-14  
22/10/13  13-14  
22/10/13  13-14  


22/11/13
         league        home        away  hgoal  agoal result season
date                                                               
22/11/13     D1   Stuttgart  M'gladbach      0      2      A  13-14
22/11/13    SP1  Valladolid     Osasuna      0      1      A  13-14


22/11/14
         league                  home                away  hgoal  agoal  \
date                                                                      
22/11/14     D1         Bayern Munich          Hoffenheim      4      0   
22/11/14     D1               FC Koln              Hertha      1      2   
22/11/14     D1              Hannover          Leverkusen      1      3   
22/11/14     D1                 Mainz            Freiburg      2      2   
22/11/14     D1            M'gladbach       Ein Frankfurt      1      3   
22/11/14     D1             Paderborn            Dortmund      2      2   
22/11/14     D1            Schalke 04           Wolfsburg      3      2   
22/11/14     I1              Atalanta                Roma      1      2   
22/11/14     I1                 Lazio            Juventus      0      3   
22/11/14     T1  Akhisar Belediyespor  Mersin Idman Yurdu      1      1   
22/11/14     T1           Galatasaray         Trabzonspor      0      3   
22/11/14     T1              Rizespor          Buyuksehyr      0      2   
22/11/14     E2              Bradford          Gillingham      1      1   
22/11/14     E2          Bristol City             Preston      0      1   
22/11/14     E2          Chesterfield            Barnsley      2      1   
22/11/14     E2            Colchester            Coventry      0      1   
22/11/14     E2          Crawley Town          Scunthorpe      2      2   
22/11/14     E2        Fleetwood Town             Walsall      0      1   
22/11/14     E2         Leyton Orient               Crewe      4      1   
22/11/14     E2    Milton Keynes Dons           Port Vale      1      0   
22/11/14     E2          Notts County              Yeovil      1      2   
22/11/14     E2             Peterboro             Swindon      1      2   
22/11/14     E2              Rochdale           Doncaster      1      3   
22/11/14     E2      Sheffield United              Oldham      1      1   
22/11/14    SP1            Ath Madrid              Malaga      3      1   
22/11/14    SP1             Barcelona             Sevilla      5      1   
22/11/14    SP1                 Eibar         Real Madrid      0      4   
22/11/14    SP1             La Coruna            Sociedad      0      0   

         result season  
date                    
22/11/14      H  14-15  
22/11/14      A  14-15  
22/11/14      A  14-15  
22/11/14      D  14-15  
22/11/14      A  14-15  
22/11/14      D  14-15  
22/11/14      H  14-15  
22/11/14      A  14-15  
22/11/14      A  14-15  
22/11/14      D  14-15  
22/11/14      A  14-15  
22/11/14      A  14-15  
22/11/14      D  14-15  
22/11/14      A  14-15  
22/11/14      H  14-15  
22/11/14      A  14-15  
22/11/14      D  14-15  
22/11/14      A  14-15  
22/11/14      H  14-15  
22/11/14      H  14-15  
22/11/14      A  14-15  
22/11/14      A  14-15  
22/11/14      A  14-15  
22/11/14      D  14-15  
22/11/14      H  14-15  
22/11/14      H  14-15  
22/11/14      A  14-15  
22/11/14      D  14-15  


22/11/15
         league         home            away  hgoal  agoal result season
date                                                                    
22/11/15     T1     Besiktas       Sivasspor      2      0      H  15-16
22/11/15     T1    Konyaspor   Eskisehirspor      3      2      H  15-16
22/11/15     T1  Osmanlispor        Rizespor      0      1      A  15-16
22/11/15     T1  Trabzonspor  Genclerbirligi      1      0      H  15-16
22/11/15     D1       Hertha      Hoffenheim      1      0      H  15-16
22/11/15     D1   Ingolstadt       Darmstadt      3      1      H  15-16
22/11/15     I1     Atalanta          Torino      0      1      A  15-16
22/11/15     I1        Carpi          Chievo      1      2      A  15-16
22/11/15     I1   Fiorentina          Empoli      2      2      D  15-16
22/11/15     I1        Genoa        Sassuolo      2      1      H  15-16
22/11/15     I1        Inter       Frosinone      4      0      H  15-16
22/11/15     I1        Lazio         Palermo      1      1      D  15-16
22/11/15     I1      Udinese       Sampdoria      1      0      H  15-16
22/11/15     I1       Verona          Napoli      0      2      A  15-16
22/11/15    SP1        Betis      Ath Madrid      0      1      A  15-16
22/11/15    SP1      Granada      Ath Bilbao      2      0      H  15-16
22/11/15    SP1     Sp Gijon         Levante      0      3      A  15-16
22/11/15    SP1   Villarreal           Eibar      1      1      D  15-16


22/12/11
         league            home         away  hgoal  agoal result season
date                                                                    
22/12/11     T1        Besiktas  Karabukspor      1      0      H  11-12
22/12/11     T1   Gaziantepspor    Bursaspor      2      2      D  11-12
22/12/11     T1  Genclerbirligi   Buyuksehyr      4      0      H  11-12
22/12/11     T1     Trabzonspor     Orduspor      4      1      H  11-12


22/12/12
         league          home              away  hgoal  agoal result season
date                                                                       
22/12/12    SP1    Ath Bilbao          Zaragoza      0      2      A  12-13
22/12/12    SP1         Betis          Mallorca      1      2      A  12-13
22/12/12    SP1        Malaga       Real Madrid      3      2      H  12-13
22/12/12    SP1       Osasuna           Granada      1      2      A  12-13
22/12/12    SP1    Valladolid         Barcelona      1      3      A  12-13
22/12/12     I1      Atalanta           Udinese      1      1      D  12-13
22/12/12     I1       Bologna             Parma      1      2      A  12-13
22/12/12     I1         Inter             Genoa      1      1      D  12-13
22/12/12     I1       Palermo        Fiorentina      0      3      A  12-13
22/12/12     I1          Roma             Milan      4      2      H  12-13
22/12/12     I1     Sampdoria             Lazio      0      1      A  12-13
22/12/12     I1         Siena            Napoli      0      2      A  12-13
22/12/12     I1        Torino            Chievo      2      0      H  12-13
22/12/12     T1    Fenerbahce       Karabukspor      1      3      A  12-13
22/12/12     T1     Kasimpasa        Buyuksehyr      0      2      A  12-13
22/12/12     E2      Coventry           Preston      1      1      D  12-13
22/12/12     E2  Crawley Town  Sheffield United      0      2      A  12-13
22/12/12     E2       Walsall        Colchester      1      0      H  12-13
22/12/12     E2        Yeovil            Oldham      4      1      H  12-13


22/12/13
         league           home            away  hgoal  agoal result season
date                                                                      
22/12/13     D1     M'gladbach       Wolfsburg      2      2      D  13-14
22/12/13     T1    Antalyaspor  Genclerbirligi      2      3      A  13-14
22/12/13     T1  Eskisehirspor   Gaziantepspor      2      0      H  13-14
22/12/13     T1    Galatasaray     Trabzonspor      2      1      H  13-14
22/12/13     T1    Karabukspor      Fenerbahce      2      1      H  13-14
22/12/13     T1    Kayserispor       Konyaspor      0      0      D  13-14
22/12/13    SP1     Ath Bilbao       Vallecano      2      1      H  13-14
22/12/13    SP1          Celta         Osasuna      1      1      D  13-14
22/12/13    SP1        Espanol      Valladolid      4      2      H  13-14
22/12/13    SP1         Getafe       Barcelona      2      5      A  13-14
22/12/13    SP1       Valencia     Real Madrid      2      3      A  13-14
22/12/13     I1       Atalanta        Juventus      1      4      A  13-14
22/12/13     I1        Bologna           Genoa      1      0      H  13-14
22/12/13     I1          Inter           Milan      1      0      H  13-14
22/12/13     I1           Roma         Catania      4      0      H  13-14
22/12/13     I1      Sampdoria           Parma      1      1      D  13-14
22/12/13     I1       Sassuolo      Fiorentina      0      1      A  13-14
22/12/13     I1         Torino          Chievo      4      1      H  13-14
22/12/13     I1         Verona           Lazio      4      1      H  13-14


22/12/14
         league      home           away  hgoal  agoal result season
date                                                                
22/12/14     T1  Rizespor  Gaziantepspor      0      1      A  14-15


23/01/12
         league        home      away  hgoal  agoal result season
date                                                             
23/01/12    SP1  Villarreal  Sp Gijon      3      0      H  11-12


23/01/15
         league         home       away  hgoal  agoal result season
date                                                               
23/01/15     T1    Konyaspor  Bursaspor      2      3      A  14-15
23/01/15     T1  Trabzonspor  Sivasspor      3      1      H  14-15


23/01/16
         league                home                  away  hgoal  agoal  \
date                                                                      
23/01/16     T1           Konyaspor           Kayserispor      1      0   
23/01/16     T1  Mersin Idman Yurdu  Akhisar Belediyespor      0      0   
23/01/16     T1         Osmanlispor           Galatasaray      3      2   
23/01/16     D1             FC Koln             Stuttgart      1      3   
23/01/16     D1            Hannover             Darmstadt      1      2   
23/01/16     D1              Hertha              Augsburg      0      0   
23/01/16     D1          Hoffenheim            Leverkusen      1      1   
23/01/16     D1          Ingolstadt                 Mainz      1      0   
23/01/16     D1          M'gladbach              Dortmund      1      3   
23/01/16     I1              Empoli                 Milan      2      2   
23/01/16     I1           Frosinone              Atalanta      0      0   
23/01/16    SP1             Espanol            Villarreal      2      2   
23/01/16    SP1             Granada                Getafe      3      2   
23/01/16    SP1              Malaga             Barcelona      1      2   
23/01/16    SP1           Vallecano                 Celta      3      0   
23/01/16     E2              Burton            Shrewsbury      1      2   
23/01/16     E2        Chesterfield              Millwall      1      2   
23/01/16     E2               Crewe                 Wigan      1      1   
23/01/16     E2      Fleetwood Town             Doncaster      0      0   
23/01/16     E2          Gillingham             Peterboro      2      1   
23/01/16     E2              Oldham                  Bury      0      1   
23/01/16     E2           Port Vale              Bradford      1      1   
23/01/16     E2          Scunthorpe            Colchester      3      0   
23/01/16     E2    Sheffield United               Swindon      1      1   
23/01/16     E2            Southend              Coventry      3      0   
23/01/16     E2             Walsall             Blackpool      1      1   

         result season  
date                    
23/01/16      H  15-16  
23/01/16      D  15-16  
23/01/16      H  15-16  
23/01/16      A  15-16  
23/01/16      A  15-16  
23/01/16      D  15-16  
23/01/16      D  15-16  
23/01/16      H  15-16  
23/01/16      A  15-16  
23/01/16      D  15-16  
23/01/16      D  15-16  
23/01/16      D  15-16  
23/01/16      H  15-16  
23/01/16      A  15-16  
23/01/16      H  15-16  
23/01/16      A  15-16  
23/01/16      A  15-16  
23/01/16      D  15-16  
23/01/16      D  15-16  
23/01/16      H  15-16  
23/01/16      A  15-16  
23/01/16      D  15-16  
23/01/16      H  15-16  
23/01/16      D  15-16  
23/01/16      H  15-16  
23/01/16      D  15-16  


23/02/13
         league                home                away  hgoal  agoal result  \
date                                                                           
23/02/13    SP1           Barcelona             Sevilla      2      1      H   
23/02/13    SP1           La Coruna         Real Madrid      1      2      A   
23/02/13    SP1            Mallorca              Getafe      1      3      A   
23/02/13    SP1            Zaragoza            Valencia      2      2      D   
23/02/13     I1             Palermo               Genoa      0      0      D   
23/02/13     T1          Buyuksehyr       Eskisehirspor      2      2      D   
23/02/13     T1          Elazigspor         Antalyaspor      2      1      H   
23/02/13     T1  Mersin Idman Yurdu         Trabzonspor      0      1      A   
23/02/13     T1           Sivasspor            Besiktas      0      1      A   
23/02/13     E2         Bournemouth    Sheffield United      0      1      A   
23/02/13     E2           Brentford             Walsall      0      0      D   
23/02/13     E2            Carlisle  Milton Keynes Dons      1      1      D   
23/02/13     E2          Colchester            Tranmere      1      5      A   
23/02/13     E2            Coventry               Crewe      1      2      A   
23/02/13     E2           Doncaster              Yeovil      1      1      D   
23/02/13     E2       Leyton Orient        Crawley Town      0      1      A   
23/02/13     E2              Oldham          Portsmouth      1      0      H   
23/02/13     E2          Scunthorpe          Hartlepool      1      2      A   
23/02/13     E2          Shrewsbury           Stevenage      2      1      H   
23/02/13     E2             Swindon             Preston      1      1      D   
23/02/13     D1            Augsburg          Hoffenheim      2      1      H   
23/02/13     D1       Bayern Munich       Werder Bremen      6      1      H   
23/02/13     D1            Hannover             Hamburg      5      1      H   
23/02/13     D1               Mainz           Wolfsburg      1      1      D   
23/02/13     D1          Schalke 04  Fortuna Dusseldorf      2      1      H   
23/02/13     D1           Stuttgart            Nurnberg      1      1      D   

         season  
date             
23/02/13  12-13  
23/02/13  12-13  
23/02/13  12-13  
23/02/13  12-13  
23/02/13  12-13  
23/02/13  12-13  
23/02/13  12-13  
23/02/13  12-13  
23/02/13  12-13  
23/02/13  12-13  
23/02/13  12-13  
23/02/13  12-13  
23/02/13  12-13  
23/02/13  12-13  
23/02/13  12-13  
23/02/13  12-13  
23/02/13  12-13  
23/02/13  12-13  
23/02/13  12-13  
23/02/13  12-13  
23/02/13  12-13  
23/02/13  12-13  
23/02/13  12-13  
23/02/13  12-13  
23/02/13  12-13  
23/02/13  12-13  


23/02/14
         league            home           away  hgoal  agoal result season
date                                                                      
23/02/14     D1   Ein Frankfurt  Werder Bremen      0      0      D  13-14
23/02/14     D1        Hannover  Bayern Munich      0      4      A  13-14
23/02/14     T1     Antalyaspor  Eskisehirspor      0      0      D  13-14
23/02/14     T1  Genclerbirligi      Konyaspor      2      2      D  13-14
23/02/14     T1       Kasimpasa      Sivasspor      6      2      H  13-14
23/02/14     T1     Trabzonspor    Kayserispor      2      1      H  13-14
23/02/14    SP1           Betis     Ath Bilbao      0      2      A  13-14
23/02/14    SP1         Osasuna     Ath Madrid      3      0      H  13-14
23/02/14    SP1        Valencia        Granada      2      1      H  13-14
23/02/14    SP1       Vallecano        Sevilla      0      1      A  13-14
23/02/14     I1          Chievo        Catania      2      0      H  13-14
23/02/14     I1           Inter       Cagliari      1      1      D  13-14
23/02/14     I1        Juventus         Torino      1      0      H  13-14
23/02/14     I1           Lazio       Sassuolo      3      2      H  13-14
23/02/14     I1         Livorno         Verona      2      3      A  13-14
23/02/14     I1       Sampdoria          Milan      0      2      A  13-14
23/02/14     I1         Udinese       Atalanta      1      1      D  13-14


23/02/15
         league        home                  away  hgoal  agoal result season
date                                                                         
23/02/15     I1    Cagliari                 Inter      1      2      A  14-15
23/02/15     I1      Napoli              Sassuolo      2      0      H  14-15
23/02/15     T1  Fenerbahce  Akhisar Belediyespor      1      2      A  14-15
23/02/15    SP1     Levante               Granada      2      1      H  14-15


23/02/16
         league       home            away  hgoal  agoal result season
date                                                                  
23/02/16     E2       Bury        Barnsley      0      0      D  15-16
23/02/16     E2  Peterboro          Oldham      1      2      A  15-16
23/02/16     E2   Rochdale  Fleetwood Town      1      0      H  15-16


23/03/12
         league       home     away  hgoal  agoal result season
date                                                           
23/03/12     D1  Wolfsburg  Hamburg      2      1      H  11-12


23/03/13
         league         home           away  hgoal  agoal result season
date                                                                   
23/03/13     E2  Bournemouth           Bury      4      1      H  12-13
23/03/13     E2     Carlisle         Yeovil      3      3      D  12-13
23/03/13     E2   Hartlepool        Walsall      0      0      D  12-13
23/03/13     E2   Portsmouth       Coventry      2      0      H  12-13
23/03/13     E2      Preston  Leyton Orient      0      0      D  12-13
23/03/13     E2   Scunthorpe      Doncaster      2      3      A  12-13
23/03/13     E2      Swindon   Notts County      0      0      D  12-13


23/03/14
         league            home                  away  hgoal  agoal result  \
date                                                                         
23/03/14     D1      Leverkusen            Hoffenheim      2      3      A   
23/03/14     D1        Nurnberg         Ein Frankfurt      2      5      A   
23/03/14     T1        Besiktas  Akhisar Belediyespor      3      0      H   
23/03/14     T1     Erciyesspor             Sivasspor      1      1      D   
23/03/14     T1  Genclerbirligi            Elazigspor      3      1      H   
23/03/14    SP1           Betis            Ath Madrid      0      2      A   
23/03/14    SP1         Osasuna               Sevilla      1      2      A   
23/03/14    SP1     Real Madrid             Barcelona      3      4      A   
23/03/14    SP1        Valencia            Villarreal      2      1      H   
23/03/14     I1         Bologna              Cagliari      1      0      H   
23/03/14     I1         Catania              Juventus      0      1      A   
23/03/14     I1           Inter              Atalanta      1      2      A   
23/03/14     I1           Lazio                 Milan      1      1      D   
23/03/14     I1          Napoli            Fiorentina      0      1      A   
23/03/14     I1           Parma                 Genoa      1      1      D   
23/03/14     I1       Sampdoria                Verona      5      0      H   
23/03/14     I1         Udinese              Sassuolo      1      0      H   

         season  
date             
23/03/14  13-14  
23/03/14  13-14  
23/03/14  13-14  
23/03/14  13-14  
23/03/14  13-14  
23/03/14  13-14  
23/03/14  13-14  
23/03/14  13-14  
23/03/14  13-14  
23/03/14  13-14  
23/03/14  13-14  
23/03/14  13-14  
23/03/14  13-14  
23/03/14  13-14  
23/03/14  13-14  
23/03/14  13-14  
23/03/14  13-14  


23/04/12
         league     home    away  hgoal  agoal result season
date                                                        
23/04/12    SP1  Osasuna  Malaga      1      1      D  11-12


23/04/13
         league          home              away  hgoal  agoal result season
date                                                                       
23/04/13     E2  Crawley Town           Preston      1      0      H  12-13
23/04/13     E2         Crewe  Sheffield United      1      0      H  12-13
23/04/13     E2    Shrewsbury            Oldham      1      0      H  12-13


23/04/16
         league                  home           away  hgoal  agoal result  \
date                                                                        
23/04/16     T1  Akhisar Belediyespor       Besiktas      3      3      D   
23/04/16     T1            Buyuksehyr      Sivasspor      2      2      D   
23/04/16     T1           Osmanlispor    Antalyaspor      3      0      H   
23/04/16     D1               FC Koln      Darmstadt      4      1      H   
23/04/16     D1                Hertha  Bayern Munich      0      2      A   
23/04/16     D1            Ingolstadt       Hannover      2      2      D   
23/04/16     D1            Schalke 04     Leverkusen      2      3      A   
23/04/16     D1             Stuttgart       Dortmund      0      3      A   
23/04/16     D1             Wolfsburg       Augsburg      0      2      A   
23/04/16     I1                 Inter        Udinese      3      1      H   
23/04/16    SP1            Ath Madrid         Malaga      1      0      H   
23/04/16    SP1             Barcelona       Sp Gijon      6      0      H   
23/04/16    SP1                 Eibar      La Coruna      1      1      D   
23/04/16    SP1             Vallecano    Real Madrid      2      3      A   
23/04/16     E2              Bradford        Walsall      4      0      H   
23/04/16     E2                  Bury       Millwall      1      3      A   
23/04/16     E2            Colchester         Burton      0      3      A   
23/04/16     E2             Doncaster       Coventry      2      0      H   
23/04/16     E2        Fleetwood Town      Blackpool      0      0      D   
23/04/16     E2            Gillingham     Shrewsbury      2      3      A   
23/04/16     E2                Oldham          Crewe      1      0      H   
23/04/16     E2             Peterboro     Scunthorpe      0      2      A   
23/04/16     E2             Port Vale       Rochdale      4      1      H   
23/04/16     E2      Sheffield United       Barnsley      0      0      D   
23/04/16     E2               Swindon   Chesterfield      1      0      H   
23/04/16     E2                 Wigan       Southend      4      1      H   

         season  
date             
23/04/16  15-16  
23/04/16  15-16  
23/04/16  15-16  
23/04/16  15-16  
23/04/16  15-16  
23/04/16  15-16  
23/04/16  15-16  
23/04/16  15-16  
23/04/16  15-16  
23/04/16  15-16  
23/04/16  15-16  
23/04/16  15-16  
23/04/16  15-16  
23/04/16  15-16  
23/04/16  15-16  
23/04/16  15-16  
23/04/16  15-16  
23/04/16  15-16  
23/04/16  15-16  
23/04/16  15-16  
23/04/16  15-16  
23/04/16  15-16  
23/04/16  15-16  
23/04/16  15-16  
23/04/16  15-16  
23/04/16  15-16  


23/05/15
         league           home           away  hgoal  agoal result season
date                                                                     
23/05/15     D1  Bayern Munich          Mainz      2      0      H  14-15
23/05/15     D1       Dortmund  Werder Bremen      3      2      H  14-15
23/05/15     D1  Ein Frankfurt     Leverkusen      2      1      H  14-15
23/05/15     D1        FC Koln      Wolfsburg      2      2      D  14-15
23/05/15     D1        Hamburg     Schalke 04      2      0      H  14-15
23/05/15     D1       Hannover       Freiburg      2      1      H  14-15
23/05/15     D1     Hoffenheim         Hertha      2      1      H  14-15
23/05/15     D1     M'gladbach       Augsburg      1      3      A  14-15
23/05/15     D1      Paderborn      Stuttgart      1      2      A  14-15
23/05/15     I1          Genoa          Inter      3      2      H  14-15
23/05/15     I1       Juventus         Napoli      3      1      H  14-15
23/05/15     T1      Kasimpasa    Erciyesspor      3      3      D  14-15
23/05/15     T1      Konyaspor       Rizespor      1      1      D  14-15
23/05/15     T1    Trabzonspor  Balikesirspor      3      2      H  14-15
23/05/15    SP1        Almeria       Valencia      2      3      A  14-15
23/05/15    SP1     Ath Bilbao     Villarreal      4      0      H  14-15
23/05/15    SP1      Barcelona      La Coruna      2      2      D  14-15
23/05/15    SP1          Celta        Espanol      3      2      H  14-15
23/05/15    SP1          Eibar        Cordoba      3      0      H  14-15
23/05/15    SP1        Granada     Ath Madrid      0      0      D  14-15
23/05/15    SP1        Levante          Elche      0      0      D  14-15
23/05/15    SP1         Malaga        Sevilla      2      3      A  14-15
23/05/15    SP1    Real Madrid         Getafe      7      3      H  14-15
23/05/15    SP1      Vallecano       Sociedad      2      4      A  14-15


23/08/13
         league            home                  away  hgoal  agoal result  \
date                                                                         
23/08/13     D1        Dortmund         Werder Bremen      1      0      H   
23/08/13     T1  Genclerbirligi  Akhisar Belediyespor      3      0      H   
23/08/13     E2      Colchester              Carlisle      1      1      D   
23/08/13     E2          Wolves          Crawley Town      2      1      H   
23/08/13    SP1      Ath Bilbao               Osasuna      2      0      H   
23/08/13    SP1          Getafe               Almeria      2      2      D   

         season  
date             
23/08/13  13-14  
23/08/13  13-14  
23/08/13  13-14  
23/08/13  13-14  
23/08/13  13-14  
23/08/13  13-14  


23/08/14
         league                home           away  hgoal  agoal result season
date                                                                          
23/08/14     D1            Dortmund     Leverkusen      0      2      A  14-15
23/08/14     D1       Ein Frankfurt       Freiburg      1      0      H  14-15
23/08/14     D1             FC Koln        Hamburg      0      0      D  14-15
23/08/14     D1            Hannover     Schalke 04      2      1      H  14-15
23/08/14     D1              Hertha  Werder Bremen      2      2      D  14-15
23/08/14     D1          Hoffenheim       Augsburg      2      0      H  14-15
23/08/14     E2            Barnsley     Gillingham      4      1      H  14-15
23/08/14     E2            Bradford      Peterboro      0      1      A  14-15
23/08/14     E2          Colchester      Doncaster      0      1      A  14-15
23/08/14     E2      Fleetwood Town   Chesterfield      0      0      D  14-15
23/08/14     E2       Leyton Orient        Walsall      0      0      D  14-15
23/08/14     E2  Milton Keynes Dons       Coventry      0      0      D  14-15
23/08/14     E2           Port Vale   Notts County      0      2      A  14-15
23/08/14     E2             Preston         Oldham      1      0      H  14-15
23/08/14     E2            Rochdale   Bristol City      1      1      D  14-15
23/08/14     E2    Sheffield United   Crawley Town      1      0      H  14-15
23/08/14     E2             Swindon          Crewe      2      0      H  14-15
23/08/14     E2              Yeovil     Scunthorpe      1      1      D  14-15
23/08/14    SP1             Almeria        Espanol      1      1      D  14-15
23/08/14    SP1             Granada      La Coruna      2      1      H  14-15
23/08/14    SP1              Malaga     Ath Bilbao      1      0      H  14-15
23/08/14    SP1             Sevilla       Valencia      1      1      D  14-15


23/08/15
         league           home            away  hgoal  agoal result season
date                                                                      
23/08/15     T1    Antalyaspor  Genclerbirligi      3      1      H  15-16
23/08/15     T1      Bursaspor   Gaziantepspor      0      1      A  15-16
23/08/15     T1  Eskisehirspor       Sivasspor      4      2      H  15-16
23/08/15     T1       Rizespor      Fenerbahce      1      1      D  15-16
23/08/15     D1     Ingolstadt        Dortmund      0      4      A  15-16
23/08/15     D1     M'gladbach           Mainz      1      2      A  15-16
23/08/15     I1         Empoli          Chievo      1      3      A  15-16
23/08/15     I1     Fiorentina           Milan      2      0      H  15-16
23/08/15     I1      Frosinone          Torino      1      2      A  15-16
23/08/15     I1          Inter        Atalanta      1      0      H  15-16
23/08/15     I1       Juventus         Udinese      0      1      A  15-16
23/08/15     I1        Palermo           Genoa      1      0      H  15-16
23/08/15     I1      Sampdoria           Carpi      5      2      H  15-16
23/08/15     I1       Sassuolo          Napoli      2      1      H  15-16
23/08/15    SP1     Ath Bilbao       Barcelona      0      1      A  15-16
23/08/15    SP1          Betis      Villarreal      1      1      D  15-16
23/08/15    SP1        Levante           Celta      1      2      A  15-16
23/08/15    SP1       Sp Gijon     Real Madrid      0      0      D  15-16


23/09/11
         league         home        away  hgoal  agoal result season
date                                                                
23/09/11     D1    Stuttgart     Hamburg      1      2      A  11-12
23/09/11     T1  Kayserispor  Fenerbahce      0      1      A  11-12


23/09/12
         league           home                  away  hgoal  agoal result  \
date                                                                        
23/09/12    SP1     Ath Bilbao                Malaga      0      0      D   
23/09/12    SP1     Ath Madrid            Valladolid      2      1      H   
23/09/12    SP1        Levante              Sociedad      2      1      H   
23/09/12    SP1       Mallorca              Valencia      2      0      H   
23/09/12     I1       Atalanta               Palermo      1      0      H   
23/09/12     I1        Bologna               Pescara      1      1      D   
23/09/12     I1       Cagliari                  Roma      0      3      A   
23/09/12     I1        Catania                Napoli      0      0      D   
23/09/12     I1          Inter                 Siena      0      2      A   
23/09/12     I1          Lazio                 Genoa      0      1      A   
23/09/12     I1      Sampdoria                Torino      1      1      D   
23/09/12     I1        Udinese                 Milan      2      1      H   
23/09/12     T1     Elazigspor             Bursaspor      1      1      D   
23/09/12     T1    Galatasaray  Akhisar Belediyespor      3      0      H   
23/09/12     T1      Sivasspor             Kasimpasa      1      0      H   
23/09/12     D1     Hoffenheim              Hannover      3      1      H   
23/09/12     D1     Leverkusen            M'gladbach      1      1      D   
23/09/12     D1  Werder Bremen             Stuttgart      2      2      D   

         season  
date             
23/09/12  12-13  
23/09/12  12-13  
23/09/12  12-13  
23/09/12  12-13  
23/09/12  12-13  
23/09/12  12-13  
23/09/12  12-13  
23/09/12  12-13  
23/09/12  12-13  
23/09/12  12-13  
23/09/12  12-13  
23/09/12  12-13  
23/09/12  12-13  
23/09/12  12-13  
23/09/12  12-13  
23/09/12  12-13  
23/09/12  12-13  
23/09/12  12-13  


23/09/13
         league         home           away  hgoal  agoal result season
date                                                                   
23/09/13     T1  Kayserispor    Trabzonspor      0      1      A  13-14
23/09/13     E2    Brentford  Leyton Orient      0      2      A  13-14
23/09/13    SP1      Espanol     Ath Bilbao      3      2      H  13-14


23/09/14
         league           home        away  hgoal  agoal result season
date                                                                  
23/09/14     D1  Bayern Munich   Paderborn      4      0      H  14-15
23/09/14     D1  Ein Frankfurt       Mainz      2      2      D  14-15
23/09/14     D1     Hoffenheim    Freiburg      3      3      D  14-15
23/09/14     D1  Werder Bremen  Schalke 04      0      3      A  14-15
23/09/14     I1         Empoli       Milan      2      2      D  14-15
23/09/14    SP1          Celta   La Coruna      2      1      H  14-15
23/09/14    SP1    Real Madrid       Elche      5      1      H  14-15


23/09/15
         league        home           away  hgoal  agoal result season
date                                                                  
23/09/15     D1    Hannover      Stuttgart      1      3      A  15-16
23/09/15     D1  Hoffenheim       Dortmund      1      1      D  15-16
23/09/15     D1  Leverkusen          Mainz      1      0      H  15-16
23/09/15     D1  M'gladbach       Augsburg      4      2      H  15-16
23/09/15     D1  Schalke 04  Ein Frankfurt      2      0      H  15-16
23/09/15     I1       Carpi         Napoli      0      0      D  15-16
23/09/15     I1      Chievo         Torino      1      0      H  15-16
23/09/15     I1  Fiorentina        Bologna      2      0      H  15-16
23/09/15     I1       Inter         Verona      1      0      H  15-16
23/09/15     I1    Juventus      Frosinone      1      1      D  15-16
23/09/15     I1       Lazio          Genoa      2      0      H  15-16
23/09/15     I1     Palermo       Sassuolo      0      1      A  15-16
23/09/15     I1   Sampdoria           Roma      2      1      H  15-16
23/09/15    SP1  Ath Bilbao    Real Madrid      1      2      A  15-16
23/09/15    SP1       Celta      Barcelona      4      1      H  15-16
23/09/15    SP1  Las Palmas        Sevilla      2      0      H  15-16
23/09/15    SP1     Levante          Eibar      2      2      D  15-16
23/09/15    SP1      Malaga     Villarreal      0      1      A  15-16
23/09/15    SP1   Vallecano       Sp Gijon      2      1      H  15-16


23/10/11
         league           home            away  hgoal  agoal result season
date                                                                      
23/10/11    SP1     Ath Madrid        Mallorca      1      1      D  11-12
23/10/11    SP1          Betis       Vallecano      0      2      A  11-12
23/10/11    SP1        Osasuna        Zaragoza      3      0      H  11-12
23/10/11    SP1       Sociedad          Getafe      0      0      D  11-12
23/10/11    SP1       Valencia      Ath Bilbao      1      1      D  11-12
23/10/11    SP1     Villarreal         Levante      0      3      A  11-12
23/10/11     I1        Bologna           Lazio      0      2      A  11-12
23/10/11     I1       Cagliari          Napoli      0      0      D  11-12
23/10/11     I1          Inter          Chievo      1      0      H  11-12
23/10/11     I1          Lecce           Milan      3      4      A  11-12
23/10/11     I1          Parma        Atalanta      1      2      A  11-12
23/10/11     I1           Roma         Palermo      1      0      H  11-12
23/10/11     I1          Siena          Cesena      2      0      H  11-12
23/10/11     I1        Udinese          Novara      3      0      H  11-12
23/10/11     D1       Hannover   Bayern Munich      2      1      H  11-12
23/10/11     D1     Leverkusen      Schalke 04      0      1      A  11-12
23/10/11     T1     Ankaragucu        Orduspor      0      2      A  11-12
23/10/11     T1     Fenerbahce      Samsunspor      0      0      D  11-12
23/10/11     T1  Gaziantepspor  Genclerbirligi      3      0      H  11-12
23/10/11     T1    Kayserispor       Sivasspor      6      2      H  11-12


23/10/12
         league              home                away  hgoal  agoal result  \
date                                                                         
23/10/12     E2         Brentford            Coventry      2      1      H   
23/10/12     E2              Bury          Hartlepool      2      1      H   
23/10/12     E2          Carlisle              Oldham      3      1      H   
23/10/12     E2      Crawley Town  Milton Keynes Dons      2      0      H   
23/10/12     E2             Crewe             Swindon      2      1      H   
23/10/12     E2     Leyton Orient          Colchester      0      2      A   
23/10/12     E2      Notts County         Bournemouth      3      3      D   
23/10/12     E2        Scunthorpe             Preston      2      3      A   
23/10/12     E2  Sheffield United             Walsall      1      0      H   
23/10/12     E2        Shrewsbury              Yeovil      1      3      A   
23/10/12     E2         Stevenage          Portsmouth      2      1      H   
23/10/12     E2          Tranmere           Doncaster      1      2      A   

         season  
date             
23/10/12  12-13  
23/10/12  12-13  
23/10/12  12-13  
23/10/12  12-13  
23/10/12  12-13  
23/10/12  12-13  
23/10/12  12-13  
23/10/12  12-13  
23/10/12  12-13  
23/10/12  12-13  
23/10/12  12-13  
23/10/12  12-13  


23/10/15
         league           home                  away  hgoal  agoal result  \
date                                                                        
23/10/15     T1  Eskisehirspor           Kayserispor      1      3      A   
23/10/15     T1       Rizespor  Akhisar Belediyespor      0      2      A   
23/10/15     D1     Hoffenheim               Hamburg      0      1      A   
23/10/15    SP1      Vallecano               Espanol      3      0      H   

         season  
date             
23/10/15  15-16  
23/10/15  15-16  
23/10/15  15-16  
23/10/15  15-16  


23/11/12
         league                home                  away  hgoal  agoal  \
date                                                                      
23/11/12    SP1            Sociedad               Osasuna      0      0   
23/11/12     T1            Besiktas  Akhisar Belediyespor      3      1   
23/11/12     T1  Mersin Idman Yurdu           Karabukspor      2      1   
23/11/12     D1  Fortuna Dusseldorf               Hamburg      2      0   

         result season  
date                    
23/11/12      D  12-13  
23/11/12      H  12-13  
23/11/12      H  12-13  
23/11/12      H  12-13  


23/11/13
         league                home              away  hgoal  agoal result  \
date                                                                         
23/11/13     D1            Augsburg        Hoffenheim      2      0      H   
23/11/13     D1        Braunschweig          Freiburg      0      1      A   
23/11/13     D1            Dortmund     Bayern Munich      0      3      A   
23/11/13     D1       Ein Frankfurt        Schalke 04      3      3      D   
23/11/13     D1              Hertha        Leverkusen      0      1      A   
23/11/13     D1            Nurnberg         Wolfsburg      1      1      D   
23/11/13     T1           Bursaspor         Kasimpasa      1      1      D   
23/11/13     T1         Galatasaray         Sivasspor      2      1      H   
23/11/13     T1            Rizespor       Kayserispor      0      2      A   
23/11/13     E2        Bristol City  Sheffield United      0      1      A   
23/11/13     E2            Coventry          Tranmere      1      5      A   
23/11/13     E2        Crawley Town           Walsall      0      0      D   
23/11/13     E2               Crewe         Port Vale      1      2      A   
23/11/13     E2          Gillingham            Oldham      0      1      A   
23/11/13     E2  Milton Keynes Dons          Bradford      2      3      A   
23/11/13     E2           Peterboro         Stevenage      0      1      A   
23/11/13     E2             Preston        Colchester      1      1      D   
23/11/13     E2           Rotherham          Carlisle      0      0      D   
23/11/13     E2          Shrewsbury      Notts County      1      0      H   
23/11/13     E2             Swindon     Leyton Orient      1      3      A   
23/11/13     E2              Wolves         Brentford      0      0      D   
23/11/13    SP1             Almeria       Real Madrid      0      5      A   
23/11/13    SP1          Ath Madrid            Getafe      7      0      H   
23/11/13    SP1           Barcelona           Granada      4      0      H   
23/11/13    SP1            Sociedad             Celta      4      3      H   
23/11/13     I1               Milan             Genoa      1      1      D   
23/11/13     I1              Napoli             Parma      0      1      A   
23/11/13     I1              Verona            Chievo      0      1      A   

         season  
date             
23/11/13  13-14  
23/11/13  13-14  
23/11/13  13-14  
23/11/13  13-14  
23/11/13  13-14  
23/11/13  13-14  
23/11/13  13-14  
23/11/13  13-14  
23/11/13  13-14  
23/11/13  13-14  
23/11/13  13-14  
23/11/13  13-14  
23/11/13  13-14  
23/11/13  13-14  
23/11/13  13-14  
23/11/13  13-14  
23/11/13  13-14  
23/11/13  13-14  
23/11/13  13-14  
23/11/13  13-14  
23/11/13  13-14  
23/11/13  13-14  
23/11/13  13-14  
23/11/13  13-14  
23/11/13  13-14  
23/11/13  13-14  
23/11/13  13-14  
23/11/13  13-14  


23/11/14
         league            home           away  hgoal  agoal result season
date                                                                      
23/11/14     D1         Hamburg  Werder Bremen      2      0      H  14-15
23/11/14     D1       Stuttgart       Augsburg      0      1      A  14-15
23/11/14     I1          Cesena      Sampdoria      1      1      D  14-15
23/11/14     I1           Milan          Inter      1      1      D  14-15
23/11/14     I1          Napoli       Cagliari      3      3      D  14-15
23/11/14     I1           Parma         Empoli      0      2      A  14-15
23/11/14     I1          Torino       Sassuolo      0      1      A  14-15
23/11/14     I1         Udinese         Chievo      1      1      D  14-15
23/11/14     I1          Verona     Fiorentina      1      2      A  14-15
23/11/14     T1        Besiktas      Kasimpasa      2      0      H  14-15
23/11/14     T1   Eskisehirspor    Erciyesspor      2      1      H  14-15
23/11/14     T1  Genclerbirligi    Karabukspor      2      2      D  14-15
23/11/14     T1       Konyaspor  Gaziantepspor      2      0      H  14-15
23/11/14    SP1           Elche        Cordoba      2      2      D  14-15
23/11/14    SP1         Levante       Valencia      2      1      H  14-15
23/11/14    SP1       Vallecano          Celta      1      0      H  14-15
23/11/14    SP1      Villarreal         Getafe      2      1      H  14-15


23/11/15
         league           home        away  hgoal  agoal result season
date                                                                  
23/11/15     T1  Gaziantepspor  Buyuksehyr      0      1      A  15-16
23/11/15    SP1         Getafe   Vallecano      1      1      D  15-16


23/12/12
         league           home                away  hgoal  agoal result season
date                                                                          
23/12/12     T1    Antalyaspor       Eskisehirspor      2      1      H  12-13
23/12/12     T1      Bursaspor      Genclerbirligi      0      0      D  12-13
23/12/12     T1  Gaziantepspor  Mersin Idman Yurdu      2      1      H  12-13
23/12/12     T1      Sivasspor          Elazigspor      3      1      H  12-13
23/12/12     T1    Trabzonspor         Galatasaray      0      0      D  12-13


23/12/13
         league                  home         away  hgoal  agoal result season
date                                                                          
23/12/13     T1  Akhisar Belediyespor    Sivasspor      2      1      H  13-14
23/12/13     T1             Bursaspor  Erciyesspor      3      1      H  13-14


24/01/12
         league                home                away  hgoal  agoal result  \
date                                                                           
24/01/12     T1            Besiktas       Gaziantepspor      3      2      H   
24/01/12     T1          Manisaspor          Samsunspor      1      1      D   
24/01/12     T1  Mersin Idman Yurdu         Kayserispor      1      2      A   
24/01/12     T1           Sivasspor         Antalyaspor      2      1      H   
24/01/12     E2        Notts County             Preston      0      0      D   
24/01/12     E2          Scunthorpe      Sheffield Weds      1      3      A   
24/01/12     E2           Stevenage  Milton Keynes Dons      4      2      H   

         season  
date             
24/01/12  11-12  
24/01/12  11-12  
24/01/12  11-12  
24/01/12  11-12  
24/01/12  11-12  
24/01/12  11-12  
24/01/12  11-12  


24/01/14
         league        home           away  hgoal  agoal result season
date                                                                  
24/01/14     D1  M'gladbach  Bayern Munich      0      2      A  13-14
24/01/14     T1   Kasimpasa    Karabukspor      0      0      D  13-14
24/01/14     E2   Brentford     Gillingham      2      1      H  13-14
24/01/14    SP1       Celta          Betis      4      2      H  13-14


24/01/15
         league                  home                away  hgoal  agoal  \
date                                                                      
24/01/15     I1              Cagliari            Sassuolo      2      1   
24/01/15     I1                 Lazio               Milan      3      1   
24/01/15     T1  Akhisar Belediyespor       Eskisehirspor      2      2   
24/01/15     T1            Buyuksehyr  Mersin Idman Yurdu      2      2   
24/01/15     T1         Gaziantepspor       Balikesirspor      1      0   
24/01/15     T1             Kasimpasa          Fenerbahce      0      3   
24/01/15     E2            Colchester       Leyton Orient      2      0   
24/01/15     E2        Fleetwood Town        Crawley Town      1      0   
24/01/15     E2            Gillingham              Oldham      3      2   
24/01/15     E2    Milton Keynes Dons            Barnsley      2      0   
24/01/15     E2          Notts County           Peterboro      1      2   
24/01/15    SP1            Ath Madrid           Vallecano      3      1   
24/01/15    SP1               Cordoba         Real Madrid      1      2   
24/01/15    SP1                 Elche           Barcelona      0      6   
24/01/15    SP1              Sociedad               Eibar      1      0   
24/01/15    SP1            Villarreal             Levante      1      0   

         result season  
date                    
24/01/15      H  14-15  
24/01/15      H  14-15  
24/01/15      D  14-15  
24/01/15      D  14-15  
24/01/15      H  14-15  
24/01/15      A  14-15  
24/01/15      H  14-15  
24/01/15      H  14-15  
24/01/15      H  14-15  
24/01/15      H  14-15  
24/01/15      A  14-15  
24/01/15      H  14-15  
24/01/15      A  14-15  
24/01/15      A  14-15  
24/01/15      H  14-15  
24/01/15      H  14-15  


24/01/16
         league            home           away  hgoal  agoal result season
date                                                                      
24/01/16     T1      Fenerbahce       Rizespor      2      1      H  15-16
24/01/16     T1   Gaziantepspor      Bursaspor      2      3      A  15-16
24/01/16     T1  Genclerbirligi    Antalyaspor      1      0      H  15-16
24/01/16     T1       Sivasspor  Eskisehirspor      1      2      A  15-16
24/01/16     D1   Ein Frankfurt      Wolfsburg      3      2      H  15-16
24/01/16     D1      Schalke 04  Werder Bremen      1      3      A  15-16
24/01/16     I1      Fiorentina         Torino      2      0      H  15-16
24/01/16     I1           Inter          Carpi      1      1      D  15-16
24/01/16     I1        Juventus           Roma      1      0      H  15-16
24/01/16     I1           Lazio         Chievo      4      1      H  15-16
24/01/16     I1         Palermo        Udinese      4      1      H  15-16
24/01/16     I1       Sampdoria         Napoli      2      4      A  15-16
24/01/16     I1        Sassuolo        Bologna      0      2      A  15-16
24/01/16     I1          Verona          Genoa      1      1      D  15-16
24/01/16    SP1      Ath Bilbao          Eibar      5      2      H  15-16
24/01/16    SP1      Ath Madrid        Sevilla      0      0      D  15-16
24/01/16    SP1           Betis    Real Madrid      1      1      D  15-16
24/01/16    SP1       La Coruna       Valencia      1      1      D  15-16


24/02/12
         league        home         away  hgoal  agoal result season
date                                                                
24/02/12     D1  M'gladbach      Hamburg      1      1      D  11-12
24/02/12     T1    Orduspor  Kayserispor      1      0      H  11-12


24/02/13
         league            home                  away  hgoal  agoal result  \
date                                                                         
24/02/13    SP1      Ath Madrid               Espanol      1      0      H   
24/02/13    SP1           Betis                Malaga      3      0      H   
24/02/13    SP1           Celta               Granada      2      1      H   
24/02/13    SP1       Vallecano            Valladolid      1      2      A   
24/02/13     I1        Atalanta                  Roma      2      3      A   
24/02/13     I1        Cagliari                Torino      4      3      H   
24/02/13     I1           Inter                 Milan      1      1      D   
24/02/13     I1        Juventus                 Siena      3      0      H   
24/02/13     I1           Parma               Catania      1      2      A   
24/02/13     I1       Sampdoria                Chievo      2      0      H   
24/02/13     T1      Fenerbahce             Kasimpasa      3      1      H   
24/02/13     T1     Karabukspor  Akhisar Belediyespor      0      2      A   
24/02/13     T1     Kayserispor        Genclerbirligi      1      0      H   
24/02/13     D1  Greuther Furth            Leverkusen      0      0      D   
24/02/13     D1      M'gladbach              Dortmund      1      1      D   

         season  
date             
24/02/13  12-13  
24/02/13  12-13  
24/02/13  12-13  
24/02/13  12-13  
24/02/13  12-13  
24/02/13  12-13  
24/02/13  12-13  
24/02/13  12-13  
24/02/13  12-13  
24/02/13  12-13  
24/02/13  12-13  
24/02/13  12-13  
24/02/13  12-13  
24/02/13  12-13  
24/02/13  12-13  


24/02/14
         league        home        away  hgoal  agoal result season
date                                                               
24/02/14     T1  Elazigspor  Fenerbahce      1      1      D  13-14
24/02/14    SP1     Espanol  Villarreal      1      2      A  13-14
24/02/14     I1      Napoli       Genoa      1      1      D  13-14
24/02/14     I1       Parma  Fiorentina      2      2      D  13-14


24/02/15
         league        home              away  hgoal  agoal result season
date                                                                     
24/02/15     I1   Sampdoria             Genoa      1      1      D  14-15
24/02/15     E2   Doncaster      Bristol City      1      3      A  14-15
24/02/15     E2     Preston           Walsall      1      0      H  14-15
24/02/15     E2    Rochdale  Sheffield United      1      2      A  14-15
24/02/15     E2  Scunthorpe          Barnsley      0      1      A  14-15
24/02/15     E2     Swindon          Bradford      2      1      H  14-15


24/03/12
         league           home                away  hgoal  agoal result season
date                                                                          
24/03/12    SP1         Getafe            Valencia      3      1      H  11-12
24/03/12    SP1       Mallorca           Barcelona      0      2      A  11-12
24/03/12    SP1    Real Madrid            Sociedad      5      1      H  11-12
24/03/12     I1          Milan                Roma      2      1      H  11-12
24/03/12     I1        Palermo             Udinese      1      1      D  11-12
24/03/12     D1  Bayern Munich            Hannover      2      1      H  11-12
24/03/12     D1       Freiburg      Kaiserslautern      2      0      H  11-12
24/03/12     D1          Mainz              Hertha      1      3      A  11-12
24/03/12     D1     M'gladbach          Hoffenheim      1      2      A  11-12
24/03/12     D1     Schalke 04          Leverkusen      2      0      H  11-12
24/03/12     D1  Werder Bremen            Augsburg      1      1      D  11-12
24/03/12     T1     Fenerbahce           Bursaspor      1      0      H  11-12
24/03/12     E2      Brentford            Rochdale      2      0      H  11-12
24/03/12     E2     Colchester            Carlisle      1      1      D  11-12
24/03/12     E2   Huddersfield            Charlton      1      0      H  11-12
24/03/12     E2  Leyton Orient      Sheffield Weds      0      1      A  11-12
24/03/12     E2         Oldham         Bournemouth      1      0      H  11-12
24/03/12     E2        Preston                Bury      1      1      D  11-12
24/03/12     E2     Scunthorpe        Notts County      0      0      D  11-12
24/03/12     E2       Tranmere              Exeter      2      0      H  11-12
24/03/12     E2        Walsall           Stevenage      1      1      D  11-12
24/03/12     E2        Wycombe  Milton Keynes Dons      1      1      D  11-12
24/03/12     E2         Yeovil          Hartlepool      0      1      A  11-12


24/03/13
         league      home       away  hgoal  agoal result season
date                                                            
24/03/13     E2  Tranmere  Stevenage      3      1      H  12-13


24/03/14
         league           home        away  hgoal  agoal result season
date                                                                  
24/03/14     T1  Gaziantepspor  Fenerbahce      0      3      A  13-14
24/03/14    SP1        Almeria    Sociedad      4      3      H  13-14


24/03/15
         league              home        away  hgoal  agoal result season
date                                                                     
24/03/15     E2            Oldham    Rochdale      3      0      H  14-15
24/03/15     E2  Sheffield United  Scunthorpe      4      0      H  14-15


24/04/12
         league      home     away  hgoal  agoal result season
date                                                          
24/04/12     I1  Atalanta   Chievo      1      0      H  11-12
24/04/12     I1  Cagliari  Catania      3      0      H  11-12


24/04/15
         league       home                away  hgoal  agoal result season
date                                                                      
24/04/15     D1      Mainz          Schalke 04      2      0      H  14-15
24/04/15     T1  Sivasspor  Mersin Idman Yurdu      1      2      A  14-15
24/04/15    SP1    Cordoba          Ath Bilbao      0      1      A  14-15


24/04/16
         league                home           away  hgoal  agoal result season
date                                                                          
24/04/16     T1         Galatasaray      Kasimpasa      4      1      H  15-16
24/04/16     T1           Konyaspor       Rizespor      3      1      H  15-16
24/04/16     T1  Mersin Idman Yurdu  Eskisehirspor      1      2      A  15-16
24/04/16     T1         Trabzonspor     Fenerbahce      0      4      A  15-16
24/04/16     D1       Ein Frankfurt          Mainz      2      1      H  15-16
24/04/16     D1          M'gladbach     Hoffenheim      3      1      H  15-16
24/04/16     I1            Atalanta         Chievo      1      0      H  15-16
24/04/16     I1             Bologna          Genoa      2      0      H  15-16
24/04/16     I1          Fiorentina       Juventus      1      2      A  15-16
24/04/16     I1           Frosinone        Palermo      0      2      A  15-16
24/04/16     I1           Sampdoria          Lazio      2      1      H  15-16
24/04/16     I1              Torino       Sassuolo      1      3      A  15-16
24/04/16    SP1              Getafe       Valencia      2      2      D  15-16
24/04/16    SP1             Levante     Ath Bilbao      2      2      D  15-16
24/04/16    SP1             Sevilla          Betis      2      0      H  15-16
24/04/16    SP1          Villarreal       Sociedad      0      0      D  15-16


24/05/15
         league           home           away  hgoal  agoal result season
date                                                                     
24/05/15     I1         Cesena       Cagliari      0      1      A  14-15
24/05/15     I1         Chievo       Atalanta      1      1      D  14-15
24/05/15     I1         Empoli      Sampdoria      1      1      D  14-15
24/05/15     I1          Milan         Torino      3      0      H  14-15
24/05/15     I1        Palermo     Fiorentina      2      3      A  14-15
24/05/15     I1          Parma         Verona      2      2      D  14-15
24/05/15     I1        Udinese       Sassuolo      0      1      A  14-15
24/05/15     T1    Galatasaray       Besiktas      2      0      H  14-15
24/05/15     T1  Gaziantepspor  Eskisehirspor      3      2      H  14-15
24/05/15     T1    Karabukspor      Sivasspor      2      1      H  14-15


24/08/12
         league       home           away  hgoal  agoal result season
date                                                                 
24/08/12     T1  Kasimpasa    Karabukspor      2      1      H  12-13
24/08/12     D1   Dortmund  Werder Bremen      2      1      H  12-13


24/08/13
         league                home              away  hgoal  agoal result  \
date                                                                         
24/08/13     D1       Bayern Munich          Nurnberg      2      0      H   
24/08/13     D1            Hannover        Schalke 04      2      1      H   
24/08/13     D1              Hertha           Hamburg      1      0      H   
24/08/13     D1          Hoffenheim          Freiburg      3      3      D   
24/08/13     D1          Leverkusen        M'gladbach      4      2      H   
24/08/13     D1               Mainz         Wolfsburg      2      0      H   
24/08/13     T1          Fenerbahce     Eskisehirspor      1      0      H   
24/08/13     T1       Gaziantepspor       Antalyaspor      0      0      D   
24/08/13     T1           Kasimpasa       Kayserispor      3      1      H   
24/08/13     E2            Bradford  Sheffield United      2      0      H   
24/08/13     E2           Brentford           Walsall      1      0      H   
24/08/13     E2       Leyton Orient             Crewe      2      0      H   
24/08/13     E2  Milton Keynes Dons      Bristol City      2      2      D   
24/08/13     E2        Notts County         Stevenage      0      1      A   
24/08/13     E2              Oldham         Port Vale      3      1      H   
24/08/13     E2           Rotherham        Shrewsbury      2      2      D   
24/08/13     E2             Swindon        Gillingham      2      2      D   
24/08/13     E2            Tranmere         Peterboro      0      5      A   
24/08/13    SP1               Elche          Sociedad      1      1      D   
24/08/13    SP1             Espanol          Valencia      3      1      H   
24/08/13    SP1          Villarreal        Valladolid      2      1      H   
24/08/13     I1           Sampdoria          Juventus      0      1      A   
24/08/13     I1              Verona             Milan      2      1      H   

         season  
date             
24/08/13  13-14  
24/08/13  13-14  
24/08/13  13-14  
24/08/13  13-14  
24/08/13  13-14  
24/08/13  13-14  
24/08/13  13-14  
24/08/13  13-14  
24/08/13  13-14  
24/08/13  13-14  
24/08/13  13-14  
24/08/13  13-14  
24/08/13  13-14  
24/08/13  13-14  
24/08/13  13-14  
24/08/13  13-14  
24/08/13  13-14  
24/08/13  13-14  
24/08/13  13-14  
24/08/13  13-14  
24/08/13  13-14  
24/08/13  13-14  
24/08/13  13-14  


24/08/14
         league        home        away  hgoal  agoal result season
date                                                               
24/08/14     D1  M'gladbach   Stuttgart      1      1      D  14-15
24/08/14     D1   Paderborn       Mainz      2      2      D  14-15
24/08/14    SP1   Barcelona       Elche      3      0      H  14-15
24/08/14    SP1       Celta      Getafe      3      1      H  14-15
24/08/14    SP1       Eibar    Sociedad      1      0      H  14-15
24/08/14    SP1     Levante  Villarreal      0      2      A  14-15


24/08/15
         league         home         away  hgoal  agoal result season
date                                                                 
24/08/15     T1  Galatasaray  Osmanlispor      1      2      A  15-16
24/08/15    SP1      Granada        Eibar      1      3      A  15-16


24/09/11
         league                home                away  hgoal  agoal result  \
date                                                                           
24/09/11    SP1          Ath Bilbao          Villarreal      1      1      D   
24/09/11    SP1           Barcelona          Ath Madrid      5      0      H   
24/09/11    SP1         Real Madrid           Vallecano      6      2      H   
24/09/11    SP1             Sevilla            Valencia      1      0      H   
24/09/11     I1             Bologna               Inter      1      3      A   
24/09/11     I1               Milan              Cesena      1      0      H   
24/09/11     I1              Napoli          Fiorentina      0      0      D   
24/09/11     D1            Augsburg            Hannover      0      0      D   
24/09/11     D1       Bayern Munich          Leverkusen      3      0      H   
24/09/11     D1               Mainz            Dortmund      1      2      A   
24/09/11     D1          M'gladbach            Nurnberg      1      0      H   
24/09/11     D1          Schalke 04            Freiburg      4      2      H   
24/09/11     D1           Wolfsburg      Kaiserslautern      1      0      H   
24/09/11     T1          Manisaspor          Buyuksehyr      0      2      A   
24/09/11     T1  Mersin Idman Yurdu       Gaziantepspor      2      0      H   
24/09/11     T1         Trabzonspor         Karabukspor      3      1      H   
24/09/11     E2         Bournemouth          Hartlepool      1      2      A   
24/09/11     E2                Bury  Milton Keynes Dons      0      0      D   
24/09/11     E2            Carlisle           Stevenage      1      0      H   
24/09/11     E2            Charlton        Chesterfield      3      1      H   
24/09/11     E2          Colchester             Walsall      1      0      H   
24/09/11     E2        Huddersfield       Leyton Orient      2      2      D   
24/09/11     E2        Notts County            Rochdale      2      0      H   
24/09/11     E2              Oldham           Brentford      0      2      A   
24/09/11     E2             Preston            Tranmere      2      1      H   
24/09/11     E2          Scunthorpe              Yeovil      2      1      H   
24/09/11     E2      Sheffield Weds              Exeter      3      0      H   
24/09/11     E2             Wycombe    Sheffield United      1      0      H   

         season  
date             
24/09/11  11-12  
24/09/11  11-12  
24/09/11  11-12  
24/09/11  11-12  
24/09/11  11-12  
24/09/11  11-12  
24/09/11  11-12  
24/09/11  11-12  
24/09/11  11-12  
24/09/11  11-12  
24/09/11  11-12  
24/09/11  11-12  
24/09/11  11-12  
24/09/11  11-12  
24/09/11  11-12  
24/09/11  11-12  
24/09/11  11-12  
24/09/11  11-12  
24/09/11  11-12  
24/09/11  11-12  
24/09/11  11-12  
24/09/11  11-12  
24/09/11  11-12  
24/09/11  11-12  
24/09/11  11-12  
24/09/11  11-12  
24/09/11  11-12  
24/09/11  11-12  


24/09/12
         league        home         away  hgoal  agoal result season
date                                                                
24/09/12    SP1   La Coruna      Sevilla      0      2      A  12-13
24/09/12    SP1   Vallecano  Real Madrid      0      2      A  12-13
24/09/12     T1  Fenerbahce  Trabzonspor      0      0      D  12-13


24/09/13
         league        home        away  hgoal  agoal result season
date                                                               
24/09/13    SP1  Ath Madrid     Osasuna      2      1      H  13-14
24/09/13    SP1   Barcelona    Sociedad      4      1      H  13-14
24/09/13    SP1     Levante  Valladolid      1      1      D  13-14
24/09/13    SP1      Malaga     Almeria      2      0      H  13-14
24/09/13     I1     Udinese       Genoa      1      0      H  13-14


24/09/14
         league        home        away  hgoal  agoal result season
date                                                               
24/09/14     D1    Dortmund   Stuttgart      2      2      D  14-15
24/09/14     D1    Hannover     FC Koln      1      0      H  14-15
24/09/14     D1      Hertha   Wolfsburg      1      0      H  14-15
24/09/14     D1  Leverkusen    Augsburg      1      0      H  14-15
24/09/14     D1  M'gladbach     Hamburg      1      0      H  14-15
24/09/14     I1    Cagliari      Torino      1      2      A  14-15
24/09/14     I1  Fiorentina    Sassuolo      0      0      D  14-15
24/09/14     I1       Inter    Atalanta      2      0      H  14-15
24/09/14     I1    Juventus      Cesena      3      0      H  14-15
24/09/14     I1      Napoli     Palermo      3      3      D  14-15
24/09/14     I1       Parma        Roma      1      2      A  14-15
24/09/14     I1   Sampdoria      Chievo      2      1      H  14-15
24/09/14     I1      Verona       Genoa      2      2      D  14-15
24/09/14    SP1     Almeria  Ath Madrid      0      1      A  14-15
24/09/14    SP1       Eibar  Villarreal      1      1      D  14-15
24/09/14    SP1     Granada     Levante      0      1      A  14-15
24/09/14    SP1      Malaga   Barcelona      0      0      D  14-15
24/09/14    SP1     Sevilla    Sociedad      1      0      H  14-15
24/09/14    SP1   Vallecano  Ath Bilbao      2      1      H  14-15


24/09/15
         league    home       away  hgoal  agoal result season
date                                                          
24/09/15     I1  Empoli   Atalanta      0      1      A  15-16
24/09/15    SP1   Betis  La Coruna      1      2      A  15-16


24/10/11
         league                home      away  hgoal  agoal result season
date                                                                     
24/10/11     T1  Mersin Idman Yurdu  Besiktas      0      1      A  11-12


24/10/14
         league           home                  away  hgoal  agoal result  \
date                                                                        
24/10/14     D1  Werder Bremen               FC Koln      0      1      A   
24/10/14     T1    Karabukspor  Akhisar Belediyespor      2      1      H   
24/10/14     T1      Kasimpasa             Konyaspor      2      0      H   
24/10/14    SP1          Celta               Levante      3      0      H   

         season  
date             
24/10/14  14-15  
24/10/14  14-15  
24/10/14  14-15  
24/10/14  14-15  


24/10/15
         league              home                away  hgoal  agoal result  \
date                                                                         
24/10/15     T1     Gaziantepspor  Mersin Idman Yurdu      1      0      H   
24/10/15     T1    Genclerbirligi         Osmanlispor      1      0      H   
24/10/15     T1         Kasimpasa           Bursaspor      0      1      A   
24/10/15     T1         Sivasspor         Trabzonspor      0      2      A   
24/10/15     D1     Bayern Munich             FC Koln      4      0      H   
24/10/15     D1         Darmstadt           Wolfsburg      0      1      A   
24/10/15     D1          Hannover       Ein Frankfurt      1      2      A   
24/10/15     D1        Ingolstadt              Hertha      0      1      A   
24/10/15     D1        Leverkusen           Stuttgart      4      3      H   
24/10/15     D1             Mainz       Werder Bremen      1      3      A   
24/10/15     I1             Carpi             Bologna      1      2      A   
24/10/15     I1            Empoli               Genoa      2      0      H   
24/10/15     I1           Palermo               Inter      1      1      D   
24/10/15    SP1             Celta         Real Madrid      1      3      A   
24/10/15    SP1           Granada               Betis      1      1      D   
24/10/15    SP1            Malaga           La Coruna      2      0      H   
24/10/15    SP1           Sevilla              Getafe      5      0      H   
24/10/15     E2          Barnsley      Fleetwood Town      0      1      A   
24/10/15     E2         Blackpool               Crewe      2      0      H   
24/10/15     E2          Bradford               Wigan      1      1      D   
24/10/15     E2            Burton           Port Vale      2      0      H   
24/10/15     E2      Chesterfield          Scunthorpe      0      3      A   
24/10/15     E2        Colchester             Walsall      4      4      D   
24/10/15     E2        Gillingham            Southend      1      1      D   
24/10/15     E2         Peterboro           Doncaster      4      0      H   
24/10/15     E2          Rochdale              Oldham      0      0      D   
24/10/15     E2  Sheffield United            Millwall      1      2      A   
24/10/15     E2        Shrewsbury                Bury      2      0      H   
24/10/15     E2           Swindon            Coventry      2      2      D   

         season  
date             
24/10/15  15-16  
24/10/15  15-16  
24/10/15  15-16  
24/10/15  15-16  
24/10/15  15-16  
24/10/15  15-16  
24/10/15  15-16  
24/10/15  15-16  
24/10/15  15-16  
24/10/15  15-16  
24/10/15  15-16  
24/10/15  15-16  
24/10/15  15-16  
24/10/15  15-16  
24/10/15  15-16  
24/10/15  15-16  
24/10/15  15-16  
24/10/15  15-16  
24/10/15  15-16  
24/10/15  15-16  
24/10/15  15-16  
24/10/15  15-16  
24/10/15  15-16  
24/10/15  15-16  
24/10/15  15-16  
24/10/15  15-16  
24/10/15  15-16  
24/10/15  15-16  
24/10/15  15-16  


24/11/12
         league                home              away  hgoal  agoal result  \
date                                                                         
24/11/12    SP1               Betis       Real Madrid      1      0      H   
24/11/12    SP1              Malaga          Valencia      4      0      H   
24/11/12    SP1          Valladolid           Granada      1      0      H   
24/11/12    SP1           Vallecano          Mallorca      2      0      H   
24/11/12     I1             Palermo           Catania      3      1      H   
24/11/12     T1           Bursaspor       Antalyaspor      1      1      D   
24/11/12     T1          Elazigspor       Galatasaray      0      1      A   
24/11/12     T1           Kasimpasa          Orduspor      1      1      D   
24/11/12     E2           Brentford  Sheffield United      2      0      H   
24/11/12     E2                Bury       Bournemouth      2      2      D   
24/11/12     E2            Coventry        Portsmouth      1      1      D   
24/11/12     E2               Crewe      Crawley Town      2      0      H   
24/11/12     E2           Doncaster        Scunthorpe      4      0      H   
24/11/12     E2       Leyton Orient           Preston      2      0      H   
24/11/12     E2  Milton Keynes Dons        Colchester      5      1      H   
24/11/12     E2        Notts County           Swindon      1      0      H   
24/11/12     E2              Oldham        Shrewsbury      1      0      H   
24/11/12     E2           Stevenage          Tranmere      1      1      D   
24/11/12     E2             Walsall        Hartlepool      1      1      D   
24/11/12     E2              Yeovil          Carlisle      1      3      A   
24/11/12     D1       Bayern Munich          Hannover      5      0      H   
24/11/12     D1      Greuther Furth          Nurnberg      0      0      D   
24/11/12     D1               Mainz          Dortmund      1      2      A   
24/11/12     D1          Schalke 04     Ein Frankfurt      1      1      D   
24/11/12     D1           Wolfsburg     Werder Bremen      1      1      D   

         season  
date             
24/11/12  12-13  
24/11/12  12-13  
24/11/12  12-13  
24/11/12  12-13  
24/11/12  12-13  
24/11/12  12-13  
24/11/12  12-13  
24/11/12  12-13  
24/11/12  12-13  
24/11/12  12-13  
24/11/12  12-13  
24/11/12  12-13  
24/11/12  12-13  
24/11/12  12-13  
24/11/12  12-13  
24/11/12  12-13  
24/11/12  12-13  
24/11/12  12-13  
24/11/12  12-13  
24/11/12  12-13  
24/11/12  12-13  
24/11/12  12-13  
24/11/12  12-13  
24/11/12  12-13  
24/11/12  12-13  


24/11/13
         league           home            away  hgoal  agoal result season
date                                                                      
24/11/13     D1        Hamburg        Hannover      3      1      H  13-14
24/11/13     D1  Werder Bremen           Mainz      2      3      A  13-14
24/11/13     T1    Antalyaspor      Fenerbahce      1      2      A  13-14
24/11/13     T1    Erciyesspor  Genclerbirligi      1      0      H  13-14
24/11/13     T1  Gaziantepspor      Elazigspor      3      1      H  13-14
24/11/13     T1    Trabzonspor   Eskisehirspor      1      0      H  13-14
24/11/13    SP1          Elche        Valencia      2      1      H  13-14
24/11/13    SP1        Levante      Villarreal      0      3      A  13-14
24/11/13    SP1        Sevilla           Betis      4      0      H  13-14
24/11/13    SP1      Vallecano         Espanol      1      4      A  13-14
24/11/13     I1        Bologna           Inter      1      1      D  13-14
24/11/13     I1        Livorno        Juventus      0      2      A  13-14
24/11/13     I1      Sampdoria           Lazio      1      1      D  13-14
24/11/13     I1       Sassuolo        Atalanta      2      0      H  13-14
24/11/13     I1         Torino         Catania      4      1      H  13-14
24/11/13     I1        Udinese      Fiorentina      1      0      H  13-14


24/11/14
         league           home        away  hgoal  agoal result season
date                                                                  
24/11/14     I1          Genoa     Palermo      1      1      D  14-15
24/11/14     T1  Balikesirspor   Sivasspor      1      3      A  14-15
24/11/14     T1      Bursaspor  Fenerbahce      1      1      D  14-15
24/11/14    SP1        Granada     Almeria      0      0      D  14-15


24/11/15
         league              home          away  hgoal  agoal result season
date                                                                       
24/11/15     E2          Bradford      Coventry      0      0      D  15-16
24/11/15     E2              Bury    Scunthorpe      1      2      A  15-16
24/11/15     E2        Colchester         Crewe      2      3      A  15-16
24/11/15     E2         Doncaster  Chesterfield      3      0      H  15-16
24/11/15     E2    Fleetwood Town      Millwall      2      1      H  15-16
24/11/15     E2        Gillingham      Rochdale      2      0      H  15-16
24/11/15     E2            Oldham      Southend      2      5      A  15-16
24/11/15     E2         Peterboro      Barnsley      3      2      H  15-16
24/11/15     E2         Port Vale     Blackpool      2      0      H  15-16
24/11/15     E2  Sheffield United    Shrewsbury      2      4      A  15-16
24/11/15     E2           Swindon       Walsall      2      1      H  15-16
24/11/15     E2             Wigan        Burton      0      1      A  15-16


25/01/12
         league            home           away  hgoal  agoal result season
date                                                                      
25/01/12     T1      Buyuksehyr     Fenerbahce      3      2      H  11-12
25/01/12     T1     Galatasaray     Ankaragucu      4      0      H  11-12
25/01/12     T1  Genclerbirligi      Bursaspor      2      2      D  11-12
25/01/12     T1        Orduspor    Karabukspor      3      2      H  11-12
25/01/12     T1     Trabzonspor  Eskisehirspor      4      1      H  11-12


25/01/13
         league         home       away  hgoal  agoal result season
date                                                               
25/01/13     T1  Karabukspor  Kasimpasa      0      3      A  12-13
25/01/13     D1     Dortmund   Nurnberg      3      0      H  12-13


25/01/14
         league            home           away  hgoal  agoal result season
date                                                                      
25/01/14     D1        Dortmund       Augsburg      2      2      D  13-14
25/01/14     D1   Ein Frankfurt         Hertha      1      0      H  13-14
25/01/14     D1        Freiburg     Leverkusen      3      2      H  13-14
25/01/14     D1        Nurnberg     Hoffenheim      4      0      H  13-14
25/01/14     D1       Stuttgart          Mainz      1      2      A  13-14
25/01/14     D1       Wolfsburg       Hannover      1      3      A  13-14
25/01/14     T1       Bursaspor  Eskisehirspor      3      1      H  13-14
25/01/14     T1  Genclerbirligi       Rizespor      3      1      H  13-14
25/01/14     T1     Trabzonspor       Besiktas      1      1      D  13-14
25/01/14     E2    Notts County        Walsall      1      5      A  13-14
25/01/14     E2          Oldham      Peterboro      5      4      H  13-14
25/01/14     E2       Rotherham   Crawley Town      2      2      D  13-14
25/01/14     E2         Swindon     Shrewsbury      3      1      H  13-14
25/01/14     E2        Tranmere          Crewe      1      0      H  13-14
25/01/14     E2          Wolves   Bristol City      3      1      H  13-14
25/01/14    SP1     Real Madrid        Granada      2      0      H  13-14
25/01/14    SP1         Sevilla        Levante      2      3      A  13-14
25/01/14    SP1        Valencia        Espanol      2      2      D  13-14
25/01/14    SP1      Valladolid     Villarreal      1      0      H  13-14
25/01/14     I1           Lazio       Juventus      1      1      D  13-14
25/01/14     I1          Napoli         Chievo      1      1      D  13-14


25/01/15
         league         home         away  hgoal  agoal result season
date                                                                 
25/01/15     I1   Fiorentina         Roma      1      1      D  14-15
25/01/15     I1        Inter       Torino      0      1      A  14-15
25/01/15     I1     Juventus       Chievo      2      0      H  14-15
25/01/15     I1        Parma       Cesena      1      2      A  14-15
25/01/15     I1    Sampdoria      Palermo      1      1      D  14-15
25/01/15     I1       Verona     Atalanta      1      0      H  14-15
25/01/15     T1  Galatasaray     Rizespor      2      0      H  14-15
25/01/15     T1  Karabukspor  Erciyesspor      1      2      A  14-15
25/01/15    SP1   Ath Bilbao       Malaga      1      1      D  14-15
25/01/15    SP1      Espanol      Almeria      3      0      H  14-15
25/01/15    SP1    La Coruna      Granada      2      2      D  14-15
25/01/15    SP1     Valencia      Sevilla      3      1      H  14-15


25/01/16
         league        home        away  hgoal  agoal result season
date                                                               
25/01/16     T1  Buyuksehyr   Kasimpasa      1      1      D  15-16
25/01/16    SP1     Levante  Las Palmas      3      2      H  15-16


25/02/12
         league           home                away  hgoal  agoal result season
date                                                                          
25/02/12    SP1          Betis              Getafe      1      1      D  11-12
25/02/12    SP1        Espanol             Levante      1      2      A  11-12
25/02/12    SP1         Malaga            Zaragoza      5      1      H  11-12
25/02/12    SP1      Santander            Sp Gijon      1      1      D  11-12
25/02/12     I1          Genoa               Parma      2      2      D  11-12
25/02/12     I1          Milan            Juventus      1      1      D  11-12
25/02/12     D1       Augsburg              Hertha      3      0      H  11-12
25/02/12     D1        FC Koln          Leverkusen      0      2      A  11-12
25/02/12     D1          Mainz      Kaiserslautern      4      0      H  11-12
25/02/12     D1      Stuttgart            Freiburg      4      1      H  11-12
25/02/12     D1  Werder Bremen            Nurnberg      0      1      A  11-12
25/02/12     D1      Wolfsburg          Hoffenheim      1      2      A  11-12
25/02/12     T1  Eskisehirspor          Fenerbahce      2      1      H  11-12
25/02/12     T1    Karabukspor          Ankaragucu      3      2      H  11-12
25/02/12     T1     Manisaspor       Gaziantepspor      0      2      A  11-12
25/02/12     T1     Samsunspor           Bursaspor      0      3      A  11-12
25/02/12     E2    Bournemouth  Milton Keynes Dons      0      1      A  11-12
25/02/12     E2           Bury       Leyton Orient      1      1      D  11-12
25/02/12     E2       Carlisle              Yeovil      3      2      H  11-12
25/02/12     E2       Charlton           Stevenage      2      0      H  11-12
25/02/12     E2     Colchester            Rochdale      0      0      D  11-12
25/02/12     E2   Huddersfield              Exeter      2      0      H  11-12
25/02/12     E2   Notts County        Chesterfield      1      0      H  11-12
25/02/12     E2         Oldham            Tranmere      1      0      H  11-12
25/02/12     E2        Preston             Walsall      0      0      D  11-12
25/02/12     E2     Scunthorpe           Brentford      0      0      D  11-12
25/02/12     E2        Wycombe          Hartlepool      5      0      H  11-12


25/02/13
         league         home      away  hgoal  agoal result season
date                                                              
25/02/13    SP1      Levante   Osasuna      0      2      A  12-13
25/02/13     I1        Lazio   Pescara      2      0      H  12-13
25/02/13     I1      Udinese    Napoli      0      0      D  12-13
25/02/13     T1  Galatasaray  Orduspor      4      2      H  12-13


25/02/14
         league        home                away  hgoal  agoal result season
date                                                                       
25/02/14     E2  Colchester    Sheffield United      0      1      A  13-14
25/02/14     E2      Oldham  Milton Keynes Dons      1      2      A  13-14
25/02/14     E2     Preston           Rotherham      3      3      D  13-14


25/03/12
         league           home                away  hgoal  agoal result season
date                                                                          
25/03/12    SP1     Ath Bilbao            Sp Gijon      1      1      D  11-12
25/03/12    SP1          Betis           Santander      1      1      D  11-12
25/03/12    SP1        Espanol              Malaga      1      2      A  11-12
25/03/12    SP1        Levante             Osasuna      0      2      A  11-12
25/03/12    SP1      Vallecano          Villarreal      0      2      A  11-12
25/03/12    SP1       Zaragoza          Ath Madrid      1      0      H  11-12
25/03/12     I1       Atalanta             Bologna      2      0      H  11-12
25/03/12     I1         Cesena               Parma      2      2      D  11-12
25/03/12     I1         Chievo               Siena      1      1      D  11-12
25/03/12     I1          Genoa          Fiorentina      2      2      D  11-12
25/03/12     I1       Juventus               Inter      2      0      H  11-12
25/03/12     I1          Lazio            Cagliari      1      0      H  11-12
25/03/12     I1         Napoli             Catania      2      2      D  11-12
25/03/12     I1         Novara               Lecce      0      0      D  11-12
25/03/12     D1        FC Koln            Dortmund      1      6      A  11-12
25/03/12     D1      Stuttgart            Nurnberg      1      0      H  11-12
25/03/12     T1     Ankaragucu         Antalyaspor      0      3      A  11-12
25/03/12     T1  Eskisehirspor       Gaziantepspor      0      2      A  11-12
25/03/12     T1    Galatasaray         Trabzonspor      1      1      D  11-12
25/03/12     T1    Karabukspor         Kayserispor      1      0      H  11-12
25/03/12     T1     Manisaspor           Sivasspor      1      3      A  11-12
25/03/12     T1       Orduspor      Genclerbirligi      0      0      D  11-12
25/03/12     T1     Samsunspor  Mersin Idman Yurdu      2      0      H  11-12


25/03/14
         league                home              away  hgoal  agoal result  \
date                                                                         
25/03/14     D1        Braunschweig             Mainz      3      1      H   
25/03/14     D1            Dortmund        Schalke 04      0      0      D   
25/03/14     D1              Hertha     Bayern Munich      1      3      A   
25/03/14     D1       Werder Bremen         Wolfsburg      1      3      A   
25/03/14     E2            Bradford           Walsall      0      2      A   
25/03/14     E2        Bristol City         Port Vale      5      0      H   
25/03/14     E2            Carlisle        Shrewsbury      0      0      D   
25/03/14     E2        Crawley Town  Sheffield United      0      2      A   
25/03/14     E2               Crewe      Notts County      1      3      A   
25/03/14     E2       Leyton Orient            Oldham      1      1      D   
25/03/14     E2  Milton Keynes Dons        Gillingham      0      1      A   
25/03/14     E2             Preston         Peterboro      3      1      H   
25/03/14     E2           Rotherham         Brentford      3      0      H   
25/03/14     E2            Tranmere           Swindon      1      2      A   
25/03/14     E2              Wolves        Colchester      4      2      H   
25/03/14    SP1               Elche        Ath Bilbao      0      0      D   
25/03/14    SP1              Malaga           Espanol      1      2      A   
25/03/14     I1                Roma            Torino      2      1      H   

         season  
date             
25/03/14  13-14  
25/03/14  13-14  
25/03/14  13-14  
25/03/14  13-14  
25/03/14  13-14  
25/03/14  13-14  
25/03/14  13-14  
25/03/14  13-14  
25/03/14  13-14  
25/03/14  13-14  
25/03/14  13-14  
25/03/14  13-14  
25/03/14  13-14  
25/03/14  13-14  
25/03/14  13-14  
25/03/14  13-14  
25/03/14  13-14  
25/03/14  13-14  


25/03/16
         league              home        away  hgoal  agoal result season
date                                                                     
25/03/16     E2          Barnsley  Scunthorpe      0      0      D  15-16
25/03/16     E2         Blackpool        Bury      1      1      D  15-16
25/03/16     E2        Colchester   Doncaster      4      1      H  15-16
25/03/16     E2         Peterboro    Coventry      3      1      H  15-16
25/03/16     E2          Rochdale    Southend      4      1      H  15-16
25/03/16     E2  Sheffield United       Crewe      3      2      H  15-16
25/03/16     E2        Shrewsbury   Port Vale      1      1      D  15-16
25/03/16     E2           Swindon       Wigan      1      4      A  15-16


25/04/12
         league     home        away  hgoal  agoal result season
date                                                            
25/04/12     I1   Cesena    Juventus      0      1      A  11-12
25/04/12     I1    Lecce      Napoli      0      2      A  11-12
25/04/12     I1    Milan       Genoa      1      0      H  11-12
25/04/12     I1   Novara       Lazio      2      1      H  11-12
25/04/12     I1  Palermo       Parma      1      2      A  11-12
25/04/12     I1     Roma  Fiorentina      1      2      A  11-12
25/04/12     I1    Siena     Bologna      1      1      D  11-12
25/04/12     I1  Udinese       Inter      1      3      A  11-12


25/04/14
         league            home              away  hgoal  agoal result season
date                                                                         
25/04/14     D1        Hannover         Stuttgart      0      0      D  13-14
25/04/14     T1  Genclerbirligi         Bursaspor      1      0      H  13-14
25/04/14     E2       Port Vale  Sheffield United      1      2      A  13-14
25/04/14    SP1           Elche           Levante      1      1      D  13-14
25/04/14     I1            Roma             Milan      2      0      H  13-14


25/04/15
         league            home                away  hgoal  agoal result  \
date                                                                       
25/04/15     D1   Bayern Munich              Hertha      1      0      H   
25/04/15     D1        Dortmund       Ein Frankfurt      2      0      H   
25/04/15     D1         FC Koln          Leverkusen      1      1      D   
25/04/15     D1         Hamburg            Augsburg      3      2      H   
25/04/15     D1        Hannover          Hoffenheim      1      2      A   
25/04/15     D1       Stuttgart            Freiburg      2      2      D   
25/04/15     I1         Udinese               Milan      2      1      H   
25/04/15     T1       Bursaspor          Buyuksehyr      4      1      H   
25/04/15     T1   Eskisehirspor          Fenerbahce      1      1      D   
25/04/15     T1        Rizespor           Kasimpasa      1      3      A   
25/04/15     E2        Bradford            Barnsley      1      0      H   
25/04/15     E2    Chesterfield        Bristol City      0      2      A   
25/04/15     E2        Coventry               Crewe      1      3      A   
25/04/15     E2  Fleetwood Town          Colchester      2      3      A   
25/04/15     E2   Leyton Orient    Sheffield United      1      1      D   
25/04/15     E2    Notts County           Doncaster      2      1      H   
25/04/15     E2       Peterboro        Crawley Town      4      3      H   
25/04/15     E2         Preston             Swindon      3      0      H   
25/04/15     E2        Rochdale  Milton Keynes Dons      2      3      A   
25/04/15     E2      Scunthorpe          Gillingham      2      1      H   
25/04/15     E2         Walsall              Oldham      2      0      H   
25/04/15     E2          Yeovil           Port Vale      1      2      A   
25/04/15    SP1      Ath Madrid               Elche      3      0      H   
25/04/15    SP1         Espanol           Barcelona      0      2      A   
25/04/15    SP1          Getafe             Levante      0      1      A   
25/04/15    SP1        Sociedad          Villarreal      0      0      D   

         season  
date             
25/04/15  14-15  
25/04/15  14-15  
25/04/15  14-15  
25/04/15  14-15  
25/04/15  14-15  
25/04/15  14-15  
25/04/15  14-15  
25/04/15  14-15  
25/04/15  14-15  
25/04/15  14-15  
25/04/15  14-15  
25/04/15  14-15  
25/04/15  14-15  
25/04/15  14-15  
25/04/15  14-15  
25/04/15  14-15  
25/04/15  14-15  
25/04/15  14-15  
25/04/15  14-15  
25/04/15  14-15  
25/04/15  14-15  
25/04/15  14-15  
25/04/15  14-15  
25/04/15  14-15  
25/04/15  14-15  
25/04/15  14-15  


25/04/16
         league           home            away  hgoal  agoal result season
date                                                                      
25/04/16     T1  Gaziantepspor  Genclerbirligi      1      3      A  15-16
25/04/16     I1          Carpi          Empoli      1      0      H  15-16
25/04/16     I1           Roma          Napoli      1      0      H  15-16
25/04/16     I1         Verona           Milan      2      1      H  15-16
25/04/16    SP1          Celta         Granada      2      1      H  15-16


25/05/15
         league                  home        away  hgoal  agoal result season
date                                                                         
25/05/15     I1                 Lazio        Roma      1      2      A  14-15
25/05/15     T1  Akhisar Belediyespor   Bursaspor      0      1      A  14-15
25/05/15     T1            Buyuksehyr  Fenerbahce      2      2      D  14-15


25/08/12
         league                  home                away  hgoal  agoal  \
date                                                                      
25/08/12    SP1                 Betis           Vallecano      1      2   
25/08/12    SP1               Espanol            Zaragoza      1      2   
25/08/12    SP1                Malaga            Mallorca      1      1   
25/08/12    SP1              Sociedad               Celta      2      1   
25/08/12     I1            Fiorentina             Udinese      2      1   
25/08/12     I1              Juventus               Parma      2      0   
25/08/12     T1  Akhisar Belediyespor      Genclerbirligi      0      0   
25/08/12     T1            Fenerbahce       Gaziantepspor      3      0   
25/08/12     T1              Orduspor       Eskisehirspor      2      0   
25/08/12     T1             Sivasspor  Mersin Idman Yurdu      3      3   
25/08/12     E2           Bournemouth             Preston      1      1   
25/08/12     E2             Brentford               Crewe      5      1   
25/08/12     E2              Carlisle          Portsmouth      4      2   
25/08/12     E2            Colchester    Sheffield United      1      1   
25/08/12     E2              Coventry                Bury      2      2   
25/08/12     E2             Doncaster        Crawley Town      0      1   
25/08/12     E2          Notts County             Walsall      0      1   
25/08/12     E2                Oldham           Stevenage      0      1   
25/08/12     E2            Scunthorpe              Yeovil      0      4   
25/08/12     E2            Shrewsbury            Tranmere      1      1   
25/08/12     E2               Swindon  Milton Keynes Dons      1      0   
25/08/12     D1              Augsburg  Fortuna Dusseldorf      0      2   
25/08/12     D1         Ein Frankfurt          Leverkusen      2      1   
25/08/12     D1              Freiburg               Mainz      1      1   
25/08/12     D1        Greuther Furth       Bayern Munich      0      3   
25/08/12     D1               Hamburg            Nurnberg      0      1   
25/08/12     D1            M'gladbach          Hoffenheim      2      1   

         result season  
date                    
25/08/12      A  12-13  
25/08/12      A  12-13  
25/08/12      D  12-13  
25/08/12      H  12-13  
25/08/12      H  12-13  
25/08/12      H  12-13  
25/08/12      D  12-13  
25/08/12      H  12-13  
25/08/12      H  12-13  
25/08/12      D  12-13  
25/08/12      D  12-13  
25/08/12      H  12-13  
25/08/12      H  12-13  
25/08/12      D  12-13  
25/08/12      D  12-13  
25/08/12      A  12-13  
25/08/12      A  12-13  
25/08/12      A  12-13  
25/08/12      A  12-13  
25/08/12      D  12-13  
25/08/12      H  12-13  
25/08/12      A  12-13  
25/08/12      H  12-13  
25/08/12      D  12-13  
25/08/12      A  12-13  
25/08/12      A  12-13  
25/08/12      H  12-13  


25/08/13
         league          home           away  hgoal  agoal result season
date                                                                    
25/08/13     D1      Augsburg      Stuttgart      2      1      H  13-14
25/08/13     D1  Braunschweig  Ein Frankfurt      0      2      A  13-14
25/08/13     T1     Bursaspor    Galatasaray      1      1      D  13-14
25/08/13     T1    Elazigspor    Karabukspor      2      2      D  13-14
25/08/13     T1     Sivasspor      Konyaspor      2      0      H  13-14
25/08/13     E2      Coventry        Preston      4      4      D  13-14
25/08/13    SP1    Ath Madrid      Vallecano      5      0      H  13-14
25/08/13    SP1         Betis          Celta      1      2      A  13-14
25/08/13    SP1       Levante        Sevilla      0      0      D  13-14
25/08/13    SP1        Malaga      Barcelona      0      1      A  13-14
25/08/13     I1      Cagliari       Atalanta      2      1      H  13-14
25/08/13     I1         Inter          Genoa      2      0      H  13-14
25/08/13     I1         Lazio        Udinese      2      1      H  13-14
25/08/13     I1       Livorno           Roma      0      2      A  13-14
25/08/13     I1        Napoli        Bologna      3      0      H  13-14
25/08/13     I1         Parma         Chievo      0      0      D  13-14
25/08/13     I1        Torino       Sassuolo      2      0      H  13-14


25/08/14
         league         home        away  hgoal  agoal result season
date                                                                
25/08/14    SP1  Real Madrid     Cordoba      2      0      H  14-15
25/08/14    SP1    Vallecano  Ath Madrid      0      0      D  14-15


25/09/11
         league            home         away  hgoal  agoal result season
date                                                                    
25/09/11    SP1         Granada      Osasuna      1      1      D  11-12
25/09/11    SP1         Levante      Espanol      3      1      H  11-12
25/09/11    SP1        Mallorca     Sociedad      2      1      H  11-12
25/09/11    SP1        Sp Gijon    Santander      0      0      D  11-12
25/09/11    SP1        Zaragoza       Malaga      0      0      D  11-12
25/09/11     I1        Atalanta       Novara      2      1      H  11-12
25/09/11     I1        Cagliari      Udinese      0      0      D  11-12
25/09/11     I1         Catania     Juventus      1      1      D  11-12
25/09/11     I1          Chievo        Genoa      2      1      H  11-12
25/09/11     I1           Lazio      Palermo      0      0      D  11-12
25/09/11     I1           Parma         Roma      0      1      A  11-12
25/09/11     I1           Siena        Lecce      3      0      H  11-12
25/09/11     D1         FC Koln   Hoffenheim      2      0      H  11-12
25/09/11     D1   Werder Bremen       Hertha      2      1      H  11-12
25/09/11     T1        Besiktas  Antalyaspor      1      0      H  11-12
25/09/11     T1  Genclerbirligi   Ankaragucu      1      1      D  11-12
25/09/11     T1        Orduspor   Samsunspor      0      0      D  11-12
25/09/11     T1       Sivasspor    Bursaspor      3      0      H  11-12


25/09/12
         league            home                away  hgoal  agoal result  \
date                                                                       
25/09/12     I1      Fiorentina            Juventus      0      0      D   
25/09/12     D1   Bayern Munich           Wolfsburg      3      0      H   
25/09/12     D1   Ein Frankfurt            Dortmund      3      3      D   
25/09/12     D1  Greuther Furth  Fortuna Dusseldorf      0      2      A   
25/09/12     D1      Schalke 04               Mainz      3      0      H   

         season  
date             
25/09/12  12-13  
25/09/12  12-13  
25/09/12  12-13  
25/09/12  12-13  
25/09/12  12-13  


25/09/13
         league       home         away  hgoal  agoal result season
date                                                               
25/09/13    SP1      Elche  Real Madrid      1      2      A  13-14
25/09/13    SP1    Granada     Valencia      0      1      A  13-14
25/09/13    SP1    Sevilla    Vallecano      4      1      H  13-14
25/09/13     I1    Bologna        Milan      3      3      D  13-14
25/09/13     I1     Chievo     Juventus      1      2      A  13-14
25/09/13     I1      Lazio      Catania      3      1      H  13-14
25/09/13     I1    Livorno     Cagliari      1      1      D  13-14
25/09/13     I1     Napoli     Sassuolo      1      1      D  13-14
25/09/13     I1      Parma     Atalanta      4      3      H  13-14
25/09/13     I1  Sampdoria         Roma      0      2      A  13-14
25/09/13     I1     Torino       Verona      2      2      D  13-14


25/09/14
         league      home     away  hgoal  agoal result season
date                                                          
25/09/14     I1     Lazio  Udinese      0      1      A  14-15
25/09/14    SP1   Espanol   Getafe      2      0      H  14-15
25/09/14    SP1  Valencia  Cordoba      3      0      H  14-15


25/09/15
         league      home        away  hgoal  agoal result season
date                                                             
25/09/15     D1   FC Koln  Ingolstadt      1      1      D  15-16
25/09/15    SP1  Valencia     Granada      1      0      H  15-16


25/10/11
         league              home                away  hgoal  agoal result  \
date                                                                         
25/10/11    SP1           Granada           Barcelona      0      1      A   
25/10/11    SP1           Sevilla           Santander      2      2      D   
25/10/11     I1          Juventus          Fiorentina      2      1      H   
25/10/11     E2         Brentford           Stevenage      0      1      A   
25/10/11     E2              Bury        Notts County      2      2      D   
25/10/11     E2          Carlisle      Sheffield Weds      3      2      H   
25/10/11     E2        Colchester         Bournemouth      1      1      D   
25/10/11     E2        Hartlepool            Tranmere      0      2      A   
25/10/11     E2           Preston              Oldham      3      3      D   
25/10/11     E2          Rochdale        Chesterfield      1      1      D   
25/10/11     E2        Scunthorpe        Huddersfield      2      2      D   
25/10/11     E2  Sheffield United  Milton Keynes Dons      2      1      H   
25/10/11     E2           Walsall              Exeter      1      2      A   
25/10/11     E2           Wycombe            Charlton      1      2      A   
25/10/11     E2            Yeovil       Leyton Orient      2      2      D   

         season  
date             
25/10/11  11-12  
25/10/11  11-12  
25/10/11  11-12  
25/10/11  11-12  
25/10/11  11-12  
25/10/11  11-12  
25/10/11  11-12  
25/10/11  11-12  
25/10/11  11-12  
25/10/11  11-12  
25/10/11  11-12  
25/10/11  11-12  
25/10/11  11-12  
25/10/11  11-12  
25/10/11  11-12  


25/10/13
         league        home           away  hgoal  agoal result season
date                                                                  
25/10/13     D1   Stuttgart       Nurnberg      1      1      D  13-14
25/10/13     T1  Fenerbahce  Gaziantepspor      3      1      H  13-14
25/10/13     T1   Sivasspor    Erciyesspor      2      0      H  13-14
25/10/13    SP1   Vallecano     Valladolid      0      3      A  13-14


25/10/14
         league           home                away  hgoal  agoal result season
date                                                                          
25/10/14     D1       Augsburg            Freiburg      2      0      H  14-15
25/10/14     D1       Dortmund            Hannover      0      1      A  14-15
25/10/14     D1  Ein Frankfurt           Stuttgart      4      5      A  14-15
25/10/14     D1         Hertha             Hamburg      3      0      H  14-15
25/10/14     D1     Hoffenheim           Paderborn      1      0      H  14-15
25/10/14     D1     Leverkusen          Schalke 04      1      0      H  14-15
25/10/14     I1         Empoli            Cagliari      0      4      A  14-15
25/10/14     I1          Parma            Sassuolo      1      3      A  14-15
25/10/14     I1      Sampdoria                Roma      0      0      D  14-15
25/10/14     T1  Balikesirspor           Bursaspor      0      5      A  14-15
25/10/14     T1     Fenerbahce      Genclerbirligi      2      1      H  14-15
25/10/14     T1      Sivasspor            Rizespor      0      1      A  14-15
25/10/14     E2       Barnsley        Bristol City      2      2      D  14-15
25/10/14     E2       Coventry           Peterboro      3      2      H  14-15
25/10/14     E2          Crewe    Sheffield United      0      1      A  14-15
25/10/14     E2      Doncaster  Milton Keynes Dons      0      0      D  14-15
25/10/14     E2     Gillingham        Crawley Town      1      1      D  14-15
25/10/14     E2         Oldham            Bradford      2      1      H  14-15
25/10/14     E2      Port Vale       Leyton Orient      3      0      H  14-15
25/10/14     E2        Preston      Fleetwood Town      3      2      H  14-15
25/10/14     E2     Scunthorpe        Notts County      0      1      A  14-15
25/10/14     E2        Swindon          Colchester      2      2      D  14-15
25/10/14     E2        Walsall        Chesterfield      1      0      H  14-15
25/10/14     E2         Yeovil            Rochdale      0      3      A  14-15
25/10/14    SP1        Almeria          Ath Bilbao      0      1      A  14-15
25/10/14    SP1        Cordoba            Sociedad      1      1      D  14-15
25/10/14    SP1          Eibar             Granada      1      1      D  14-15
25/10/14    SP1    Real Madrid           Barcelona      3      1      H  14-15
25/10/14    SP1       Valencia               Elche      3      1      H  14-15


25/10/15
         league        home         away  hgoal  agoal result season
date                                                                
25/10/15     T1  Buyuksehyr    Konyaspor      4      0      H  15-16
25/10/15     T1  Fenerbahce  Galatasaray      1      1      D  15-16
25/10/15     D1    Dortmund     Augsburg      5      1      H  15-16
25/10/15     D1  M'gladbach   Schalke 04      3      1      H  15-16
25/10/15     I1      Chievo       Napoli      0      1      A  15-16
25/10/15     I1  Fiorentina         Roma      1      2      A  15-16
25/10/15     I1    Juventus     Atalanta      2      0      H  15-16
25/10/15     I1       Lazio       Torino      3      0      H  15-16
25/10/15     I1       Milan     Sassuolo      2      1      H  15-16
25/10/15     I1   Sampdoria       Verona      4      1      H  15-16
25/10/15     I1     Udinese    Frosinone      1      0      H  15-16
25/10/15    SP1  Ath Madrid     Valencia      2      1      H  15-16
25/10/15    SP1   Barcelona        Eibar      3      1      H  15-16
25/10/15    SP1  Las Palmas   Villarreal      0      0      D  15-16
25/10/15    SP1     Levante     Sociedad      0      4      A  15-16


25/11/11
         league            home        away  hgoal  agoal result season
date                                                                   
25/11/11     I1         Udinese        Roma      2      0      H  11-12
25/11/11     D1         FC Koln  M'gladbach      0      3      A  11-12
25/11/11     T1  Genclerbirligi  Fenerbahce      0      0      D  11-12


25/11/12
         league           home            away  hgoal  agoal result season
date                                                                      
25/11/12    SP1     Ath Bilbao       La Coruna      1      1      D  12-13
25/11/12    SP1     Ath Madrid         Sevilla      4      0      H  12-13
25/11/12    SP1        Espanol          Getafe      0      2      A  12-13
25/11/12    SP1        Levante       Barcelona      0      4      A  12-13
25/11/12     I1       Atalanta           Genoa      0      1      A  12-13
25/11/12     I1         Chievo           Siena      0      0      D  12-13
25/11/12     I1          Milan        Juventus      1      0      H  12-13
25/11/12     I1        Pescara            Roma      0      1      A  12-13
25/11/12     I1      Sampdoria         Bologna      1      0      H  12-13
25/11/12     I1         Torino      Fiorentina      2      2      D  12-13
25/11/12     T1     Fenerbahce  Genclerbirligi      4      1      H  12-13
25/11/12     T1  Gaziantepspor      Buyuksehyr      2      1      H  12-13
25/11/12     T1      Sivasspor     Kayserispor      4      2      H  12-13
25/11/12     D1       Augsburg      M'gladbach      1      1      D  12-13
25/11/12     D1       Freiburg       Stuttgart      3      0      H  12-13
25/11/12     D1     Hoffenheim      Leverkusen      1      2      A  12-13


25/11/13
         league                  home         away  hgoal  agoal result season
date                                                                          
25/11/13     T1  Akhisar Belediyespor  Karabukspor      0      1      A  13-14
25/11/13     T1              Besiktas    Konyaspor      3      1      H  13-14
25/11/13    SP1                Malaga   Ath Bilbao      1      2      A  13-14
25/11/13     I1                  Roma     Cagliari      0      0      D  13-14


25/11/14
         league                home      away  hgoal  agoal result season
date                                                                     
25/11/14     E2  Milton Keynes Dons  Rochdale      2      2      D  14-15


26/01/13
         league            home                  away  hgoal  agoal result  \
date                                                                         
26/01/13    SP1           Celta              Sociedad      1      1      D   
26/01/13    SP1       La Coruna              Valencia      2      3      A   
26/01/13    SP1         Levante            Valladolid      2      1      H   
26/01/13    SP1        Zaragoza               Espanol      0      0      D   
26/01/13     I1        Juventus                 Genoa      1      1      D   
26/01/13     I1           Lazio                Chievo      0      1      A   
26/01/13     T1      Buyuksehyr             Bursaspor      4      1      H   
26/01/13     T1   Gaziantepspor            Fenerbahce      1      2      A   
26/01/13     T1  Genclerbirligi  Akhisar Belediyespor      1      0      H   
26/01/13     E2     Bournemouth                 Crewe      3      1      H   
26/01/13     E2        Carlisle            Scunthorpe      1      1      D   
26/01/13     E2      Colchester               Walsall      2      0      H   
26/01/13     E2   Leyton Orient          Notts County      2      1      H   
26/01/13     E2      Portsmouth            Hartlepool      1      3      A   
26/01/13     E2         Preston              Coventry      2      2      D   
26/01/13     E2      Shrewsbury                  Bury      0      0      D   
26/01/13     D1        Augsburg            Schalke 04      0      0      D   
26/01/13     D1   Ein Frankfurt            Hoffenheim      2      1      H   
26/01/13     D1        Freiburg            Leverkusen      0      0      D   
26/01/13     D1  Greuther Furth                 Mainz      0      3      A   
26/01/13     D1        Hannover             Wolfsburg      2      1      H   
26/01/13     D1      M'gladbach    Fortuna Dusseldorf      2      1      H   

         season  
date             
26/01/13  12-13  
26/01/13  12-13  
26/01/13  12-13  
26/01/13  12-13  
26/01/13  12-13  
26/01/13  12-13  
26/01/13  12-13  
26/01/13  12-13  
26/01/13  12-13  
26/01/13  12-13  
26/01/13  12-13  
26/01/13  12-13  
26/01/13  12-13  
26/01/13  12-13  
26/01/13  12-13  
26/01/13  12-13  
26/01/13  12-13  
26/01/13  12-13  
26/01/13  12-13  
26/01/13  12-13  
26/01/13  12-13  
26/01/13  12-13  


26/01/14
         league           home                  away  hgoal  agoal result  \
date                                                                        
26/01/14     D1        Hamburg            Schalke 04      0      3      A   
26/01/14     D1  Werder Bremen          Braunschweig      0      0      D   
26/01/14     T1     Elazigspor  Akhisar Belediyespor      2      1      H   
26/01/14     T1    Erciyesspor           Antalyaspor      1      3      A   
26/01/14     T1  Gaziantepspor           Galatasaray      0      0      D   
26/01/14     T1      Sivasspor           Kayserispor      3      0      H   
26/01/14    SP1        Almeria                Getafe      1      0      H   
26/01/14    SP1      Barcelona                Malaga      3      0      H   
26/01/14    SP1        Osasuna            Ath Bilbao      1      5      A   
26/01/14    SP1      Vallecano            Ath Madrid      2      4      A   
26/01/14     I1       Cagliari                 Milan      1      2      A   
26/01/14     I1     Fiorentina                 Genoa      3      3      D   
26/01/14     I1          Inter               Catania      0      0      D   
26/01/14     I1        Livorno              Sassuolo      3      1      H   
26/01/14     I1          Parma               Udinese      1      0      H   
26/01/14     I1      Sampdoria               Bologna      1      1      D   
26/01/14     I1         Torino              Atalanta      1      0      H   
26/01/14     I1         Verona                  Roma      1      3      A   

         season  
date             
26/01/14  13-14  
26/01/14  13-14  
26/01/14  13-14  
26/01/14  13-14  
26/01/14  13-14  
26/01/14  13-14  
26/01/14  13-14  
26/01/14  13-14  
26/01/14  13-14  
26/01/14  13-14  
26/01/14  13-14  
26/01/14  13-14  
26/01/14  13-14  
26/01/14  13-14  
26/01/14  13-14  
26/01/14  13-14  
26/01/14  13-14  
26/01/14  13-14  


26/01/15
         league            home      away  hgoal  agoal result season
date                                                                 
26/01/15     I1          Empoli   Udinese      1      2      A  14-15
26/01/15     I1          Napoli     Genoa      2      1      H  14-15
26/01/15     T1  Genclerbirligi  Besiktas      0      2      A  14-15
26/01/15    SP1          Getafe     Celta      2      1      H  14-15


26/01/16
         league        home              away  hgoal  agoal result season
date                                                                     
26/01/16     E2   Blackpool  Sheffield United      0      0      D  15-16
26/01/16     E2    Bradford          Barnsley      0      1      A  15-16
26/01/16     E2        Bury             Crewe      0      0      D  15-16
26/01/16     E2   Doncaster         Port Vale      1      2      A  15-16
26/01/16     E2   Peterboro            Burton      0      1      A  15-16
26/01/16     E2  Shrewsbury            Oldham      0      1      A  15-16


26/02/12
         league            home                away  hgoal  agoal result  \
date                                                                       
26/02/12    SP1      Ath Madrid           Barcelona      1      2      A   
26/02/12    SP1         Osasuna             Granada      2      1      H   
26/02/12    SP1        Sociedad            Mallorca      1      0      H   
26/02/12    SP1        Valencia             Sevilla      1      2      A   
26/02/12    SP1       Vallecano         Real Madrid      0      1      A   
26/02/12    SP1      Villarreal          Ath Bilbao      2      2      D   
26/02/12     I1        Atalanta                Roma      4      1      H   
26/02/12     I1         Bologna             Udinese      1      3      A   
26/02/12     I1        Cagliari               Lecce      1      2      A   
26/02/12     I1         Catania              Novara      3      1      H   
26/02/12     I1          Chievo              Cesena      1      0      H   
26/02/12     I1           Lazio          Fiorentina      1      0      H   
26/02/12     I1          Napoli               Inter      1      0      H   
26/02/12     I1           Siena             Palermo      4      1      H   
26/02/12     D1   Bayern Munich          Schalke 04      2      0      H   
26/02/12     D1        Dortmund            Hannover      3      1      H   
26/02/12     T1      Buyuksehyr         Antalyaspor      4      0      H   
26/02/12     T1     Galatasaray            Besiktas      3      2      H   
26/02/12     T1  Genclerbirligi           Sivasspor      3      3      D   
26/02/12     T1     Trabzonspor  Mersin Idman Yurdu      2      3      A   
26/02/12     E2  Sheffield Weds    Sheffield United      1      0      H   

         season  
date             
26/02/12  11-12  
26/02/12  11-12  
26/02/12  11-12  
26/02/12  11-12  
26/02/12  11-12  
26/02/12  11-12  
26/02/12  11-12  
26/02/12  11-12  
26/02/12  11-12  
26/02/12  11-12  
26/02/12  11-12  
26/02/12  11-12  
26/02/12  11-12  
26/02/12  11-12  
26/02/12  11-12  
26/02/12  11-12  
26/02/12  11-12  
26/02/12  11-12  
26/02/12  11-12  
26/02/12  11-12  
26/02/12  11-12  


26/02/13
         league              home                away  hgoal  agoal result  \
date                                                                         
26/02/13     I1           Bologna          Fiorentina      2      1      H   
26/02/13     E2       Bournemouth            Coventry      0      2      A   
26/02/13     E2          Carlisle             Walsall      0      3      A   
26/02/13     E2        Colchester              Yeovil      2      0      H   
26/02/13     E2      Crawley Town           Brentford      1      2      A   
26/02/13     E2        Hartlepool               Crewe      3      0      H   
26/02/13     E2        Portsmouth  Milton Keynes Dons      1      1      D   
26/02/13     E2        Scunthorpe           Stevenage      1      0      H   
26/02/13     E2  Sheffield United       Leyton Orient      0      0      D   
26/02/13     E2        Shrewsbury           Doncaster      1      2      A   
26/02/13     E2           Swindon                Bury      0      1      A   
26/02/13     E2          Tranmere        Notts County      1      1      D   

         season  
date             
26/02/13  12-13  
26/02/13  12-13  
26/02/13  12-13  
26/02/13  12-13  
26/02/13  12-13  
26/02/13  12-13  
26/02/13  12-13  
26/02/13  12-13  
26/02/13  12-13  
26/02/13  12-13  
26/02/13  12-13  
26/02/13  12-13  


26/02/16
         league        home         away  hgoal  agoal result season
date                                                                
26/02/16     T1  Buyuksehyr  Kayserispor      1      0      H  15-16
26/02/16     D1     FC Koln       Hertha      0      1      A  15-16
26/02/16    SP1       Eibar   Las Palmas      0      1      A  15-16


26/03/12
         league        home      away  hgoal  agoal result season
date                                                             
26/03/12    SP1     Granada   Sevilla      0      3      A  11-12
26/03/12     T1  Buyuksehyr  Besiktas      2      2      D  11-12


26/03/13
         league          home   away  hgoal  agoal result season
date                                                            
26/03/13     E2  Crawley Town  Crewe      2      0      H  12-13


26/03/14
         league           home         away  hgoal  agoal result season
date                                                                   
26/03/14     D1       Augsburg   Leverkusen      1      3      A  13-14
26/03/14     D1  Ein Frankfurt   M'gladbach      1      0      H  13-14
26/03/14     D1        Hamburg     Freiburg      1      1      D  13-14
26/03/14     D1     Hoffenheim     Hannover      3      1      H  13-14
26/03/14     D1       Nurnberg    Stuttgart      2      0      H  13-14
26/03/14     E2       Coventry    Stevenage      1      0      H  13-14
26/03/14    SP1     Ath Madrid      Granada      1      0      H  13-14
26/03/14    SP1      Barcelona        Celta      3      0      H  13-14
26/03/14    SP1        Sevilla  Real Madrid      2      1      H  13-14
26/03/14    SP1      Vallecano      Osasuna      1      0      H  13-14
26/03/14     I1       Atalanta      Livorno      2      0      H  13-14
26/03/14     I1       Cagliari       Verona      1      0      H  13-14
26/03/14     I1        Catania       Napoli      2      4      A  13-14
26/03/14     I1         Chievo      Bologna      3      0      H  13-14
26/03/14     I1     Fiorentina        Milan      0      2      A  13-14
26/03/14     I1          Genoa        Lazio      2      0      H  13-14
26/03/14     I1       Juventus        Parma      2      1      H  13-14
26/03/14     I1       Sassuolo    Sampdoria      1      2      A  13-14


26/03/16
         league          home            away  hgoal  agoal result season
date                                                                     
26/03/16     E2      Bradford        Millwall      1      0      H  15-16
26/03/16     E2        Burton          Oldham      0      0      D  15-16
26/03/16     E2  Chesterfield  Fleetwood Town      0      0      D  15-16


26/04/13
         league                home         away  hgoal  agoal result season
date                                                                        
26/04/13    SP1           Vallecano      Osasuna      2      2      D  12-13
26/04/13     T1  Mersin Idman Yurdu  Antalyaspor      1      1      D  12-13
26/04/13     D1      Greuther Furth     Hannover      2      3      A  12-13


26/04/14
         league           home                away  hgoal  agoal result season
date                                                                          
26/04/14     D1  Bayern Munich       Werder Bremen      5      2      H  13-14
26/04/14     D1         Hertha        Braunschweig      2      0      H  13-14
26/04/14     D1     Hoffenheim       Ein Frankfurt      0      0      D  13-14
26/04/14     D1     Leverkusen            Dortmund      2      2      D  13-14
26/04/14     D1          Mainz            Nurnberg      2      0      H  13-14
26/04/14     D1      Wolfsburg            Freiburg      2      2      D  13-14
26/04/14     T1    Trabzonspor       Gaziantepspor      2      1      H  13-14
26/04/14     E2       Bradford        Crawley Town      2      1      H  13-14
26/04/14     E2   Bristol City               Crewe      0      0      D  13-14
26/04/14     E2       Carlisle              Oldham      0      1      A  13-14
26/04/14     E2     Colchester           Brentford      4      1      H  13-14
26/04/14     E2       Coventry              Wolves      1      1      D  13-14
26/04/14     E2  Leyton Orient            Tranmere      2      0      H  13-14
26/04/14     E2   Notts County             Swindon      2      0      H  13-14
26/04/14     E2        Preston          Gillingham      3      1      H  13-14
26/04/14     E2      Rotherham  Milton Keynes Dons      2      2      D  13-14
26/04/14     E2     Shrewsbury           Peterboro      2      4      A  13-14
26/04/14     E2      Stevenage             Walsall      3      2      H  13-14
26/04/14    SP1          Betis            Sociedad      0      1      A  13-14
26/04/14    SP1         Getafe              Malaga      1      0      H  13-14
26/04/14    SP1        Granada           Vallecano      0      3      A  13-14
26/04/14    SP1    Real Madrid             Osasuna      4      0      H  13-14
26/04/14     I1        Bologna          Fiorentina      0      3      A  13-14
26/04/14     I1          Inter              Napoli      0      0      D  13-14


26/04/15
         league            home                  away  hgoal  agoal result  \
date                                                                         
26/04/15     D1      M'gladbach             Wolfsburg      1      0      H   
26/04/15     D1       Paderborn         Werder Bremen      2      2      D   
26/04/15     I1        Atalanta                Empoli      2      2      D   
26/04/15     I1      Fiorentina              Cagliari      1      3      A   
26/04/15     I1           Genoa                Cesena      3      1      H   
26/04/15     I1           Lazio                Chievo      1      1      D   
26/04/15     I1          Napoli             Sampdoria      4      2      H   
26/04/15     I1           Parma               Palermo      1      0      H   
26/04/15     I1          Torino              Juventus      2      1      H   
26/04/15     I1          Verona              Sassuolo      3      2      H   
26/04/15     T1   Balikesirspor           Erciyesspor      1      1      D   
26/04/15     T1     Galatasaray         Gaziantepspor      1      0      H   
26/04/15     T1  Genclerbirligi           Trabzonspor      1      1      D   
26/04/15     T1       Konyaspor  Akhisar Belediyespor      2      1      H   
26/04/15    SP1         Almeria                 Eibar      2      0      H   
26/04/15    SP1           Celta           Real Madrid      2      4      A   
26/04/15    SP1          Malaga             La Coruna      1      1      D   
26/04/15    SP1         Sevilla             Vallecano      2      0      H   

         season  
date             
26/04/15  14-15  
26/04/15  14-15  
26/04/15  14-15  
26/04/15  14-15  
26/04/15  14-15  
26/04/15  14-15  
26/04/15  14-15  
26/04/15  14-15  
26/04/15  14-15  
26/04/15  14-15  
26/04/15  14-15  
26/04/15  14-15  
26/04/15  14-15  
26/04/15  14-15  
26/04/15  14-15  
26/04/15  14-15  
26/04/15  14-15  
26/04/15  14-15  


26/04/16
         league     home        away  hgoal  agoal result season
date                                                            
26/04/16     E2  Walsall  Shrewsbury      2      1      H  15-16


26/05/13
         league        home         away  hgoal  agoal result season
date                                                                
26/05/13    SP1  Ath Bilbao      Levante      0      1      A  12-13
26/05/13    SP1  Ath Madrid     Mallorca      0      0      D  12-13
26/05/13    SP1       Betis     Zaragoza      4      0      H  12-13
26/05/13    SP1     Espanol    Barcelona      0      2      A  12-13
26/05/13    SP1      Getafe    Vallecano      1      2      A  12-13
26/05/13    SP1      Malaga    La Coruna      3      1      H  12-13
26/05/13    SP1     Osasuna      Sevilla      2      1      H  12-13
26/05/13    SP1    Sociedad  Real Madrid      3      3      D  12-13
26/05/13    SP1    Valencia      Granada      1      0      H  12-13
26/05/13    SP1  Valladolid        Celta      0      2      A  12-13


26/08/11
         league    home       away  hgoal  agoal result season
date                                                          
26/08/11     D1  Hertha  Stuttgart      1      0      H  11-12


26/08/12
         league         home         away  hgoal  agoal result season
date                                                                 
26/08/12    SP1       Getafe  Real Madrid      2      1      H  12-13
26/08/12    SP1      Granada      Sevilla      1      1      D  12-13
26/08/12    SP1      Osasuna    Barcelona      1      2      A  12-13
26/08/12    SP1     Valencia    La Coruna      3      3      D  12-13
26/08/12     I1     Atalanta        Lazio      0      1      A  12-13
26/08/12     I1       Chievo      Bologna      2      0      H  12-13
26/08/12     I1        Genoa     Cagliari      2      0      H  12-13
26/08/12     I1        Milan    Sampdoria      0      1      A  12-13
26/08/12     I1      Palermo       Napoli      0      3      A  12-13
26/08/12     I1      Pescara        Inter      0      3      A  12-13
26/08/12     I1         Roma      Catania      2      2      D  12-13
26/08/12     I1        Siena       Torino      0      0      D  12-13
26/08/12     T1     Besiktas  Galatasaray      3      3      D  12-13
26/08/12     T1    Bursaspor   Buyuksehyr      0      1      A  12-13
26/08/12     T1  Trabzonspor   Elazigspor      2      0      H  12-13
26/08/12     D1     Hannover   Schalke 04      2      2      D  12-13
26/08/12     D1    Stuttgart    Wolfsburg      0      1      A  12-13


26/08/13
         league         home         away  hgoal  agoal result season
date                                                                 
26/08/13     T1  Erciyesspor     Besiktas      2      4      A  13-14
26/08/13     T1  Trabzonspor     Rizespor      2      1      H  13-14
26/08/13    SP1      Granada  Real Madrid      0      1      A  13-14
26/08/13     I1   Fiorentina      Catania      2      1      H  13-14


26/09/11
         league         home           away  hgoal  agoal result season
date                                                                   
26/09/11    SP1       Getafe          Betis      1      0      H  11-12
26/09/11     T1  Galatasaray  Eskisehirspor      2      0      H  11-12


26/09/12
         league        home           away  hgoal  agoal result season
date                                                                  
26/09/12    SP1       Betis     Ath Madrid      2      4      A  12-13
26/09/12     I1     Catania       Atalanta      2      1      H  12-13
26/09/12     I1      Chievo          Inter      0      2      A  12-13
26/09/12     I1       Genoa          Parma      1      1      D  12-13
26/09/12     I1       Milan       Cagliari      2      0      H  12-13
26/09/12     I1      Napoli          Lazio      3      0      H  12-13
26/09/12     I1     Pescara        Palermo      1      0      H  12-13
26/09/12     I1        Roma      Sampdoria      1      1      D  12-13
26/09/12     I1      Torino        Udinese      0      0      D  12-13
26/09/12     D1    Augsburg     Leverkusen      1      3      A  12-13
26/09/12     D1    Freiburg  Werder Bremen      1      2      A  12-13
26/09/12     D1    Hannover       Nurnberg      4      1      H  12-13
26/09/12     D1  M'gladbach        Hamburg      2      2      D  12-13
26/09/12     D1   Stuttgart     Hoffenheim      0      3      A  12-13


26/09/13
         league        home        away  hgoal  agoal result season
date                                                               
26/09/13    SP1  Ath Bilbao       Betis      2      1      H  13-14
26/09/13    SP1      Getafe       Celta      2      0      H  13-14
26/09/13    SP1  Villarreal     Espanol      2      1      H  13-14
26/09/13     I1       Inter  Fiorentina      2      1      H  13-14


26/09/14
         league         home        away  hgoal  agoal result season
date                                                                
26/09/14     D1        Mainz  Hoffenheim      0      0      D  14-15
26/09/14     T1  Galatasaray   Sivasspor      2      1      H  14-15
26/09/14    SP1        Elche       Celta      0      1      A  14-15


26/09/15
         league                  home            away  hgoal  agoal result  \
date                                                                         
26/09/15     T1  Akhisar Belediyespor  Genclerbirligi      1      0      H   
26/09/15     T1           Galatasaray   Gaziantepspor      2      1      H   
26/09/15     T1           Osmanlispor     Trabzonspor      3      1      H   
26/09/15     D1              Augsburg      Hoffenheim      1      3      A   
26/09/15     D1               Hamburg      Schalke 04      0      1      A   
26/09/15     D1                 Mainz   Bayern Munich      0      3      A   
26/09/15     D1             Stuttgart      M'gladbach      1      3      A   
26/09/15     D1         Werder Bremen      Leverkusen      0      3      A   
26/09/15     D1             Wolfsburg        Hannover      1      1      D   
26/09/15     I1                Napoli        Juventus      2      1      H   
26/09/15     I1                  Roma           Carpi      5      1      H   
26/09/15    SP1             Barcelona      Las Palmas      2      1      H   
26/09/15    SP1                 Eibar           Celta      1      1      D   
26/09/15    SP1           Real Madrid          Malaga      0      0      D   
26/09/15    SP1               Sevilla       Vallecano      3      2      H   
26/09/15    SP1            Villarreal      Ath Madrid      1      0      H   
26/09/15     E2              Barnsley      Gillingham      2      0      H   
26/09/15     E2              Bradford       Peterboro      0      2      A   
26/09/15     E2                  Bury        Coventry      2      1      H   
26/09/15     E2          Chesterfield          Burton      1      2      A   
26/09/15     E2        Fleetwood Town       Port Vale      1      2      A   
26/09/15     E2              Millwall        Rochdale      3      1      H   
26/09/15     E2                Oldham           Wigan      1      1      D   
26/09/15     E2      Sheffield United       Doncaster      3      1      H   
26/09/15     E2            Shrewsbury       Blackpool      2      0      H   
26/09/15     E2              Southend      Scunthorpe      2      1      H   
26/09/15     E2               Swindon      Colchester      1      2      A   
26/09/15     E2               Walsall           Crewe      1      1      D   

         season  
date             
26/09/15  15-16  
26/09/15  15-16  
26/09/15  15-16  
26/09/15  15-16  
26/09/15  15-16  
26/09/15  15-16  
26/09/15  15-16  
26/09/15  15-16  
26/09/15  15-16  
26/09/15  15-16  
26/09/15  15-16  
26/09/15  15-16  
26/09/15  15-16  
26/09/15  15-16  
26/09/15  15-16  
26/09/15  15-16  
26/09/15  15-16  
26/09/15  15-16  
26/09/15  15-16  
26/09/15  15-16  
26/09/15  15-16  
26/09/15  15-16  
26/09/15  15-16  
26/09/15  15-16  
26/09/15  15-16  
26/09/15  15-16  
26/09/15  15-16  
26/09/15  15-16  


26/10/11
         league         home           away  hgoal  agoal result season
date                                                                   
26/10/11    SP1       Getafe        Osasuna      2      2      D  11-12
26/10/11    SP1      Levante       Sociedad      3      2      H  11-12
26/10/11    SP1     Mallorca       Sp Gijon      1      2      A  11-12
26/10/11    SP1  Real Madrid     Villarreal      3      0      H  11-12
26/10/11    SP1    Vallecano         Malaga      2      0      H  11-12
26/10/11    SP1     Zaragoza       Valencia      0      1      A  11-12
26/10/11     I1     Atalanta          Inter      1      1      D  11-12
26/10/11     I1       Cesena       Cagliari      1      1      D  11-12
26/10/11     I1       Chievo        Bologna      0      1      A  11-12
26/10/11     I1        Genoa           Roma      2      1      H  11-12
26/10/11     I1        Lazio        Catania      1      1      D  11-12
26/10/11     I1        Milan          Parma      4      1      H  11-12
26/10/11     I1       Napoli        Udinese      2      0      H  11-12
26/10/11     I1       Novara          Siena      1      1      D  11-12
26/10/11     T1   Buyuksehyr  Eskisehirspor      2      2      D  11-12
26/10/11     T1  Galatasaray  Gaziantepspor      2      4      A  11-12
26/10/11     T1     Orduspor      Bursaspor      1      1      D  11-12
26/10/11     T1   Samsunspor    Karabukspor      0      0      D  11-12
26/10/11     T1  Trabzonspor    Antalyaspor      2      2      D  11-12


26/10/12
         league        home           away  hgoal  agoal result season
date                                                                  
26/10/12     T1  Elazigspor  Eskisehirspor      1      1      D  12-13
26/10/12     T1   Kasimpasa       Besiktas      1      3      A  12-13
26/10/12     D1    Augsburg        Hamburg      0      2      A  12-13


26/10/13
         league                  home                away  hgoal  agoal  \
date                                                                      
26/10/13     D1         Bayern Munich              Hertha      3      2   
26/10/13     D1              Hannover          Hoffenheim      1      4   
26/10/13     D1            Leverkusen            Augsburg      2      1   
26/10/13     D1                 Mainz        Braunschweig      2      0   
26/10/13     D1            Schalke 04            Dortmund      1      3   
26/10/13     D1             Wolfsburg       Werder Bremen      3      0   
26/10/13     T1  Akhisar Belediyespor            Besiktas      3      3   
26/10/13     T1            Elazigspor      Genclerbirligi      1      2   
26/10/13     T1           Karabukspor         Antalyaspor      1      1   
26/10/13     E2              Bradford              Wolves      1      2   
26/10/13     E2             Brentford          Shrewsbury      1      0   
26/10/13     E2              Carlisle        Bristol City      2      4   
26/10/13     E2            Colchester           Peterboro      1      0   
26/10/13     E2         Leyton Orient           Rotherham      1      0   
26/10/13     E2          Notts County             Preston      0      1   
26/10/13     E2                Oldham             Swindon      2      1   
26/10/13     E2             Port Vale          Gillingham      2      1   
26/10/13     E2      Sheffield United               Crewe      3      1   
26/10/13     E2             Stevenage        Crawley Town      2      0   
26/10/13     E2              Tranmere  Milton Keynes Dons      3      2   
26/10/13     E2               Walsall            Coventry      0      1   
26/10/13    SP1             Barcelona         Real Madrid      2      1   
26/10/13    SP1                 Elche             Granada      0      1   
26/10/13    SP1               Levante             Espanol      3      0   
26/10/13    SP1                Malaga               Celta      0      5   
26/10/13     I1                 Inter              Verona      4      2   
26/10/13     I1             Sampdoria            Atalanta      1      0   

         result season  
date                    
26/10/13      H  13-14  
26/10/13      A  13-14  
26/10/13      H  13-14  
26/10/13      H  13-14  
26/10/13      A  13-14  
26/10/13      H  13-14  
26/10/13      D  13-14  
26/10/13      A  13-14  
26/10/13      D  13-14  
26/10/13      A  13-14  
26/10/13      H  13-14  
26/10/13      A  13-14  
26/10/13      H  13-14  
26/10/13      H  13-14  
26/10/13      A  13-14  
26/10/13      H  13-14  
26/10/13      H  13-14  
26/10/13      H  13-14  
26/10/13      H  13-14  
26/10/13      H  13-14  
26/10/13      A  13-14  
26/10/13      H  13-14  
26/10/13      A  13-14  
26/10/13      H  13-14  
26/10/13      A  13-14  
26/10/13      H  13-14  
26/10/13      H  13-14  


26/10/14
         league                home           away  hgoal  agoal result season
date                                                                          
26/10/14     D1          M'gladbach  Bayern Munich      0      0      D  14-15
26/10/14     D1           Wolfsburg          Mainz      3      0      H  14-15
26/10/14     I1              Cesena          Inter      0      1      A  14-15
26/10/14     I1              Chievo          Genoa      1      2      A  14-15
26/10/14     I1            Juventus        Palermo      2      0      H  14-15
26/10/14     I1               Lazio         Torino      2      1      H  14-15
26/10/14     I1               Milan     Fiorentina      1      1      D  14-15
26/10/14     I1              Napoli         Verona      6      2      H  14-15
26/10/14     I1             Udinese       Atalanta      2      0      H  14-15
26/10/14     T1          Buyuksehyr    Galatasaray      4      0      H  14-15
26/10/14     T1  Mersin Idman Yurdu  Eskisehirspor      4      2      H  14-15
26/10/14     T1         Trabzonspor  Gaziantepspor      4      4      D  14-15
26/10/14    SP1             Espanol      La Coruna      0      0      D  14-15
26/10/14    SP1              Getafe     Ath Madrid      0      1      A  14-15
26/10/14    SP1              Malaga      Vallecano      4      0      H  14-15
26/10/14    SP1             Sevilla     Villarreal      2      1      H  14-15


26/10/15
         league         home      away  hgoal  agoal result season
date                                                              
26/10/15     T1  Antalyaspor  Besiktas      1      5      A  15-16
26/10/15    SP1   Ath Bilbao  Sp Gijon      3      0      H  15-16


26/11/11
         league                home                away  hgoal  agoal result  \
date                                                                           
26/11/11    SP1              Getafe           Barcelona      1      0      H   
26/11/11    SP1         Real Madrid          Ath Madrid      4      1      H   
26/11/11    SP1           Vallecano            Valencia      1      2      A   
26/11/11     I1            Atalanta              Napoli      1      1      D   
26/11/11     I1               Lazio            Juventus      0      1      A   
26/11/11     I1               Lecce             Catania      0      1      A   
26/11/11     I1              Novara               Parma      2      1      H   
26/11/11     D1            Augsburg           Wolfsburg      2      0      H   
26/11/11     D1            Dortmund          Schalke 04      2      0      H   
26/11/11     D1            Hannover             Hamburg      1      1      D   
26/11/11     D1              Hertha          Leverkusen      3      3      D   
26/11/11     D1          Hoffenheim            Freiburg      1      1      D   
26/11/11     D1            Nurnberg      Kaiserslautern      1      0      H   
26/11/11     T1         Galatasaray           Sivasspor      2      1      H   
26/11/11     T1            Orduspor  Mersin Idman Yurdu      0      1      A   
26/11/11     T1          Samsunspor         Antalyaspor      1      0      H   
26/11/11     E2         Bournemouth              Oldham      0      0      D   
26/11/11     E2                Bury             Preston      1      0      H   
26/11/11     E2            Carlisle          Colchester      1      0      H   
26/11/11     E2        Chesterfield    Sheffield United      0      1      A   
26/11/11     E2              Exeter            Tranmere      3      0      H   
26/11/11     E2          Hartlepool              Yeovil      0      1      A   
26/11/11     E2  Milton Keynes Dons             Wycombe      4      3      H   
26/11/11     E2        Notts County          Scunthorpe      3      2      H   
26/11/11     E2            Rochdale           Brentford      1      2      A   
26/11/11     E2      Sheffield Weds       Leyton Orient      1      0      H   
26/11/11     E2           Stevenage             Walsall      0      0      D   

         season  
date             
26/11/11  11-12  
26/11/11  11-12  
26/11/11  11-12  
26/11/11  11-12  
26/11/11  11-12  
26/11/11  11-12  
26/11/11  11-12  
26/11/11  11-12  
26/11/11  11-12  
26/11/11  11-12  
26/11/11  11-12  
26/11/11  11-12  
26/11/11  11-12  
26/11/11  11-12  
26/11/11  11-12  
26/11/11  11-12  
26/11/11  11-12  
26/11/11  11-12  
26/11/11  11-12  
26/11/11  11-12  
26/11/11  11-12  
26/11/11  11-12  
26/11/11  11-12  
26/11/11  11-12  
26/11/11  11-12  
26/11/11  11-12  
26/11/11  11-12  


26/11/12
         league         home           away  hgoal  agoal result season
date                                                                   
26/11/12    SP1     Zaragoza          Celta      0      1      A  12-13
26/11/12     I1     Cagliari         Napoli      0      1      A  12-13
26/11/12     I1        Parma          Inter      1      0      H  12-13
26/11/12     T1  Trabzonspor  Eskisehirspor      0      3      A  12-13


26/11/13
         league              home                away  hgoal  agoal result  \
date                                                                         
26/11/13     E2          Bradford        Notts County      1      1      D   
26/11/13     E2         Brentford           Peterboro      3      2      H   
26/11/13     E2      Bristol City       Leyton Orient      2      2      D   
26/11/13     E2          Carlisle               Crewe      2      1      H   
26/11/13     E2        Colchester  Milton Keynes Dons      3      1      H   
26/11/13     E2          Coventry           Rotherham      0      3      A   
26/11/13     E2      Crawley Town             Swindon      0      0      D   
26/11/13     E2        Gillingham           Stevenage      3      2      H   
26/11/13     E2         Port Vale             Preston      0      2      A   
26/11/13     E2  Sheffield United             Walsall      1      1      D   
26/11/13     E2        Shrewsbury              Oldham      1      2      A   
26/11/13     E2            Wolves            Tranmere      2      0      H   

         season  
date             
26/11/13  13-14  
26/11/13  13-14  
26/11/13  13-14  
26/11/13  13-14  
26/11/13  13-14  
26/11/13  13-14  
26/11/13  13-14  
26/11/13  13-14  
26/11/13  13-14  
26/11/13  13-14  
26/11/13  13-14  
26/11/13  13-14  


26/12/11
         league           home                away  hgoal  agoal result season
date                                                                          
26/12/11     E2      Brentford         Bournemouth      1      1      D  11-12
26/12/11     E2     Colchester           Stevenage      1      6      A  11-12
26/12/11     E2   Huddersfield        Chesterfield      1      0      H  11-12
26/12/11     E2  Leyton Orient  Milton Keynes Dons      0      3      A  11-12
26/12/11     E2         Oldham          Hartlepool      0      1      A  11-12
26/12/11     E2        Preston            Carlisle      3      3      D  11-12
26/12/11     E2     Scunthorpe                Bury      1      3      A  11-12
26/12/11     E2        Walsall      Sheffield Weds      2      1      H  11-12
26/12/11     E2        Wycombe              Exeter      3      1      H  11-12
26/12/11     E2         Yeovil            Charlton      2      3      A  11-12


26/12/12
         league                home          away  hgoal  agoal result season
date                                                                         
26/12/12     E2         Bournemouth        Yeovil      3      0      H  12-13
26/12/12     E2            Carlisle    Hartlepool      3      0      H  12-13
26/12/12     E2          Colchester     Brentford      1      3      A  12-13
26/12/12     E2  Milton Keynes Dons       Walsall      2      4      A  12-13
26/12/12     E2              Oldham     Doncaster      1      2      A  12-13
26/12/12     E2          Portsmouth  Crawley Town      1      2      A  12-13
26/12/12     E2             Preston          Bury      0      0      D  12-13
26/12/12     E2    Sheffield United    Scunthorpe      3      0      H  12-13
26/12/12     E2          Shrewsbury  Notts County      2      2      D  12-13
26/12/12     E2           Stevenage      Coventry      1      3      A  12-13
26/12/12     E2            Tranmere         Crewe      2      1      H  12-13


26/12/13
         league              home                away  hgoal  agoal result  \
date                                                                         
26/12/13     E2          Bradford           Rotherham      0      1      A   
26/12/13     E2         Brentford             Swindon      3      2      H   
26/12/13     E2      Bristol City             Walsall      1      0      H   
26/12/13     E2          Carlisle             Preston      0      1      A   
26/12/13     E2        Colchester           Stevenage      4      0      H   
26/12/13     E2          Coventry           Peterboro      4      2      H   
26/12/13     E2      Crawley Town  Milton Keynes Dons      0      2      A   
26/12/13     E2        Gillingham       Leyton Orient      1      2      A   
26/12/13     E2         Port Vale        Notts County      2      1      H   
26/12/13     E2  Sheffield United              Oldham      1      1      D   
26/12/13     E2        Shrewsbury            Tranmere      0      1      A   
26/12/13     E2            Wolves               Crewe      2      0      H   

         season  
date             
26/12/13  13-14  
26/12/13  13-14  
26/12/13  13-14  
26/12/13  13-14  
26/12/13  13-14  
26/12/13  13-14  
26/12/13  13-14  
26/12/13  13-14  
26/12/13  13-14  
26/12/13  13-14  
26/12/13  13-14  
26/12/13  13-14  


26/12/14
         league            home                away  hgoal  agoal result  \
date                                                                       
26/12/14     T1  Genclerbirligi         Galatasaray      1      1      D   
26/12/14     E2    Bristol City              Yeovil      2      1      H   
26/12/14     E2    Chesterfield           Peterboro      3      2      H   
26/12/14     E2      Colchester          Gillingham      1      2      A   
26/12/14     E2       Doncaster            Coventry      2      0      H   
26/12/14     E2  Fleetwood Town            Bradford      0      2      A   
26/12/14     E2   Leyton Orient        Crawley Town      4      1      H   
26/12/14     E2    Notts County  Milton Keynes Dons      0      1      A   
26/12/14     E2          Oldham               Crewe      1      2      A   
26/12/14     E2       Port Vale    Sheffield United      2      1      H   
26/12/14     E2         Preston            Barnsley      1      0      H   
26/12/14     E2      Scunthorpe            Rochdale      2      1      H   
26/12/14     E2         Walsall             Swindon      1      4      A   

         season  
date             
26/12/14  14-15  
26/12/14  14-15  
26/12/14  14-15  
26/12/14  14-15  
26/12/14  14-15  
26/12/14  14-15  
26/12/14  14-15  
26/12/14  14-15  
26/12/14  14-15  
26/12/14  14-15  
26/12/14  14-15  
26/12/14  14-15  
26/12/14  14-15  


26/12/15
         league         home            away  hgoal  agoal result season
date                                                                    
26/12/15     T1  Antalyaspor   Gaziantepspor      0      0      D  15-16
26/12/15     T1    Kasimpasa     Trabzonspor      1      1      D  15-16
26/12/15     T1     Rizespor      Buyuksehyr      2      1      H  15-16
26/12/15     E2   Colchester        Southend      0      2      A  15-16
26/12/15     E2     Coventry       Port Vale      1      0      H  15-16
26/12/15     E2    Doncaster      Scunthorpe      0      1      A  15-16
26/12/15     E2     Millwall         Walsall      0      1      A  15-16
26/12/15     E2    Peterboro    Chesterfield      2      0      H  15-16
26/12/15     E2   Shrewsbury  Fleetwood Town      1      1      D  15-16
26/12/15     E2      Swindon      Gillingham      1      3      A  15-16


27/01/12
         league          home         away  hgoal  agoal result season
date                                                                  
27/01/12     D1      Hannover     Nurnberg      1      0      H  11-12
27/01/12     E2  Chesterfield  Bournemouth      1      0      H  11-12


27/01/13
         league                home           away  hgoal  agoal result season
date                                                                          
27/01/13    SP1          Ath Bilbao     Ath Madrid      3      0      H  12-13
27/01/13    SP1           Barcelona        Osasuna      5      1      H  12-13
27/01/13    SP1            Mallorca         Malaga      2      3      A  12-13
27/01/13    SP1         Real Madrid         Getafe      4      0      H  12-13
27/01/13    SP1           Vallecano          Betis      3      0      H  12-13
27/01/13     I1            Atalanta          Milan      0      1      A  12-13
27/01/13     I1             Bologna           Roma      3      3      D  12-13
27/01/13     I1            Cagliari        Palermo      1      1      D  12-13
27/01/13     I1             Catania     Fiorentina      2      1      H  12-13
27/01/13     I1               Inter         Torino      2      2      D  12-13
27/01/13     I1               Parma         Napoli      1      2      A  12-13
27/01/13     I1           Sampdoria        Pescara      6      0      H  12-13
27/01/13     I1             Udinese          Siena      1      0      H  12-13
27/01/13     T1          Elazigspor    Trabzonspor      3      1      H  12-13
27/01/13     T1         Galatasaray       Besiktas      2      1      H  12-13
27/01/13     T1         Kayserispor    Antalyaspor      2      0      H  12-13
27/01/13     T1  Mersin Idman Yurdu      Sivasspor      3      0      H  12-13
27/01/13     D1             Hamburg  Werder Bremen      3      2      H  12-13
27/01/13     D1           Stuttgart  Bayern Munich      0      2      A  12-13


27/01/14
         league        home       away  hgoal  agoal result season
date                                                              
27/01/14     T1  Fenerbahce  Konyaspor      2      1      H  13-14
27/01/14    SP1    Sociedad      Elche      4      0      H  13-14


27/02/15
         league           home         away  hgoal  agoal result season
date                                                                   
27/02/15     D1  Bayern Munich      FC Koln      4      1      H  14-15
27/02/15     T1    Galatasaray  Erciyesspor      3      1      H  14-15
27/02/15    SP1        Espanol      Cordoba      1      0      H  14-15


27/02/16
         league                home              away  hgoal  agoal result  \
date                                                                         
27/02/16     T1       Eskisehirspor         Bursaspor      0      1      A   
27/02/16     T1  Mersin Idman Yurdu         Konyaspor      0      2      A   
27/02/16     T1            Rizespor         Kasimpasa      2      0      H   
27/02/16     T1         Trabzonspor       Osmanlispor      1      2      A   
27/02/16     D1             Hamburg        Ingolstadt      1      1      D   
27/02/16     D1           Stuttgart          Hannover      1      2      A   
27/02/16     D1       Werder Bremen         Darmstadt      2      2      D   
27/02/16     D1           Wolfsburg     Bayern Munich      0      2      A   
27/02/16     I1              Empoli              Roma      1      3      A   
27/02/16     I1               Milan            Torino      1      0      H   
27/02/16    SP1               Betis         Vallecano      2      2      D   
27/02/16    SP1              Getafe             Celta      0      1      A   
27/02/16    SP1         Real Madrid        Ath Madrid      0      1      A   
27/02/16    SP1            Sociedad            Malaga      1      1      D   
27/02/16    SP1            Sp Gijon           Espanol      2      4      A   
27/02/16     E2          Colchester        Shrewsbury      0      0      D   
27/02/16     E2            Coventry    Fleetwood Town      1      2      A   
27/02/16     E2               Crewe          Barnsley      1      2      A   
27/02/16     E2           Doncaster          Millwall      1      1      D   
27/02/16     E2          Gillingham      Chesterfield      1      2      A   
27/02/16     E2           Peterboro           Swindon      1      2      A   
27/02/16     E2            Rochdale  Sheffield United      2      0      H   
27/02/16     E2          Scunthorpe            Oldham      1      1      D   
27/02/16     E2               Wigan              Bury      3      0      H   

         season  
date             
27/02/16  15-16  
27/02/16  15-16  
27/02/16  15-16  
27/02/16  15-16  
27/02/16  15-16  
27/02/16  15-16  
27/02/16  15-16  
27/02/16  15-16  
27/02/16  15-16  
27/02/16  15-16  
27/02/16  15-16  
27/02/16  15-16  
27/02/16  15-16  
27/02/16  15-16  
27/02/16  15-16  
27/02/16  15-16  
27/02/16  15-16  
27/02/16  15-16  
27/02/16  15-16  
27/02/16  15-16  
27/02/16  15-16  
27/02/16  15-16  
27/02/16  15-16  
27/02/16  15-16  


27/03/12
         league                home           away  hgoal  agoal result season
date                                                                          
27/03/12     E2  Milton Keynes Dons       Carlisle      1      2      A  11-12
27/03/12     E2              Oldham  Leyton Orient      0      1      A  11-12
27/03/12     E2             Preston      Brentford      1      3      A  11-12
27/03/12     E2           Stevenage    Bournemouth      2      2      D  11-12
27/03/12     E2             Walsall     Colchester      3      1      H  11-12


27/03/14
         league      home        away  hgoal  agoal result season
date                                                             
27/03/14    SP1   Almeria    Valencia      2      2      D  13-14
27/03/14    SP1    Getafe  Villarreal      0      1      A  13-14
27/03/14    SP1   Levante       Betis      1      3      A  13-14
27/03/14    SP1  Sociedad  Valladolid      1      0      H  13-14
27/03/14     I1     Inter     Udinese      0      0      D  13-14


27/04/13
         league                home                  away  hgoal  agoal  \
date                                                                      
27/04/13    SP1          Ath Bilbao             Barcelona      2      2   
27/04/13    SP1          Ath Madrid           Real Madrid      1      2   
27/04/13    SP1             Levante                 Celta      0      1   
27/04/13    SP1            Zaragoza              Mallorca      3      2   
27/04/13     I1            Atalanta               Bologna      1      1   
27/04/13     I1            Cagliari               Udinese      0      1   
27/04/13     I1             Pescara                Napoli      0      3   
27/04/13     T1            Besiktas              Orduspor      2      0   
27/04/13     T1           Bursaspor  Akhisar Belediyespor      1      1   
27/04/13     T1          Elazigspor           Karabukspor      1      0   
27/04/13     T1           Sivasspor            Buyuksehyr      4      1   
27/04/13     T1         Trabzonspor        Genclerbirligi      2      0   
27/04/13     E2           Brentford             Doncaster      0      1   
27/04/13     E2                Bury                Yeovil      3      2   
27/04/13     E2            Carlisle            Colchester      0      2   
27/04/13     E2        Crawley Town            Hartlepool      2      2   
27/04/13     E2               Crewe               Walsall      2      0   
27/04/13     E2       Leyton Orient                Oldham      1      1   
27/04/13     E2        Notts County              Coventry      2      2   
27/04/13     E2          Scunthorpe               Swindon      3      1   
27/04/13     E2    Sheffield United               Preston      0      0   
27/04/13     E2          Shrewsbury            Portsmouth      3      2   
27/04/13     E2           Stevenage    Milton Keynes Dons      0      2   
27/04/13     E2            Tranmere           Bournemouth      0      0   
27/04/13     D1            Augsburg             Stuttgart      3      0   
27/04/13     D1       Bayern Munich              Freiburg      1      0   
27/04/13     D1  Fortuna Dusseldorf              Dortmund      1      2   
27/04/13     D1          Hoffenheim              Nurnberg      2      1   
27/04/13     D1          Leverkusen         Werder Bremen      1      0   
27/04/13     D1           Wolfsburg            M'gladbach      3      1   

         result season  
date                    
27/04/13      D  12-13  
27/04/13      A  12-13  
27/04/13      A  12-13  
27/04/13      H  12-13  
27/04/13      D  12-13  
27/04/13      A  12-13  
27/04/13      A  12-13  
27/04/13      H  12-13  
27/04/13      D  12-13  
27/04/13      H  12-13  
27/04/13      H  12-13  
27/04/13      H  12-13  
27/04/13      A  12-13  
27/04/13      H  12-13  
27/04/13      A  12-13  
27/04/13      D  12-13  
27/04/13      H  12-13  
27/04/13      D  12-13  
27/04/13      D  12-13  
27/04/13      H  12-13  
27/04/13      D  12-13  
27/04/13      H  12-13  
27/04/13      A  12-13  
27/04/13      D  12-13  
27/04/13      H  12-13  
27/04/13      H  12-13  
27/04/13      A  12-13  
27/04/13      H  12-13  
27/04/13      H  12-13  
27/04/13      H  12-13  


27/04/14
         league           home                  away  hgoal  agoal result  \
date                                                                        
27/04/14     D1       Augsburg               Hamburg      3      1      H   
27/04/14     D1     Schalke 04            M'gladbach      0      1      A   
27/04/14     T1     Elazigspor           Galatasaray      0      1      A   
27/04/14     T1  Eskisehirspor           Erciyesspor      0      1      A   
27/04/14     T1     Fenerbahce              Rizespor      0      0      D   
27/04/14     T1      Kasimpasa           Antalyaspor      2      0      H   
27/04/14     T1    Kayserispor           Karabukspor      1      3      A   
27/04/14     T1      Konyaspor  Akhisar Belediyespor      4      0      H   
27/04/14     T1      Sivasspor              Besiktas      3      0      H   
27/04/14    SP1     Ath Bilbao               Sevilla      3      1      H   
27/04/14    SP1        Espanol               Almeria      1      2      A   
27/04/14    SP1       Valencia            Ath Madrid      0      1      A   
27/04/14    SP1     Villarreal             Barcelona      2      3      A   
27/04/14     I1       Atalanta                 Genoa      1      1      D   
27/04/14     I1       Cagliari                 Parma      1      0      H   
27/04/14     I1        Livorno                 Lazio      0      2      A   
27/04/14     I1      Sampdoria                Chievo      2      1      H   
27/04/14     I1         Torino               Udinese      2      0      H   
27/04/14     I1         Verona               Catania      4      0      H   

         season  
date             
27/04/14  13-14  
27/04/14  13-14  
27/04/14  13-14  
27/04/14  13-14  
27/04/14  13-14  
27/04/14  13-14  
27/04/14  13-14  
27/04/14  13-14  
27/04/14  13-14  
27/04/14  13-14  
27/04/14  13-14  
27/04/14  13-14  
27/04/14  13-14  
27/04/14  13-14  
27/04/14  13-14  
27/04/14  13-14  
27/04/14  13-14  
27/04/14  13-14  
27/04/14  13-14  


27/04/15
         league      home         away  hgoal  agoal result season
date                                                              
27/04/15     T1  Besiktas  Karabukspor      2      1      H  14-15
27/04/15    SP1  Valencia      Granada      4      0      H  14-15


27/08/11
         league                home              away  hgoal  agoal result  \
date                                                                         
27/08/11    SP1             Granada             Betis      0      1      A   
27/08/11    SP1            Sp Gijon          Sociedad      1      2      A   
27/08/11    SP1            Valencia         Santander      4      3      H   
27/08/11     D1            Freiburg         Wolfsburg      3      0      H   
27/08/11     D1             Hamburg           FC Koln      3      4      A   
27/08/11     D1          Hoffenheim     Werder Bremen      1      2      A   
27/08/11     D1      Kaiserslautern     Bayern Munich      0      3      A   
27/08/11     D1          Leverkusen          Dortmund      0      0      D   
27/08/11     D1            Nurnberg          Augsburg      1      0      H   
27/08/11     E2         Bournemouth           Walsall      0      2      A   
27/08/11     E2           Brentford          Tranmere      0      2      A   
27/08/11     E2                Bury          Charlton      1      2      A   
27/08/11     E2          Colchester            Oldham      4      1      H   
27/08/11     E2              Exeter      Chesterfield      2      1      H   
27/08/11     E2        Huddersfield           Wycombe      3      0      H   
27/08/11     E2       Leyton Orient          Carlisle      1      2      A   
27/08/11     E2  Milton Keynes Dons         Stevenage      1      0      H   
27/08/11     E2             Preston      Notts County      2      0      H   
27/08/11     E2            Rochdale        Hartlepool      1      3      A   
27/08/11     E2      Sheffield Weds        Scunthorpe      3      2      H   
27/08/11     E2              Yeovil  Sheffield United      0      1      A   

         season  
date             
27/08/11  11-12  
27/08/11  11-12  
27/08/11  11-12  
27/08/11  11-12  
27/08/11  11-12  
27/08/11  11-12  
27/08/11  11-12  
27/08/11  11-12  
27/08/11  11-12  
27/08/11  11-12  
27/08/11  11-12  
27/08/11  11-12  
27/08/11  11-12  
27/08/11  11-12  
27/08/11  11-12  
27/08/11  11-12  
27/08/11  11-12  
27/08/11  11-12  
27/08/11  11-12  
27/08/11  11-12  
27/08/11  11-12  


27/08/12
         league         home         away  hgoal  agoal result season
date                                                                 
27/08/12    SP1   Ath Madrid   Ath Bilbao      4      0      H  12-13
27/08/12    SP1   Valladolid      Levante      2      0      H  12-13
27/08/12     T1  Antalyaspor  Kayserispor      3      0      H  12-13


27/08/13
         league      home           away  hgoal  agoal result season
date                                                                
27/08/13     D1  Freiburg  Bayern Munich      1      1      D  13-14


27/09/11
         league                home      away  hgoal  agoal result season
date                                                                     
27/09/11     E2  Milton Keynes Dons  Charlton      1      1      D  11-12
27/09/11     E2             Wycombe   Preston      3      4      A  11-12


27/09/12
         league   home     away  hgoal  agoal result season
date                                                       
27/09/12     I1  Siena  Bologna      1      0      H  12-13


27/09/13
         league        home                  away  hgoal  agoal result season
date                                                                         
27/09/13     D1    Augsburg            M'gladbach      2      2      D  13-14
27/09/13     T1   Bursaspor  Akhisar Belediyespor      0      0      D  13-14
27/09/13    SP1  Valladolid                Malaga      2      2      D  13-14


27/09/14
         league              home                away  hgoal  agoal result  \
date                                                                         
27/09/14     D1           FC Koln       Bayern Munich      0      2      A   
27/09/14     D1          Freiburg          Leverkusen      0      0      D   
27/09/14     D1         Paderborn          M'gladbach      1      2      A   
27/09/14     D1        Schalke 04            Dortmund      2      1      H   
27/09/14     D1         Stuttgart            Hannover      1      0      H   
27/09/14     D1         Wolfsburg       Werder Bremen      2      1      H   
27/09/14     I1          Atalanta            Juventus      0      3      A   
27/09/14     I1              Roma              Verona      2      0      H   
27/09/14     T1          Besiktas       Eskisehirspor      1      1      D   
27/09/14     T1       Trabzonspor           Kasimpasa      1      1      D   
27/09/14     E2          Barnsley             Swindon      0      3      A   
27/09/14     E2          Bradford           Port Vale      1      1      D   
27/09/14     E2      Bristol City  Milton Keynes Dons      3      2      H   
27/09/14     E2      Chesterfield        Notts County      1      1      D   
27/09/14     E2          Coventry             Preston      0      2      A   
27/09/14     E2      Crawley Town              Yeovil      2      0      H   
27/09/14     E2             Crewe          Colchester      0      3      A   
27/09/14     E2     Leyton Orient            Rochdale      2      3      A   
27/09/14     E2            Oldham          Scunthorpe      3      2      H   
27/09/14     E2         Peterboro      Fleetwood Town      1      0      H   
27/09/14     E2  Sheffield United          Gillingham      2      1      H   
27/09/14     E2           Walsall           Doncaster      3      0      H   
27/09/14    SP1        Ath Bilbao               Eibar      0      0      D   
27/09/14    SP1        Ath Madrid             Sevilla      4      0      H   
27/09/14    SP1         Barcelona             Granada      6      0      H   
27/09/14    SP1           Levante           Vallecano      0      2      A   
27/09/14    SP1        Villarreal         Real Madrid      0      2      A   

         season  
date             
27/09/14  14-15  
27/09/14  14-15  
27/09/14  14-15  
27/09/14  14-15  
27/09/14  14-15  
27/09/14  14-15  
27/09/14  14-15  
27/09/14  14-15  
27/09/14  14-15  
27/09/14  14-15  
27/09/14  14-15  
27/09/14  14-15  
27/09/14  14-15  
27/09/14  14-15  
27/09/14  14-15  
27/09/14  14-15  
27/09/14  14-15  
27/09/14  14-15  
27/09/14  14-15  
27/09/14  14-15  
27/09/14  14-15  
27/09/14  14-15  
27/09/14  14-15  
27/09/14  14-15  
27/09/14  14-15  
27/09/14  14-15  
27/09/14  14-15  


27/09/15
         league           home                away  hgoal  agoal result season
date                                                                          
27/09/15     T1    Antalyaspor           Sivasspor      1      1      D  15-16
27/09/15     T1       Besiktas          Fenerbahce      3      2      H  15-16
27/09/15     T1      Konyaspor  Mersin Idman Yurdu      2      0      H  15-16
27/09/15     D1       Dortmund           Darmstadt      2      2      D  15-16
27/09/15     D1  Ein Frankfurt              Hertha      1      1      D  15-16
27/09/15     I1        Bologna             Udinese      1      2      A  15-16
27/09/15     I1          Genoa               Milan      1      0      H  15-16
27/09/15     I1          Inter          Fiorentina      1      4      A  15-16
27/09/15     I1       Sassuolo              Chievo      1      1      D  15-16
27/09/15     I1         Torino             Palermo      2      1      H  15-16
27/09/15     I1         Verona               Lazio      1      2      A  15-16
27/09/15    SP1         Getafe             Levante      3      0      H  15-16
27/09/15    SP1      La Coruna             Espanol      3      0      H  15-16
27/09/15    SP1       Sociedad          Ath Bilbao      0      0      D  15-16
27/09/15    SP1       Sp Gijon               Betis      1      2      A  15-16


27/10/11
         league            home                away  hgoal  agoal result  \
date                                                                       
27/10/11    SP1      Ath Bilbao          Ath Madrid      3      0      H   
27/10/11    SP1         Espanol               Betis      1      0      H   
27/10/11     I1         Palermo               Lecce      2      0      H   
27/10/11     T1        Besiktas          Fenerbahce      2      2      D   
27/10/11     T1  Genclerbirligi         Kayserispor      1      0      H   
27/10/11     T1      Manisaspor          Ankaragucu      2      0      H   
27/10/11     T1       Sivasspor  Mersin Idman Yurdu      1      0      H   

         season  
date             
27/10/11  11-12  
27/10/11  11-12  
27/10/11  11-12  
27/10/11  11-12  
27/10/11  11-12  
27/10/11  11-12  
27/10/11  11-12  


27/10/12
         league                home                  away  hgoal  agoal  \
date                                                                      
27/10/12    SP1               Betis              Valencia      1      0   
27/10/12    SP1               Celta             La Coruna      1      1   
27/10/12    SP1             Espanol                Malaga      0      0   
27/10/12    SP1           Vallecano             Barcelona      0      5   
27/10/12     I1               Milan                 Genoa      1      0   
27/10/12     I1               Siena               Palermo      0      0   
27/10/12     T1         Galatasaray           Kayserispor      3      0   
27/10/12     T1  Mersin Idman Yurdu            Buyuksehyr      2      0   
27/10/12     T1           Sivasspor  Akhisar Belediyespor      1      2   
27/10/12     E2           Brentford            Hartlepool      2      2   
27/10/12     E2                Bury               Walsall      1      1   
27/10/12     E2            Carlisle           Bournemouth      2      4   
27/10/12     E2        Crawley Town                Oldham      1      1   
27/10/12     E2               Crewe                Yeovil      0      1   
27/10/12     E2       Leyton Orient              Coventry      0      1   
27/10/12     E2        Notts County             Doncaster      0      2   
27/10/12     E2          Scunthorpe    Milton Keynes Dons      0      3   
27/10/12     E2          Shrewsbury            Colchester      2      2   
27/10/12     E2           Stevenage               Swindon      0      4   
27/10/12     E2            Tranmere               Preston      1      1   
27/10/12     D1  Fortuna Dusseldorf             Wolfsburg      1      4   
27/10/12     D1            Freiburg              Dortmund      0      2   
27/10/12     D1      Greuther Furth         Werder Bremen      1      1   
27/10/12     D1               Mainz            Hoffenheim      3      0   
27/10/12     D1          Schalke 04              Nurnberg      1      0   

         result season  
date                    
27/10/12      H  12-13  
27/10/12      D  12-13  
27/10/12      D  12-13  
27/10/12      A  12-13  
27/10/12      H  12-13  
27/10/12      D  12-13  
27/10/12      H  12-13  
27/10/12      H  12-13  
27/10/12      A  12-13  
27/10/12      D  12-13  
27/10/12      D  12-13  
27/10/12      A  12-13  
27/10/12      D  12-13  
27/10/12      A  12-13  
27/10/12      A  12-13  
27/10/12      A  12-13  
27/10/12      A  12-13  
27/10/12      D  12-13  
27/10/12      A  12-13  
27/10/12      D  12-13  
27/10/12      A  12-13  
27/10/12      A  12-13  
27/10/12      D  12-13  
27/10/12      H  12-13  
27/10/12      H  12-13  


27/10/13
         league           home           away  hgoal  agoal result season
date                                                                     
27/10/13     D1       Freiburg        Hamburg      0      3      A  13-14
27/10/13     D1     M'gladbach  Ein Frankfurt      4      1      H  13-14
27/10/13     T1  Eskisehirspor       Rizespor      4      1      H  13-14
27/10/13     T1    Kayserispor    Galatasaray      2      4      A  13-14
27/10/13     T1      Konyaspor      Bursaspor      0      1      A  13-14
27/10/13    SP1     Ath Madrid          Betis      5      0      H  13-14
27/10/13    SP1        Sevilla        Osasuna      2      1      H  13-14
27/10/13    SP1       Sociedad        Almeria      3      0      H  13-14
27/10/13    SP1     Villarreal       Valencia      4      1      H  13-14
27/10/13     I1        Bologna        Livorno      1      0      H  13-14
27/10/13     I1        Catania       Sassuolo      0      0      D  13-14
27/10/13     I1         Chievo     Fiorentina      1      2      A  13-14
27/10/13     I1       Juventus          Genoa      2      0      H  13-14
27/10/13     I1          Lazio       Cagliari      2      0      H  13-14
27/10/13     I1         Napoli         Torino      2      0      H  13-14
27/10/13     I1          Parma          Milan      3      2      H  13-14
27/10/13     I1        Udinese           Roma      0      1      A  13-14


27/10/14
         league         home      away  hgoal  agoal result season
date                                                              
27/10/14     T1  Erciyesspor  Besiktas      3      2      H  14-15


27/10/15
         league      home       away  hgoal  agoal result season
date                                                            
27/10/15     I1   Bologna      Inter      0      1      A  15-16
27/10/15     E2  Millwall  Doncaster      2      0      H  15-16


27/11/11
         league           home           away  hgoal  agoal result season
date                                                                     
27/11/11    SP1     Ath Bilbao        Granada      0      1      A  11-12
27/11/11    SP1          Betis       Sociedad      2      3      A  11-12
27/11/11    SP1        Espanol        Osasuna      1      2      A  11-12
27/11/11    SP1        Levante       Sp Gijon      4      0      H  11-12
27/11/11    SP1       Mallorca      Santander      2      1      H  11-12
27/11/11    SP1       Zaragoza        Sevilla      0      1      A  11-12
27/11/11     I1       Cagliari        Bologna      1      1      D  11-12
27/11/11     I1         Cesena          Genoa      2      0      H  11-12
27/11/11     I1          Milan         Chievo      4      0      H  11-12
27/11/11     I1        Palermo     Fiorentina      2      0      H  11-12
27/11/11     I1          Siena          Inter      0      1      A  11-12
27/11/11     D1          Mainz  Bayern Munich      3      2      H  11-12
27/11/11     D1  Werder Bremen      Stuttgart      2      0      H  11-12
27/11/11     T1     Buyuksehyr  Gaziantepspor      3      1      H  11-12
27/11/11     T1  Eskisehirspor     Ankaragucu      3      2      H  11-12
27/11/11     T1     Manisaspor    Kayserispor      1      0      H  11-12
27/11/11     T1    Trabzonspor       Besiktas      0      1      A  11-12


27/11/12
         league           home                away  hgoal  agoal result season
date                                                                          
27/11/12     I1          Lazio             Udinese      3      0      H  12-13
27/11/12     E2      Doncaster              Oldham      1      0      H  12-13
27/11/12     D1       Dortmund  Fortuna Dusseldorf      1      1      D  12-13
27/11/12     D1  Ein Frankfurt               Mainz      1      3      A  12-13
27/11/12     D1        Hamburg          Schalke 04      3      1      H  12-13
27/11/12     D1       Hannover      Greuther Furth      2      0      H  12-13


27/11/15
         league         home         away  hgoal  agoal result season
date                                                                 
27/11/15     T1  Antalyaspor  Osmanlispor      1      1      D  15-16
27/11/15     T1    Bursaspor  Kayserispor      1      2      A  15-16
27/11/15     T1     Rizespor    Konyaspor      0      0      D  15-16
27/11/15     D1    Darmstadt      FC Koln      0      0      D  15-16
27/11/15    SP1      Levante        Betis      0      1      A  15-16


27/12/11
         league              home          away  hgoal  agoal result season
date                                                                       
27/12/11     E2  Sheffield United  Notts County      2      1      H  11-12


27/12/13
         league            home                  away  hgoal  agoal result  \
date                                                                         
27/12/13     T1  Genclerbirligi              Besiktas      1      0      H   
27/12/13     T1       Kasimpasa  Akhisar Belediyespor      2      4      A   

         season  
date             
27/12/13  13-14  
27/12/13  13-14  


27/12/14
         league         home                away  hgoal  agoal result season
date                                                                        
27/12/14     T1   Buyuksehyr         Erciyesspor      3      1      H  14-15
27/12/14     T1   Fenerbahce  Mersin Idman Yurdu      1      0      H  14-15
27/12/14     T1  Karabukspor       Balikesirspor      0      1      A  14-15


27/12/15
         league                  home                away  hgoal  agoal  \
date                                                                      
27/12/15     T1  Akhisar Belediyespor         Osmanlispor      0      0   
27/12/15     T1              Besiktas           Konyaspor      4      0   
27/12/15     T1             Bursaspor  Mersin Idman Yurdu      2      1   
27/12/15     T1           Kayserispor         Galatasaray      1      1   

         result season  
date                    
27/12/15      D  15-16  
27/12/15      H  15-16  
27/12/15      H  15-16  
27/12/15      D  15-16  


28/01/12
         league           home            away  hgoal  agoal result season
date                                                                      
28/01/12    SP1        Espanol        Mallorca      1      0      H  11-12
28/01/12    SP1    Real Madrid        Zaragoza      3      1      H  11-12
28/01/12    SP1      Vallecano      Ath Bilbao      2      3      A  11-12
28/01/12    SP1     Villarreal       Barcelona      0      0      D  11-12
28/01/12     I1        Catania           Parma      1      1      D  11-12
28/01/12     I1       Juventus         Udinese      2      1      H  11-12
28/01/12     D1       Augsburg  Kaiserslautern      2      2      D  11-12
28/01/12     D1  Bayern Munich       Wolfsburg      2      0      H  11-12
28/01/12     D1       Dortmund      Hoffenheim      3      1      H  11-12
28/01/12     D1        FC Koln      Schalke 04      1      4      A  11-12
28/01/12     D1         Hertha         Hamburg      1      2      A  11-12
28/01/12     D1  Werder Bremen      Leverkusen      1      1      D  11-12
28/01/12     T1    Antalyaspor  Genclerbirligi      2      2      D  11-12
28/01/12     T1      Bursaspor     Galatasaray      1      0      H  11-12
28/01/12     E2      Brentford         Wycombe      5      2      H  11-12
28/01/12     E2         Exeter        Charlton      0      1      A  11-12
28/01/12     E2     Hartlepool        Carlisle      4      0      H  11-12
28/01/12     E2  Leyton Orient      Colchester      0      1      A  11-12
28/01/12     E2       Rochdale            Bury      3      0      H  11-12
28/01/12     E2       Tranmere    Huddersfield      1      1      D  11-12
28/01/12     E2         Yeovil         Preston      2      1      H  11-12


28/01/13
         league           home      away  hgoal  agoal result season
date                                                                
28/01/13    SP1        Sevilla   Granada      3      0      H  12-13
28/01/13     T1  Eskisehirspor  Orduspor      1      0      H  12-13


28/01/14
         league           home                away  hgoal  agoal result season
date                                                                          
28/01/14     E2       Bradford             Preston      0      0      D  13-14
28/01/14     E2      Brentford        Bristol City      3      1      H  13-14
28/01/14     E2       Carlisle  Milton Keynes Dons      3      0      H  13-14
28/01/14     E2  Leyton Orient            Coventry      2      0      H  13-14
28/01/14     E2         Oldham              Wolves      0      3      A  13-14
28/01/14     E2       Tranmere           Rotherham      1      2      A  13-14
28/01/14     E2        Walsall             Swindon      1      1      D  13-14


28/02/12
         league       home          away  hgoal  agoal result season
date                                                                
28/02/12     E2       Bury    Hartlepool      1      2      A  11-12
28/02/12     E2  Stevenage  Huddersfield      2      2      D  11-12


28/02/14
         league                  home         away  hgoal  agoal result season
date                                                                          
28/02/14     D1                Hertha     Freiburg      0      0      D  13-14
28/02/14     T1  Akhisar Belediyespor    Bursaspor      2      1      H  13-14
28/02/14     T1              Besiktas  Antalyaspor      0      0      D  13-14
28/02/14    SP1            Ath Bilbao      Granada      4      0      H  13-14


28/02/15
         league            home           away  hgoal  agoal result season
date                                                                      
28/02/15     D1        Dortmund     Schalke 04      3      0      H  14-15
28/02/15     D1   Ein Frankfurt        Hamburg      2      1      H  14-15
28/02/15     D1        Hannover      Stuttgart      1      1      D  14-15
28/02/15     D1          Hertha       Augsburg      1      0      H  14-15
28/02/15     D1      Hoffenheim          Mainz      2      0      H  14-15
28/02/15     D1      Leverkusen       Freiburg      1      0      H  14-15
28/02/15     I1          Chievo          Milan      0      0      D  14-15
28/02/15     T1  Genclerbirligi      Sivasspor      0      0      D  14-15
28/02/15     T1       Konyaspor     Fenerbahce      1      1      D  14-15
28/02/15     T1        Rizespor  Eskisehirspor      3      0      H  14-15
28/02/15     E2    Bristol City       Rochdale      1      0      H  14-15
28/02/15     E2           Crewe        Swindon      0      0      D  14-15
28/02/15     E2       Doncaster     Colchester      2      0      H  14-15
28/02/15     E2      Gillingham       Barnsley      0      1      A  14-15
28/02/15     E2    Notts County      Port Vale      0      1      A  14-15
28/02/15     E2          Oldham        Preston      0      4      A  14-15
28/02/15     E2       Peterboro       Bradford      2      0      H  14-15
28/02/15     E2      Scunthorpe         Yeovil      1      1      D  14-15
28/02/15     E2         Walsall  Leyton Orient      0      2      A  14-15
28/02/15    SP1         Almeria      La Coruna      0      0      D  14-15
28/02/15    SP1         Granada      Barcelona      1      3      A  14-15
28/02/15    SP1          Malaga         Getafe      3      2      H  14-15
28/02/15    SP1       Vallecano        Levante      4      2      H  14-15


28/02/16
         league            home                  away  hgoal  agoal result  \
date                                                                         
28/02/16     T1   Gaziantepspor           Galatasaray      2      0      H   
28/02/16     T1  Genclerbirligi  Akhisar Belediyespor      3      1      H   
28/02/16     T1       Sivasspor           Antalyaspor      0      0      D   
28/02/16     D1        Augsburg            M'gladbach      2      2      D   
28/02/16     D1        Dortmund            Hoffenheim      3      1      H   
28/02/16     D1   Ein Frankfurt            Schalke 04      0      0      D   
28/02/16     D1           Mainz            Leverkusen      3      1      H   
28/02/16     I1           Carpi              Atalanta      1      1      D   
28/02/16     I1          Chievo                 Genoa      1      0      H   
28/02/16     I1        Juventus                 Inter      2      0      H   
28/02/16     I1         Palermo               Bologna      0      0      D   
28/02/16     I1       Sampdoria             Frosinone      2      0      H   
28/02/16     I1         Udinese                Verona      2      0      H   
28/02/16    SP1       Barcelona               Sevilla      2      1      H   
28/02/16    SP1       La Coruna               Granada      0      1      A   
28/02/16    SP1        Valencia            Ath Bilbao      0      3      A   
28/02/16    SP1      Villarreal               Levante      3      0      H   

         season  
date             
28/02/16  15-16  
28/02/16  15-16  
28/02/16  15-16  
28/02/16  15-16  
28/02/16  15-16  
28/02/16  15-16  
28/02/16  15-16  
28/02/16  15-16  
28/02/16  15-16  
28/02/16  15-16  
28/02/16  15-16  
28/02/16  15-16  
28/02/16  15-16  
28/02/16  15-16  
28/02/16  15-16  
28/02/16  15-16  
28/02/16  15-16  


28/03/12
         league              home          away  hgoal  agoal result season
date                                                                       
28/03/12     E2  Sheffield United  Chesterfield      4      1      H  11-12


28/03/14
         league         home         away  hgoal  agoal result season
date                                                                 
28/03/14     D1   Schalke 04       Hertha      2      0      H  13-14
28/03/14     T1  Karabukspor     Besiktas      1      0      H  13-14
28/03/14     T1    Kasimpasa  Erciyesspor      3      0      H  13-14


28/03/15
         league              home        away  hgoal  agoal result season
date                                                                     
28/03/15     E2          Bradford      Oldham      2      0      H  14-15
28/03/15     E2      Bristol City    Barnsley      2      2      D  14-15
28/03/15     E2      Chesterfield     Walsall      1      0      H  14-15
28/03/15     E2      Crawley Town  Gillingham      1      2      A  14-15
28/03/15     E2     Leyton Orient   Port Vale      3      1      H  14-15
28/03/15     E2      Notts County  Scunthorpe      2      2      D  14-15
28/03/15     E2         Peterboro    Coventry      0      1      A  14-15
28/03/15     E2          Rochdale      Yeovil      2      1      H  14-15
28/03/15     E2  Sheffield United       Crewe      1      2      A  14-15


28/03/16
         league        home          away  hgoal  agoal result season
date                                                                 
28/03/16     E2        Bury    Gillingham      0      1      A  15-16
28/03/16     E2       Crewe      Bradford      0      1      A  15-16
28/03/16     E2   Doncaster     Blackpool      0      1      A  15-16
28/03/16     E2    Millwall        Burton      2      0      H  15-16
28/03/16     E2      Oldham  Chesterfield      1      0      H  15-16
28/03/16     E2   Port Vale      Barnsley      0      1      A  15-16
28/03/16     E2  Scunthorpe       Swindon      6      0      H  15-16
28/03/16     E2       Wigan      Rochdale      1      0      H  15-16


28/04/12
         league              home                away  hgoal  agoal result  \
date                                                                         
28/04/12    SP1           Espanol            Sp Gijon      0      3      A   
28/04/12    SP1            Getafe            Mallorca      1      3      A   
28/04/12    SP1           Levante             Granada      3      1      H   
28/04/12    SP1          Sociedad           Santander      3      0      H   
28/04/12    SP1        Villarreal             Osasuna      1      1      D   
28/04/12     I1          Cagliari              Chievo      0      0      D   
28/04/12     I1           Palermo             Catania      1      1      D   
28/04/12     I1              Roma              Napoli      2      2      D   
28/04/12     D1     Bayern Munich           Stuttgart      2      0      H   
28/04/12     D1          Freiburg             FC Koln      4      1      H   
28/04/12     D1           Hamburg               Mainz      0      0      D   
28/04/12     D1        Hoffenheim            Nurnberg      2      3      A   
28/04/12     D1    Kaiserslautern            Dortmund      2      5      A   
28/04/12     D1        Leverkusen            Hannover      1      0      H   
28/04/12     D1        M'gladbach            Augsburg      0      0      D   
28/04/12     D1        Schalke 04              Hertha      4      0      H   
28/04/12     D1         Wolfsburg       Werder Bremen      3      1      H   
28/04/12     E2         Brentford      Sheffield Weds      1      2      A   
28/04/12     E2              Bury              Oldham      0      0      D   
28/04/12     E2          Carlisle              Exeter      4      1      H   
28/04/12     E2        Colchester            Tranmere      4      2      H   
28/04/12     E2        Hartlepool       Leyton Orient      2      1      H   
28/04/12     E2           Preston            Charlton      2      2      D   
28/04/12     E2          Rochdale  Milton Keynes Dons      1      2      A   
28/04/12     E2        Scunthorpe         Bournemouth      1      1      D   
28/04/12     E2  Sheffield United           Stevenage      2      2      D   
28/04/12     E2           Walsall        Huddersfield      1      1      D   
28/04/12     E2           Wycombe        Notts County      3      4      A   
28/04/12     E2            Yeovil        Chesterfield      3      2      H   

         season  
date             
28/04/12  11-12  
28/04/12  11-12  
28/04/12  11-12  
28/04/12  11-12  
28/04/12  11-12  
28/04/12  11-12  
28/04/12  11-12  
28/04/12  11-12  
28/04/12  11-12  
28/04/12  11-12  
28/04/12  11-12  
28/04/12  11-12  
28/04/12  11-12  
28/04/12  11-12  
28/04/12  11-12  
28/04/12  11-12  
28/04/12  11-12  
28/04/12  11-12  
28/04/12  11-12  
28/04/12  11-12  
28/04/12  11-12  
28/04/12  11-12  
28/04/12  11-12  
28/04/12  11-12  
28/04/12  11-12  
28/04/12  11-12  
28/04/12  11-12  
28/04/12  11-12  
28/04/12  11-12  


28/04/13
         league           home           away  hgoal  agoal result season
date                                                                     
28/04/13    SP1        Espanol        Granada      0      1      A  12-13
28/04/13    SP1         Malaga         Getafe      2      1      H  12-13
28/04/13    SP1       Sociedad       Valencia      4      2      H  12-13
28/04/13    SP1     Valladolid        Sevilla      1      1      D  12-13
28/04/13     I1         Chievo          Genoa      0      1      A  12-13
28/04/13     I1          Milan        Catania      4      2      H  12-13
28/04/13     I1        Palermo          Inter      1      0      H  12-13
28/04/13     I1          Parma          Lazio      0      0      D  12-13
28/04/13     I1           Roma          Siena      4      0      H  12-13
28/04/13     I1      Sampdoria     Fiorentina      0      3      A  12-13
28/04/13     I1         Torino       Juventus      0      2      A  12-13
28/04/13     T1     Fenerbahce    Kayserispor      2      1      H  12-13
28/04/13     T1  Gaziantepspor    Galatasaray      0      1      A  12-13
28/04/13     T1      Kasimpasa  Eskisehirspor      1      2      A  12-13
28/04/13     D1          Mainz  Ein Frankfurt      0      0      D  12-13
28/04/13     D1     Schalke 04        Hamburg      4      1      H  12-13


28/04/14
         league      home        away  hgoal  agoal result season
date                                                             
28/04/14    SP1     Celta  Valladolid      4      1      H  13-14
28/04/14     I1  Sassuolo    Juventus      1      3      A  13-14


28/04/15
         league        home      away  hgoal  agoal result season
date                                                             
28/04/15     I1     Udinese     Inter      1      2      A  14-15
28/04/15     E2  Colchester   Swindon      1      1      D  14-15
28/04/15    SP1  Ath Bilbao  Sociedad      1      1      D  14-15
28/04/15    SP1   Barcelona    Getafe      6      0      H  14-15
28/04/15    SP1     Levante   Cordoba      1      0      H  14-15


28/08/11
         league        home         away  hgoal  agoal result season
date                                                                
28/08/11    SP1  Ath Bilbao    Vallecano      1      1      D  11-12
28/08/11    SP1  Ath Madrid      Osasuna      0      0      D  11-12
28/08/11    SP1      Getafe      Levante      1      1      D  11-12
28/08/11    SP1    Mallorca      Espanol      1      0      H  11-12
28/08/11    SP1     Sevilla       Malaga      2      1      H  11-12
28/08/11    SP1    Zaragoza  Real Madrid      0      6      A  11-12
28/08/11     D1    Hannover        Mainz      1      1      D  11-12
28/08/11     D1  Schalke 04   M'gladbach      1      0      H  11-12


28/08/15
         league           home        away  hgoal  agoal result season
date                                                                  
28/08/15     T1  Gaziantepspor    Besiktas      0      4      A  15-16
28/08/15     D1      Wolfsburg  Schalke 04      3      0      H  15-16
28/08/15    SP1     Villarreal     Espanol      3      1      H  15-16


28/09/12
         league                home         away  hgoal  agoal result season
date                                                                        
28/09/12     T1            Orduspor  Galatasaray      2      0      H  12-13
28/09/12     D1  Fortuna Dusseldorf   Schalke 04      2      2      D  12-13


28/09/13
         league                home              away  hgoal  agoal result  \
date                                                                         
28/09/13     D1       Bayern Munich         Wolfsburg      1      0      H   
28/09/13     D1            Dortmund          Freiburg      5      0      H   
28/09/13     D1       Ein Frankfurt           Hamburg      2      2      D   
28/09/13     D1              Hertha             Mainz      3      1      H   
28/09/13     D1          Hoffenheim        Schalke 04      3      3      D   
28/09/13     D1          Leverkusen          Hannover      2      0      H   
28/09/13     T1         Galatasaray          Rizespor      1      1      D   
28/09/13     T1       Gaziantepspor       Karabukspor      3      0      H   
28/09/13     E2            Bradford        Shrewsbury      2      1      H   
28/09/13     E2        Bristol City        Colchester      1      1      D   
28/09/13     E2            Carlisle      Notts County      2      1      H   
28/09/13     E2        Crawley Town            Oldham      1      0      H   
28/09/13     E2               Crewe        Gillingham      0      3      A   
28/09/13     E2       Leyton Orient           Walsall      1      1      D   
28/09/13     E2  Milton Keynes Dons         Stevenage      4      1      H   
28/09/13     E2             Preston           Swindon      2      1      H   
28/09/13     E2           Rotherham         Peterboro      0      1      A   
28/09/13     E2            Tranmere         Port Vale      0      1      A   
28/09/13     E2              Wolves  Sheffield United      2      0      H   
28/09/13    SP1             Almeria         Barcelona      0      2      A   
28/09/13    SP1         Real Madrid        Ath Madrid      0      1      A   
28/09/13    SP1            Sociedad           Sevilla      1      1      D   
28/09/13    SP1            Valencia         Vallecano      1      0      H   
28/09/13     I1               Genoa            Napoli      0      2      A   
28/09/13     I1               Milan         Sampdoria      1      0      H   

         season  
date             
28/09/13  13-14  
28/09/13  13-14  
28/09/13  13-14  
28/09/13  13-14  
28/09/13  13-14  
28/09/13  13-14  
28/09/13  13-14  
28/09/13  13-14  
28/09/13  13-14  
28/09/13  13-14  
28/09/13  13-14  
28/09/13  13-14  
28/09/13  13-14  
28/09/13  13-14  
28/09/13  13-14  
28/09/13  13-14  
28/09/13  13-14  
28/09/13  13-14  
28/09/13  13-14  
28/09/13  13-14  
28/09/13  13-14  
28/09/13  13-14  
28/09/13  13-14  
28/09/13  13-14  
28/09/13  13-14  


28/09/14
         league                  home           away  hgoal  agoal result  \
date                                                                        
28/09/14     D1              Augsburg         Hertha      1      0      H   
28/09/14     D1               Hamburg  Ein Frankfurt      1      2      A   
28/09/14     I1                Cesena          Milan      1      1      D   
28/09/14     I1                Chievo         Empoli      1      1      D   
28/09/14     I1                 Genoa      Sampdoria      0      1      A   
28/09/14     I1                 Inter       Cagliari      1      4      A   
28/09/14     I1              Sassuolo         Napoli      0      1      A   
28/09/14     I1                Torino     Fiorentina      1      1      D   
28/09/14     T1  Akhisar Belediyespor     Fenerbahce      2      0      H   
28/09/14     T1        Genclerbirligi  Balikesirspor      3      1      H   
28/09/14     T1             Konyaspor    Erciyesspor      1      1      D   
28/09/14     T1              Rizespor      Bursaspor      0      1      A   
28/09/14    SP1               Cordoba        Espanol      0      0      D   
28/09/14    SP1                Getafe         Malaga      1      0      H   
28/09/14    SP1             La Coruna        Almeria      0      1      A   
28/09/14    SP1              Sociedad       Valencia      1      1      D   

         season  
date             
28/09/14  14-15  
28/09/14  14-15  
28/09/14  14-15  
28/09/14  14-15  
28/09/14  14-15  
28/09/14  14-15  
28/09/14  14-15  
28/09/14  14-15  
28/09/14  14-15  
28/09/14  14-15  
28/09/14  14-15  
28/09/14  14-15  
28/09/14  14-15  
28/09/14  14-15  
28/09/14  14-15  
28/09/14  14-15  


28/09/15
         league         home           away  hgoal  agoal result season
date                                                                   
28/09/15     T1    Bursaspor  Eskisehirspor      2      0      H  15-16
28/09/15     T1    Kasimpasa       Rizespor      1      1      D  15-16
28/09/15     T1  Kayserispor     Buyuksehyr      0      1      A  15-16
28/09/15     I1     Atalanta      Sampdoria      2      1      H  15-16
28/09/15     I1    Frosinone         Empoli      2      0      H  15-16


28/10/11
         league      home        away  hgoal  agoal result season
date                                                             
28/10/11     D1  Freiburg  Leverkusen      0      1      A  11-12


28/10/12
         league           home            away  hgoal  agoal result season
date                                                                      
28/10/12    SP1     Ath Bilbao          Getafe      1      2      A  12-13
28/10/12    SP1     Ath Madrid         Osasuna      3      1      H  12-13
28/10/12    SP1        Levante         Granada      3      1      H  12-13
28/10/12    SP1       Mallorca     Real Madrid      0      5      A  12-13
28/10/12    SP1       Zaragoza         Sevilla      2      1      H  12-13
28/10/12     I1        Bologna           Inter      1      3      A  12-13
28/10/12     I1        Catania        Juventus      0      1      A  12-13
28/10/12     I1     Fiorentina           Lazio      2      0      H  12-13
28/10/12     I1         Napoli          Chievo      1      0      H  12-13
28/10/12     I1        Pescara        Atalanta      0      0      D  12-13
28/10/12     I1           Roma         Udinese      2      3      A  12-13
28/10/12     I1      Sampdoria        Cagliari      0      1      A  12-13
28/10/12     I1         Torino           Parma      1      3      A  12-13
28/10/12     T1  Gaziantepspor        Orduspor      3      0      H  12-13
28/10/12     T1    Karabukspor  Genclerbirligi      0      0      D  12-13
28/10/12     T1    Trabzonspor       Bursaspor      0      1      A  12-13
28/10/12     D1  Bayern Munich      Leverkusen      1      2      A  12-13
28/10/12     D1       Hannover      M'gladbach      2      3      A  12-13
28/10/12     D1      Stuttgart   Ein Frankfurt      2      1      H  12-13


28/10/13
         league       home         away  hgoal  agoal result season
date                                                               
28/10/13     T1  Kasimpasa  Trabzonspor      3      2      H  13-14
28/10/13    SP1     Getafe   Ath Bilbao      0      1      A  13-14


28/10/14
         league           home     away  hgoal  agoal result season
date                                                               
28/10/14     I1       Sassuolo   Empoli      3      1      H  14-15
28/10/14     E2   Chesterfield  Swindon      0      3      A  14-15
28/10/14     E2  Leyton Orient  Preston      0      2      A  14-15


28/10/15
         league         home           away  hgoal  agoal result season
date                                                                   
28/10/15     T1    Bursaspor      Sivasspor      1      0      H  15-16
28/10/15     T1  Kayserispor       Rizespor      0      0      D  15-16
28/10/15     T1  Trabzonspor  Gaziantepspor      2      2      D  15-16
28/10/15     I1     Atalanta          Lazio      2      1      H  15-16
28/10/15     I1    Frosinone          Carpi      2      1      H  15-16
28/10/15     I1        Milan         Chievo      1      0      H  15-16
28/10/15     I1       Napoli        Palermo      2      0      H  15-16
28/10/15     I1         Roma        Udinese      3      1      H  15-16
28/10/15     I1     Sassuolo       Juventus      1      0      H  15-16
28/10/15     I1       Torino          Genoa      3      3      D  15-16
28/10/15     I1       Verona     Fiorentina      0      2      A  15-16


28/11/11
         league         home          away  hgoal  agoal result season
date                                                                  
28/11/11    SP1       Malaga    Villarreal      2      1      H  11-12
28/11/11     T1  Karabukspor     Bursaspor      3      1      H  11-12
28/11/11     E2     Charlton  Huddersfield      2      0      H  11-12


28/11/12
         league           home           away  hgoal  agoal result season
date                                                                     
28/11/12     D1       Freiburg  Bayern Munich      0      2      A  12-13
28/11/12     D1     M'gladbach      Wolfsburg      2      0      H  12-13
28/11/12     D1       Nurnberg     Hoffenheim      4      2      H  12-13
28/11/12     D1      Stuttgart       Augsburg      2      1      H  12-13
28/11/12     D1  Werder Bremen     Leverkusen      1      4      A  12-13


28/11/14
         league                  home          away  hgoal  agoal result  \
date                                                                       
28/11/14     D1              Freiburg     Stuttgart      1      4      A   
28/11/14     T1  Akhisar Belediyespor     Konyaspor      0      0      D   
28/11/14     T1            Buyuksehyr     Bursaspor      0      0      D   
28/11/14     E2             Peterboro  Bristol City      0      3      A   
28/11/14     E2      Sheffield United  Notts County      1      1      D   
28/11/14    SP1              Sociedad         Elche      3      0      H   

         season  
date             
28/11/14  14-15  
28/11/14  14-15  
28/11/14  14-15  
28/11/14  14-15  
28/11/14  14-15  
28/11/14  14-15  


28/11/15
         league           home                away  hgoal  agoal result season
date                                                                          
28/11/15     T1  Eskisehirspor  Mersin Idman Yurdu      3      2      H  15-16
28/11/15     T1      Sivasspor          Buyuksehyr      2      2      D  15-16
28/11/15     D1  Bayern Munich              Hertha      2      0      H  15-16
28/11/15     D1       Hannover          Ingolstadt      4      0      H  15-16
28/11/15     D1     Hoffenheim          M'gladbach      3      3      D  15-16
28/11/15     D1          Mainz       Ein Frankfurt      2      1      H  15-16
28/11/15     D1  Werder Bremen             Hamburg      1      3      A  15-16
28/11/15     I1          Milan           Sampdoria      4      1      H  15-16
28/11/15     I1         Torino             Bologna      2      0      H  15-16
28/11/15    SP1     Ath Madrid             Espanol      1      0      H  15-16
28/11/15    SP1      Barcelona            Sociedad      4      0      H  15-16
28/11/15    SP1          Celta            Sp Gijon      2      1      H  15-16
28/11/15    SP1     Las Palmas           La Coruna      0      2      A  15-16
28/11/15    SP1         Malaga             Granada      2      2      D  15-16
28/11/15     E2       Barnsley    Sheffield United      1      1      D  15-16
28/11/15     E2      Blackpool      Fleetwood Town      1      0      H  15-16
28/11/15     E2         Burton          Colchester      5      1      H  15-16
28/11/15     E2   Chesterfield             Swindon      0      4      A  15-16
28/11/15     E2       Coventry           Doncaster      2      2      D  15-16
28/11/15     E2          Crewe              Oldham      1      0      H  15-16
28/11/15     E2       Millwall                Bury      1      0      H  15-16
28/11/15     E2       Rochdale           Port Vale      2      1      H  15-16
28/11/15     E2     Scunthorpe           Peterboro      0      4      A  15-16
28/11/15     E2     Shrewsbury          Gillingham      2      2      D  15-16
28/11/15     E2       Southend               Wigan      0      0      D  15-16
28/11/15     E2        Walsall            Bradford      2      1      H  15-16


28/12/13
         league           home         away  hgoal  agoal result season
date                                                                   
28/12/13     T1     Elazigspor     Rizespor      1      0      H  13-14
28/12/13     T1    Erciyesspor  Galatasaray      1      3      A  13-14
28/12/13     T1  Gaziantepspor    Bursaspor      0      0      D  13-14


28/12/14
         league                  home            away  hgoal  agoal result  \
date                                                                         
28/12/14     T1  Akhisar Belediyespor        Rizespor      0      4      A   
28/12/14     T1         Gaziantepspor       Bursaspor      1      2      A   
28/12/14     T1             Kasimpasa       Sivasspor      0      0      D   
28/12/14     T1             Konyaspor        Besiktas      1      2      A   
28/12/14     E2              Bradford    Notts County      1      0      H   
28/12/14     E2              Coventry    Chesterfield      0      0      D   
28/12/14     E2          Crawley Town      Colchester      0      0      D   
28/12/14     E2                 Crewe         Preston      1      1      D   
28/12/14     E2            Gillingham    Bristol City      1      3      A   
28/12/14     E2    Milton Keynes Dons         Walsall      0      3      A   
28/12/14     E2             Peterboro       Doncaster      0      0      D   
28/12/14     E2              Rochdale  Fleetwood Town      0      2      A   
28/12/14     E2               Swindon       Port Vale      1      0      H   

         season  
date             
28/12/14  14-15  
28/12/14  14-15  
28/12/14  14-15  
28/12/14  14-15  
28/12/14  14-15  
28/12/14  14-15  
28/12/14  14-15  
28/12/14  14-15  
28/12/14  14-15  
28/12/14  14-15  
28/12/14  14-15  
28/12/14  14-15  
28/12/14  14-15  


28/12/15
         league              home            away  hgoal  agoal result season
date                                                                         
28/12/15     T1     Eskisehirspor  Genclerbirligi      2      0      H  15-16
28/12/15     T1        Fenerbahce       Sivasspor      2      1      H  15-16
28/12/15     E2          Barnsley       Blackpool      4      2      H  15-16
28/12/15     E2            Burton         Swindon      1      0      H  15-16
28/12/15     E2      Chesterfield        Coventry      1      1      D  15-16
28/12/15     E2             Crewe      Shrewsbury      1      2      A  15-16
28/12/15     E2    Fleetwood Town           Wigan      1      3      A  15-16
28/12/15     E2        Gillingham      Colchester      1      0      H  15-16
28/12/15     E2            Oldham       Doncaster      1      2      A  15-16
28/12/15     E2         Port Vale            Bury      1      0      H  15-16
28/12/15     E2        Scunthorpe        Rochdale      1      1      D  15-16
28/12/15     E2  Sheffield United        Bradford      3      1      H  15-16
28/12/15     E2          Southend        Millwall      0      4      A  15-16
28/12/15     E2           Walsall       Peterboro      2      0      H  15-16


29/01/12
         league           home                away  hgoal  agoal result season
date                                                                          
29/01/12    SP1          Betis             Granada      1      2      A  11-12
29/01/12    SP1        Levante              Getafe      1      2      A  11-12
29/01/12    SP1         Malaga             Sevilla      2      1      H  11-12
29/01/12    SP1      Santander            Valencia      2      2      D  11-12
29/01/12    SP1       Sociedad            Sp Gijon      5      1      H  11-12
29/01/12     I1         Cesena            Atalanta      0      1      A  11-12
29/01/12     I1         Chievo               Lazio      0      3      A  11-12
29/01/12     I1     Fiorentina               Siena      2      1      H  11-12
29/01/12     I1          Genoa              Napoli      3      2      H  11-12
29/01/12     I1          Lecce               Inter      1      0      H  11-12
29/01/12     I1          Milan            Cagliari      3      0      H  11-12
29/01/12     I1        Palermo              Novara      2      0      H  11-12
29/01/12     I1           Roma             Bologna      1      1      D  11-12
29/01/12     D1          Mainz            Freiburg      3      1      H  11-12
29/01/12     D1      Stuttgart          M'gladbach      0      3      A  11-12
29/01/12     T1     Ankaragucu         Trabzonspor      0      4      A  11-12
29/01/12     T1  Eskisehirspor            Orduspor      0      1      A  11-12
29/01/12     T1     Fenerbahce  Mersin Idman Yurdu      2      1      H  11-12
29/01/12     T1  Gaziantepspor           Sivasspor      2      1      H  11-12
29/01/12     T1    Karabukspor          Manisaspor      2      1      H  11-12
29/01/12     T1     Samsunspor          Buyuksehyr      2      4      A  11-12


29/01/13
         league           home                away  hgoal  agoal result season
date                                                                          
29/01/13     E2  Leyton Orient             Swindon      0      0      D  12-13
29/01/13     E2     Portsmouth        Notts County      0      2      A  12-13
29/01/13     E2         Yeovil  Milton Keynes Dons      2      1      H  12-13


29/01/14
         league       home           away  hgoal  agoal result season
date                                                                 
29/01/14     D1  Stuttgart  Bayern Munich      1      2      A  13-14


29/01/16
         league   home        away  hgoal  agoal result season
date                                                          
29/01/16     D1  Mainz  M'gladbach      1      0      H  15-16


29/02/12
         league              home        away  hgoal  agoal result season
date                                                                     
29/02/12     E2  Sheffield United  Scunthorpe      2      1      H  11-12


29/02/16
         league        home      away  hgoal  agoal result season
date                                                             
29/02/16     T1  Fenerbahce  Besiktas      2      0      H  15-16
29/02/16     I1  Fiorentina    Napoli      1      1      D  15-16
29/02/16     I1       Lazio  Sassuolo      0      2      A  15-16


29/03/13
         league          home                away  hgoal  agoal result season
date                                                                         
29/03/13     E2     Brentford        Notts County      2      1      H  12-13
29/03/13     E2          Bury               Crewe      2      2      D  12-13
29/03/13     E2      Carlisle          Shrewsbury      2      2      D  12-13
29/03/13     E2    Colchester         Bournemouth      0      1      A  12-13
29/03/13     E2      Coventry           Doncaster      1      0      H  12-13
29/03/13     E2  Crawley Town           Stevenage      1      1      D  12-13
29/03/13     E2    Hartlepool  Milton Keynes Dons      0      2      A  12-13
29/03/13     E2       Preston          Portsmouth      1      1      D  12-13
29/03/13     E2    Scunthorpe       Leyton Orient      2      1      H  12-13
29/03/13     E2       Swindon              Oldham      1      1      D  12-13
29/03/13     E2      Tranmere    Sheffield United      0      1      A  12-13
29/03/13     E2        Yeovil             Walsall      0      0      D  12-13


29/03/14
         league                  home              away  hgoal  agoal result  \
date                                                                           
29/03/14     D1         Bayern Munich        Hoffenheim      3      3      D   
29/03/14     D1              Freiburg          Nurnberg      3      2      H   
29/03/14     D1            Leverkusen      Braunschweig      1      1      D   
29/03/14     D1                 Mainz          Augsburg      3      0      H   
29/03/14     D1             Stuttgart          Dortmund      2      3      A   
29/03/14     D1             Wolfsburg     Ein Frankfurt      2      1      H   
29/03/14     T1  Akhisar Belediyespor          Rizespor      2      3      A   
29/03/14     T1            Elazigspor       Trabzonspor      0      0      D   
29/03/14     T1             Konyaspor       Galatasaray      0      0      D   
29/03/14     T1             Sivasspor     Gaziantepspor      3      2      H   
29/03/14     E2                 Crewe          Coventry      1      2      A   
29/03/14     E2         Leyton Orient          Bradford      0      1      A   
29/03/14     E2    Milton Keynes Dons            Wolves      0      1      A   
29/03/14     E2          Notts County        Colchester      2      0      H   
29/03/14     E2                Oldham         Brentford      0      0      D   
29/03/14     E2               Preston      Crawley Town      1      0      H   
29/03/14     E2             Rotherham      Bristol City      2      1      H   
29/03/14     E2             Stevenage         Port Vale      1      1      D   
29/03/14     E2               Swindon  Sheffield United      2      1      H   
29/03/14     E2              Tranmere          Carlisle      0      0      D   
29/03/14     E2               Walsall        Shrewsbury      1      0      H   
29/03/14    SP1            Ath Bilbao        Ath Madrid      1      2      A   
29/03/14    SP1                 Celta           Sevilla      1      0      H   
29/03/14    SP1               Espanol         Barcelona      0      1      A   
29/03/14    SP1           Real Madrid         Vallecano      5      0      H   
29/03/14     I1               Bologna          Atalanta      0      2      A   
29/03/14     I1                 Milan            Chievo      3      0      H   

         season  
date             
29/03/14  13-14  
29/03/14  13-14  
29/03/14  13-14  
29/03/14  13-14  
29/03/14  13-14  
29/03/14  13-14  
29/03/14  13-14  
29/03/14  13-14  
29/03/14  13-14  
29/03/14  13-14  
29/03/14  13-14  
29/03/14  13-14  
29/03/14  13-14  
29/03/14  13-14  
29/03/14  13-14  
29/03/14  13-14  
29/03/14  13-14  
29/03/14  13-14  
29/03/14  13-14  
29/03/14  13-14  
29/03/14  13-14  
29/03/14  13-14  
29/03/14  13-14  
29/03/14  13-14  
29/03/14  13-14  
29/03/14  13-14  
29/03/14  13-14  


29/03/15
         league            home     away  hgoal  agoal result season
date                                                                
29/03/15     E2  Fleetwood Town  Preston      1      1      D  14-15


29/03/16
         league      home        away  hgoal  agoal result season
date                                                             
29/03/16     E2  Coventry  Colchester      0      1      A  15-16


29/04/12
         league         home        away  hgoal  agoal result season
date                                                                
29/04/12    SP1        Betis  Ath Madrid      2      2      D  11-12
29/04/12    SP1       Malaga    Valencia      1      0      H  11-12
29/04/12    SP1  Real Madrid     Sevilla      3      0      H  11-12
29/04/12    SP1    Vallecano   Barcelona      0      7      A  11-12
29/04/12    SP1     Zaragoza  Ath Bilbao      2      0      H  11-12
29/04/12     I1     Atalanta  Fiorentina      2      0      H  11-12
29/04/12     I1      Bologna       Genoa      3      2      H  11-12
29/04/12     I1        Inter      Cesena      2      1      H  11-12
29/04/12     I1        Lecce       Parma      1      2      A  11-12
29/04/12     I1       Novara    Juventus      0      4      A  11-12
29/04/12     I1        Siena       Milan      1      4      A  11-12
29/04/12     I1      Udinese       Lazio      2      0      H  11-12


29/04/13
         league   home       away  hgoal  agoal result season
date                                                         
29/04/13    SP1  Betis  La Coruna      1      1      D  12-13


29/04/14
         league          home              away  hgoal  agoal result season
date                                                                       
29/04/14     E2  Crawley Town          Carlisle      0      0      D  13-14
29/04/14     E2        Oldham  Sheffield United      1      1      D  13-14


29/04/15
         league         home        away  hgoal  agoal result season
date                                                                
29/04/15     I1       Cesena    Atalanta      2      2      D  14-15
29/04/15     I1       Chievo    Cagliari      1      0      H  14-15
29/04/15     I1     Juventus  Fiorentina      3      2      H  14-15
29/04/15     I1        Lazio       Parma      4      0      H  14-15
29/04/15     I1        Milan       Genoa      1      3      A  14-15
29/04/15     I1      Palermo      Torino      2      2      D  14-15
29/04/15     I1    Sampdoria      Verona      1      1      D  14-15
29/04/15     I1     Sassuolo        Roma      0      3      A  14-15
29/04/15    SP1        Celta      Malaga      1      0      H  14-15
29/04/15    SP1        Eibar     Sevilla      1      3      A  14-15
29/04/15    SP1        Elche   La Coruna      4      0      H  14-15
29/04/15    SP1  Real Madrid     Almeria      3      0      H  14-15
29/04/15    SP1   Villarreal  Ath Madrid      0      1      A  14-15


29/04/16
         league       home                away  hgoal  agoal result season
date                                                                      
29/04/16     T1  Bursaspor         Galatasaray      1      1      D  15-16
29/04/16     T1   Rizespor  Mersin Idman Yurdu      2      0      H  15-16
29/04/16     D1   Augsburg             FC Koln      0      0      D  15-16
29/04/16    SP1   Sp Gijon               Eibar      2      0      H  15-16


29/05/15
         league           home                  away  hgoal  agoal result  \
date                                                                        
29/05/15     T1  Balikesirspor         Gaziantepspor      1      1      D   
29/05/15     T1       Besiktas        Genclerbirligi      2      1      H   
29/05/15     T1    Erciyesspor           Karabukspor      4      3      H   
29/05/15     T1  Eskisehirspor  Akhisar Belediyespor      1      3      A   

         season  
date             
29/05/15  14-15  
29/05/15  14-15  
29/05/15  14-15  
29/05/15  14-15  


29/08/11
         league       home        away  hgoal  agoal result season
date                                                              
29/08/11    SP1  Barcelona  Villarreal      5      0      H  11-12


29/08/14
         league           home                  away  hgoal  agoal result  \
date                                                                        
29/08/14     D1       Augsburg              Dortmund      2      3      A   
29/08/14     T1  Balikesirspor  Akhisar Belediyespor      1      2      A   
29/08/14     T1       Rizespor        Genclerbirligi      1      1      D   
29/08/14    SP1         Getafe               Almeria      1      0      H   
29/08/14    SP1       Valencia                Malaga      3      0      H   

         season  
date             
29/08/14  14-15  
29/08/14  14-15  
29/08/14  14-15  
29/08/14  14-15  
29/08/14  14-15  


29/08/15
         league                home              away  hgoal  agoal result  \
date                                                                         
29/08/15     T1          Buyuksehyr         Bursaspor      2      1      H   
29/08/15     T1      Genclerbirligi         Kasimpasa      1      0      H   
29/08/15     T1           Konyaspor       Galatasaray      1      4      A   
29/08/15     T1  Mersin Idman Yurdu       Kayserispor      1      2      A   
29/08/15     D1            Augsburg        Ingolstadt      0      1      A   
29/08/15     D1       Bayern Munich        Leverkusen      3      0      H   
29/08/15     D1           Darmstadt        Hoffenheim      0      0      D   
29/08/15     D1             FC Koln           Hamburg      2      1      H   
29/08/15     D1               Mainz          Hannover      3      0      H   
29/08/15     D1           Stuttgart     Ein Frankfurt      1      4      A   
29/08/15     I1             Bologna          Sassuolo      0      1      A   
29/08/15     I1               Milan            Empoli      2      1      H   
29/08/15    SP1           Barcelona            Malaga      1      0      H   
29/08/15    SP1               Celta         Vallecano      3      0      H   
29/08/15    SP1         Real Madrid             Betis      5      0      H   
29/08/15    SP1            Sociedad          Sp Gijon      0      0      D   
29/08/15     E2           Blackpool           Walsall      0      4      A   
29/08/15     E2            Bradford         Port Vale      1      0      H   
29/08/15     E2                Bury            Oldham      1      1      D   
29/08/15     E2          Colchester        Scunthorpe      2      2      D   
29/08/15     E2           Doncaster    Fleetwood Town      2      0      H   
29/08/15     E2            Millwall      Chesterfield      0      2      A   
29/08/15     E2           Peterboro        Gillingham      1      1      D   
29/08/15     E2            Rochdale          Barnsley      3      0      H   
29/08/15     E2          Shrewsbury            Burton      0      1      A   
29/08/15     E2             Swindon  Sheffield United      0      2      A   
29/08/15     E2               Wigan             Crewe      1      0      H   

         season  
date             
29/08/15  15-16  
29/08/15  15-16  
29/08/15  15-16  
29/08/15  15-16  
29/08/15  15-16  
29/08/15  15-16  
29/08/15  15-16  
29/08/15  15-16  
29/08/15  15-16  
29/08/15  15-16  
29/08/15  15-16  
29/08/15  15-16  
29/08/15  15-16  
29/08/15  15-16  
29/08/15  15-16  
29/08/15  15-16  
29/08/15  15-16  
29/08/15  15-16  
29/08/15  15-16  
29/08/15  15-16  
29/08/15  15-16  
29/08/15  15-16  
29/08/15  15-16  
29/08/15  15-16  
29/08/15  15-16  
29/08/15  15-16  
29/08/15  15-16  


29/09/12
         league                  home            away  hgoal  agoal result  \
date                                                                         
29/09/12    SP1                Malaga           Betis      4      0      H   
29/09/12    SP1               Sevilla       Barcelona      2      3      A   
29/09/12    SP1              Sociedad      Ath Bilbao      2      0      H   
29/09/12    SP1              Valencia        Zaragoza      2      0      H   
29/09/12     I1              Juventus            Roma      4      1      H   
29/09/12     I1                 Parma           Milan      1      1      D   
29/09/12     T1  Akhisar Belediyespor     Karabukspor      1      3      A   
29/09/12     T1             Bursaspor   Gaziantepspor      1      1      D   
29/09/12     T1             Kasimpasa      Fenerbahce      2      0      H   
29/09/12     E2           Bournemouth         Walsall      1      2      A   
29/09/12     E2              Carlisle    Crawley Town      0      2      A   
29/09/12     E2            Colchester      Hartlepool      3      1      H   
29/09/12     E2         Leyton Orient       Doncaster      0      2      A   
29/09/12     E2    Milton Keynes Dons           Crewe      1      0      H   
29/09/12     E2                Oldham        Coventry      0      1      A   
29/09/12     E2            Portsmouth      Scunthorpe      2      1      H   
29/09/12     E2               Preston          Yeovil      3      2      H   
29/09/12     E2      Sheffield United    Notts County      1      1      D   
29/09/12     E2            Shrewsbury         Swindon      0      1      A   
29/09/12     E2             Stevenage            Bury      2      2      D   
29/09/12     E2              Tranmere       Brentford      1      1      D   
29/09/12     D1              Dortmund      M'gladbach      5      0      H   
29/09/12     D1               Hamburg        Hannover      1      0      H   
29/09/12     D1            Hoffenheim        Augsburg      0      0      D   
29/09/12     D1            Leverkusen  Greuther Furth      2      0      H   
29/09/12     D1              Nurnberg       Stuttgart      0      2      A   
29/09/12     D1         Werder Bremen   Bayern Munich      0      2      A   

         season  
date             
29/09/12  12-13  
29/09/12  12-13  
29/09/12  12-13  
29/09/12  12-13  
29/09/12  12-13  
29/09/12  12-13  
29/09/12  12-13  
29/09/12  12-13  
29/09/12  12-13  
29/09/12  12-13  
29/09/12  12-13  
29/09/12  12-13  
29/09/12  12-13  
29/09/12  12-13  
29/09/12  12-13  
29/09/12  12-13  
29/09/12  12-13  
29/09/12  12-13  
29/09/12  12-13  
29/09/12  12-13  
29/09/12  12-13  
29/09/12  12-13  
29/09/12  12-13  
29/09/12  12-13  
29/09/12  12-13  
29/09/12  12-13  
29/09/12  12-13  


29/09/13
         league            home           away  hgoal  agoal result season
date                                                                      
29/09/13     D1    Braunschweig      Stuttgart      0      4      A  13-14
29/09/13     D1   Werder Bremen       Nurnberg      3      3      D  13-14
29/09/13     T1      Elazigspor      Sivasspor      2      4      A  13-14
29/09/13     T1  Genclerbirligi     Fenerbahce      0      1      A  13-14
29/09/13     T1       Kasimpasa  Eskisehirspor      0      2      A  13-14
29/09/13     T1     Trabzonspor      Konyaspor      2      0      H  13-14
29/09/13     E2        Coventry      Brentford      0      2      A  13-14
29/09/13    SP1           Betis     Villarreal      1      0      H  13-14
29/09/13    SP1           Celta          Elche      0      1      A  13-14
29/09/13    SP1         Espanol         Getafe      0      2      A  13-14
29/09/13    SP1         Osasuna        Levante      0      1      A  13-14
29/09/13     I1        Atalanta        Udinese      2      0      H  13-14
29/09/13     I1        Cagliari          Inter      1      1      D  13-14
29/09/13     I1         Catania         Chievo      2      0      H  13-14
29/09/13     I1            Roma        Bologna      5      0      H  13-14
29/09/13     I1        Sassuolo          Lazio      2      2      D  13-14
29/09/13     I1          Torino       Juventus      0      1      A  13-14
29/09/13     I1          Verona        Livorno      2      1      H  13-14


29/09/14
         league           home                away  hgoal  agoal result season
date                                                                          
29/09/14     I1        Palermo               Lazio      0      4      A  14-15
29/09/14     I1        Udinese               Parma      4      2      H  14-15
29/09/14     T1  Gaziantepspor          Buyuksehyr      0      0      D  14-15
29/09/14     T1    Karabukspor  Mersin Idman Yurdu      0      2      A  14-15


29/09/15
         league        home              away  hgoal  agoal result season
date                                                                     
29/09/15     E2   Blackpool      Chesterfield      2      0      H  15-16
29/09/15     E2      Burton  Sheffield United      0      0      D  15-16
29/09/15     E2  Colchester          Bradford      2      0      H  15-16
29/09/15     E2       Crewe          Southend      1      2      A  15-16
29/09/15     E2   Doncaster           Swindon      2      2      D  15-16
29/09/15     E2  Gillingham    Fleetwood Town      5      1      H  15-16
29/09/15     E2   Peterboro              Bury      2      3      A  15-16
29/09/15     E2   Port Vale            Oldham      1      1      D  15-16
29/09/15     E2    Rochdale        Shrewsbury      3      2      H  15-16
29/09/15     E2  Scunthorpe           Walsall      0      1      A  15-16
29/09/15     E2       Wigan          Millwall      2      2      D  15-16


29/10/11
         league              home                away  hgoal  agoal result  \
date                                                                         
29/10/11    SP1         Barcelona            Mallorca      5      0      H   
29/10/11    SP1          Sociedad         Real Madrid      0      1      A   
29/10/11    SP1          Valencia              Getafe      3      1      H   
29/10/11    SP1        Villarreal           Vallecano      2      0      H   
29/10/11     I1           Catania              Napoli      2      1      H   
29/10/11     I1             Inter            Juventus      1      2      A   
29/10/11     I1              Roma               Milan      2      3      A   
29/10/11     D1     Bayern Munich            Nurnberg      4      0      H   
29/10/11     D1             Mainz       Werder Bremen      1      3      A   
29/10/11     D1        M'gladbach            Hannover      2      1      H   
29/10/11     D1        Schalke 04          Hoffenheim      3      1      H   
29/10/11     D1         Stuttgart            Dortmund      1      1      D   
29/10/11     D1         Wolfsburg              Hertha      2      3      A   
29/10/11     T1       Antalyaspor            Orduspor      1      1      D   
29/10/11     T1     Eskisehirspor          Samsunspor      1      0      H   
29/10/11     T1     Gaziantepspor         Trabzonspor      0      1      A   
29/10/11     E2         Brentford        Chesterfield      2      1      H   
29/10/11     E2              Bury           Stevenage      1      2      A   
29/10/11     E2          Carlisle              Oldham      3      3      D   
29/10/11     E2        Colchester        Notts County      4      2      H   
29/10/11     E2        Hartlepool            Charlton      0      4      A   
29/10/11     E2           Preston         Bournemouth      1      3      A   
29/10/11     E2          Rochdale       Leyton Orient      0      2      A   
29/10/11     E2        Scunthorpe            Tranmere      4      2      H   
29/10/11     E2  Sheffield United              Exeter      4      4      D   
29/10/11     E2           Walsall  Milton Keynes Dons      0      2      A   
29/10/11     E2           Wycombe      Sheffield Weds      1      2      A   
29/10/11     E2            Yeovil        Huddersfield      0      1      A   

         season  
date             
29/10/11  11-12  
29/10/11  11-12  
29/10/11  11-12  
29/10/11  11-12  
29/10/11  11-12  
29/10/11  11-12  
29/10/11  11-12  
29/10/11  11-12  
29/10/11  11-12  
29/10/11  11-12  
29/10/11  11-12  
29/10/11  11-12  
29/10/11  11-12  
29/10/11  11-12  
29/10/11  11-12  
29/10/11  11-12  
29/10/11  11-12  
29/10/11  11-12  
29/10/11  11-12  
29/10/11  11-12  
29/10/11  11-12  
29/10/11  11-12  
29/10/11  11-12  
29/10/11  11-12  
29/10/11  11-12  
29/10/11  11-12  
29/10/11  11-12  
29/10/11  11-12  


29/10/12
         league              home         away  hgoal  agoal result season
date                                                                      
29/10/12    SP1        Valladolid     Sociedad      2      2      D  12-13
29/10/12     T1        Fenerbahce  Antalyaspor      1      3      A  12-13
29/10/12     E2  Sheffield United   Portsmouth      1      0      H  12-13


29/10/13
         league          home       away  hgoal  agoal result season
date                                                                
29/10/13     E2  Notts County     Oldham      3      2      H  13-14
29/10/13    SP1         Celta  Barcelona      0      3      A  13-14
29/10/13    SP1       Espanol     Malaga      0      0      D  13-14
29/10/13     I1      Atalanta      Inter      1      1      D  13-14


29/10/14
         league        home       away  hgoal  agoal result season
date                                                              
29/10/14     I1    Atalanta     Napoli      1      1      D  14-15
29/10/14     I1    Cagliari      Milan      1      1      D  14-15
29/10/14     I1  Fiorentina    Udinese      3      0      H  14-15
29/10/14     I1       Genoa   Juventus      1      0      H  14-15
29/10/14     I1       Inter  Sampdoria      1      0      H  14-15
29/10/14     I1     Palermo     Chievo      1      0      H  14-15
29/10/14     I1        Roma     Cesena      2      0      H  14-15
29/10/14     I1      Torino      Parma      1      0      H  14-15


29/10/15
         league                home           away  hgoal  agoal result season
date                                                                          
29/10/15     T1         Galatasaray  Eskisehirspor      4      0      H  15-16
29/10/15     T1  Mersin Idman Yurdu     Buyuksehyr      1      1      D  15-16
29/10/15     T1         Osmanlispor     Fenerbahce      0      1      A  15-16
29/10/15     I1           Sampdoria         Empoli      1      1      D  15-16


29/11/11
         league        home       away  hgoal  agoal result season
date                                                              
29/11/11    SP1   Barcelona  Vallecano      4      0      H  11-12
29/11/11     I1      Napoli   Juventus      3      3      D  11-12
29/11/11     E2  Hartlepool    Preston      0      1      A  11-12


29/11/13
         league        home         away  hgoal  agoal result season
date                                                                
29/11/13     D1   Wolfsburg      Hamburg      1      1      D  13-14
29/11/13     T1  Elazigspor    Bursaspor      1      2      A  13-14
29/11/13     T1   Sivasspor  Antalyaspor      0      3      A  13-14
29/11/13    SP1      Getafe      Levante      1      0      H  13-14
29/11/13    SP1  Villarreal       Malaga      1      1      D  13-14


29/11/14
         league                home            away  hgoal  agoal result  \
date                                                                       
29/11/14     D1            Augsburg         Hamburg      3      1      H   
29/11/14     D1              Hertha   Bayern Munich      0      1      A   
29/11/14     D1          Hoffenheim        Hannover      4      3      H   
29/11/14     D1          Leverkusen         FC Koln      5      1      H   
29/11/14     D1          Schalke 04           Mainz      4      1      H   
29/11/14     D1       Werder Bremen       Paderborn      4      0      H   
29/11/14     I1              Chievo           Lazio      0      0      D   
29/11/14     I1            Sassuolo          Verona      2      1      H   
29/11/14     T1         Erciyesspor   Balikesirspor      4      0      H   
29/11/14     T1       Gaziantepspor     Galatasaray      0      1      A   
29/11/14     T1           Kasimpasa        Rizespor      3      1      H   
29/11/14     E2            Barnsley      Scunthorpe      1      2      A   
29/11/14     E2            Bradford   Leyton Orient      3      1      H   
29/11/14     E2            Coventry         Walsall      0      0      D   
29/11/14     E2        Crawley Town    Chesterfield      1      1      D   
29/11/14     E2               Crewe       Doncaster      1      1      D   
29/11/14     E2          Gillingham       Port Vale      2      2      D   
29/11/14     E2  Milton Keynes Dons      Colchester      6      0      H   
29/11/14     E2            Rochdale          Oldham      0      3      A   
29/11/14     E2             Swindon  Fleetwood Town      1      0      H   
29/11/14     E2              Yeovil         Preston      0      2      A   
29/11/14    SP1               Celta           Eibar      0      1      A   
29/11/14    SP1             Espanol         Levante      2      1      H   
29/11/14    SP1              Getafe      Ath Bilbao      1      2      A   
29/11/14    SP1              Malaga     Real Madrid      1      2      A   

         season  
date             
29/11/14  14-15  
29/11/14  14-15  
29/11/14  14-15  
29/11/14  14-15  
29/11/14  14-15  
29/11/14  14-15  
29/11/14  14-15  
29/11/14  14-15  
29/11/14  14-15  
29/11/14  14-15  
29/11/14  14-15  
29/11/14  14-15  
29/11/14  14-15  
29/11/14  14-15  
29/11/14  14-15  
29/11/14  14-15  
29/11/14  14-15  
29/11/14  14-15  
29/11/14  14-15  
29/11/14  14-15  
29/11/14  14-15  
29/11/14  14-15  
29/11/14  14-15  
29/11/14  14-15  
29/11/14  14-15  


29/11/15
         league            home                  away  hgoal  agoal result  \
date                                                                         
29/11/15     T1        Besiktas  Akhisar Belediyespor      0      2      A   
29/11/15     T1  Genclerbirligi         Gaziantepspor      2      2      D   
29/11/15     T1       Kasimpasa           Galatasaray      2      2      D   
29/11/15     D1        Augsburg             Wolfsburg      0      0      D   
29/11/15     D1        Dortmund             Stuttgart      4      1      H   
29/11/15     D1      Leverkusen            Schalke 04      1      1      D   
29/11/15     I1          Chievo               Udinese      2      3      A   
29/11/15     I1          Empoli                 Lazio      1      0      H   
29/11/15     I1       Frosinone                Verona      3      2      H   
29/11/15     I1           Genoa                 Carpi      1      2      A   
29/11/15     I1         Palermo              Juventus      0      3      A   
29/11/15     I1            Roma              Atalanta      0      2      A   
29/11/15    SP1           Eibar           Real Madrid      0      2      A   
29/11/15    SP1          Getafe            Villarreal      2      0      H   
29/11/15    SP1         Sevilla              Valencia      1      0      H   
29/11/15    SP1       Vallecano            Ath Bilbao      0      3      A   

         season  
date             
29/11/15  15-16  
29/11/15  15-16  
29/11/15  15-16  
29/11/15  15-16  
29/11/15  15-16  
29/11/15  15-16  
29/11/15  15-16  
29/11/15  15-16  
29/11/15  15-16  
29/11/15  15-16  
29/11/15  15-16  
29/11/15  15-16  
29/11/15  15-16  
29/11/15  15-16  
29/11/15  15-16  
29/11/15  15-16  


29/12/12
         league                home          away  hgoal  agoal result season
date                                                                         
29/12/12     E2         Bournemouth  Crawley Town      3      0      H  12-13
29/12/12     E2            Carlisle          Bury      2      1      H  12-13
29/12/12     E2       Leyton Orient       Walsall      2      1      H  12-13
29/12/12     E2  Milton Keynes Dons      Coventry      2      3      A  12-13
29/12/12     E2              Oldham         Crewe      1      2      A  12-13
29/12/12     E2          Portsmouth        Yeovil      1      2      A  12-13
29/12/12     E2             Preston     Doncaster      0      3      A  12-13
29/12/12     E2    Sheffield United    Hartlepool      2      3      A  12-13
29/12/12     E2          Shrewsbury     Brentford      0      0      D  12-13
29/12/12     E2            Tranmere    Scunthorpe      1      0      H  12-13


29/12/13
         league              home                away  hgoal  agoal result  \
date                                                                         
29/12/13     T1        Fenerbahce         Kayserispor      5      1      H   
29/12/13     T1         Konyaspor       Eskisehirspor      4      1      H   
29/12/13     T1         Sivasspor         Karabukspor      3      1      H   
29/12/13     T1       Trabzonspor         Antalyaspor      2      1      H   
29/12/13     E2          Bradford             Swindon      1      1      D   
29/12/13     E2         Brentford  Milton Keynes Dons      3      1      H   
29/12/13     E2      Bristol City           Stevenage      4      1      H   
29/12/13     E2          Carlisle           Peterboro      2      1      H   
29/12/13     E2        Colchester               Crewe      1      2      A   
29/12/13     E2          Coventry              Oldham      1      1      D   
29/12/13     E2      Crawley Town        Notts County      1      0      H   
29/12/13     E2        Gillingham             Walsall      2      2      D   
29/12/13     E2         Port Vale           Rotherham      2      0      H   
29/12/13     E2  Sheffield United            Tranmere      3      1      H   
29/12/13     E2        Shrewsbury             Preston      0      1      A   
29/12/13     E2            Wolves       Leyton Orient      1      1      D   

         season  
date             
29/12/13  13-14  
29/12/13  13-14  
29/12/13  13-14  
29/12/13  13-14  
29/12/13  13-14  
29/12/13  13-14  
29/12/13  13-14  
29/12/13  13-14  
29/12/13  13-14  
29/12/13  13-14  
29/12/13  13-14  
29/12/13  13-14  
29/12/13  13-14  
29/12/13  13-14  
29/12/13  13-14  
29/12/13  13-14  


29/12/14
         league         home           away  hgoal  agoal result season
date                                                                   
29/12/14     T1  Trabzonspor  Eskisehirspor      1      4      A  14-15
29/12/14     E2       Yeovil  Leyton Orient      0      3      A  14-15


30/01/12
         league         home        away  hgoal  agoal result season
date                                                                
30/01/12    SP1      Osasuna  Ath Madrid      0      1      A  11-12
30/01/12     T1  Kayserispor    Besiktas      1      0      H  11-12


30/01/15
         league                  home           away  hgoal  agoal result  \
date                                                                        
30/01/15     D1             Wolfsburg  Bayern Munich      4      1      H   
30/01/15     T1  Akhisar Belediyespor  Balikesirspor      2      2      D   
30/01/15     T1           Trabzonspor    Erciyesspor      2      1      H   
30/01/15    SP1             Vallecano      La Coruna      1      2      A   

         season  
date             
30/01/15  14-15  
30/01/15  14-15  
30/01/15  14-15  
30/01/15  14-15  


30/01/16
         league           home            away  hgoal  agoal result season
date                                                                      
30/01/16     D1       Augsburg   Ein Frankfurt      0      0      D  15-16
30/01/16     D1      Darmstadt      Schalke 04      0      2      A  15-16
30/01/16     D1       Dortmund      Ingolstadt      2      0      H  15-16
30/01/16     D1     Leverkusen        Hannover      3      0      H  15-16
30/01/16     D1      Stuttgart         Hamburg      2      1      H  15-16
30/01/16     D1  Werder Bremen          Hertha      3      3      D  15-16
30/01/16     I1       Atalanta        Sassuolo      1      1      D  15-16
30/01/16     I1          Carpi         Palermo      1      1      D  15-16
30/01/16     I1           Roma       Frosinone      3      1      H  15-16
30/01/16    SP1      Barcelona      Ath Madrid      2      1      H  15-16
30/01/16    SP1          Eibar          Malaga      1      2      A  15-16
30/01/16    SP1         Getafe      Ath Bilbao      0      1      A  15-16
30/01/16    SP1       Sociedad           Betis      2      1      H  15-16
30/01/16    SP1     Villarreal         Granada      1      0      H  15-16
30/01/16     E2      Blackpool      Gillingham      1      0      H  15-16
30/01/16     E2       Bradford  Fleetwood Town      2      1      H  15-16
30/01/16     E2       Coventry      Scunthorpe      1      2      A  15-16
30/01/16     E2       Millwall           Crewe      1      1      D  15-16
30/01/16     E2       Rochdale          Burton      2      1      H  15-16
30/01/16     E2        Swindon        Barnsley      0      1      A  15-16
30/01/16     E2          Wigan       Port Vale      3      0      H  15-16


30/03/12
         league                home         away  hgoal  agoal result season
date                                                                        
30/03/12     D1            Dortmund    Stuttgart      4      4      D  11-12
30/03/12     T1       Gaziantepspor   Ankaragucu      1      0      H  11-12
30/03/12     T1  Mersin Idman Yurdu  Karabukspor      0      2      A  11-12


30/03/13
         league                home           away  hgoal  agoal result season
date                                                                          
30/03/13    SP1               Celta      Barcelona      2      2      D  12-13
30/03/13    SP1             Levante        Sevilla      1      0      H  12-13
30/03/13    SP1           Vallecano         Malaga      1      3      A  12-13
30/03/13    SP1            Zaragoza    Real Madrid      1      1      D  12-13
30/03/13     I1            Atalanta      Sampdoria      0      0      D  12-13
30/03/13     I1            Cagliari     Fiorentina      2      1      H  12-13
30/03/13     I1              Chievo          Milan      0      1      A  12-13
30/03/13     I1               Genoa          Siena      2      2      D  12-13
30/03/13     I1               Inter       Juventus      1      2      A  12-13
30/03/13     I1               Lazio        Catania      2      1      H  12-13
30/03/13     I1             Palermo           Roma      2      0      H  12-13
30/03/13     I1               Parma        Pescara      3      0      H  12-13
30/03/13     I1              Torino         Napoli      3      5      A  12-13
30/03/13     I1             Udinese        Bologna      0      0      D  12-13
30/03/13     T1         Galatasaray     Buyuksehyr      2      0      H  12-13
30/03/13     T1       Gaziantepspor  Eskisehirspor      2      0      H  12-13
30/03/13     T1           Sivasspor       Orduspor      3      2      H  12-13
30/03/13     D1            Augsburg       Hannover      0      2      A  12-13
30/03/13     D1       Bayern Munich        Hamburg      9      2      H  12-13
30/03/13     D1  Fortuna Dusseldorf     Leverkusen      1      4      A  12-13
30/03/13     D1            Freiburg     M'gladbach      2      0      H  12-13
30/03/13     D1               Mainz  Werder Bremen      1      1      D  12-13
30/03/13     D1          Schalke 04     Hoffenheim      3      0      H  12-13
30/03/13     D1           Stuttgart       Dortmund      1      2      A  12-13


30/03/14
         league        home           away  hgoal  agoal result season
date                                                                  
30/03/14     D1    Hannover  Werder Bremen      1      2      A  13-14
30/03/14     D1  M'gladbach        Hamburg      3      1      H  13-14
30/03/14    SP1     Osasuna       Sociedad      1      1      D  13-14
30/03/14    SP1    Valencia         Getafe      1      3      A  13-14
30/03/14     I1       Lazio          Parma      3      2      H  13-14
30/03/14     I1      Napoli       Juventus      2      0      H  13-14
30/03/14     I1   Sampdoria     Fiorentina      0      0      D  13-14
30/03/14     I1    Sassuolo           Roma      0      2      A  13-14
30/03/14     I1      Torino       Cagliari      2      1      H  13-14


30/03/16
         league      home              away  hgoal  agoal result season
date                                                                   
30/03/16     E2  Southend  Sheffield United      3      1      H  15-16


30/04/15
         league       home      away  hgoal  agoal result season
date                                                            
30/04/15     I1     Empoli    Napoli      4      2      H  14-15
30/04/15    SP1    Granada   Espanol      1      2      A  14-15
30/04/15    SP1  Vallecano  Valencia      1      1      D  14-15


30/04/16
         league            home              away  hgoal  agoal result season
date                                                                         
30/04/16     T1        Besiktas       Kayserispor      4      0      H  15-16
30/04/16     T1   Eskisehirspor       Trabzonspor      1      0      H  15-16
30/04/16     T1  Genclerbirligi        Buyuksehyr      0      0      D  15-16
30/04/16     D1   Bayern Munich        M'gladbach      1      1      D  15-16
30/04/16     D1       Darmstadt     Ein Frankfurt      1      2      A  15-16
30/04/16     D1        Dortmund         Wolfsburg      5      1      H  15-16
30/04/16     D1        Hannover        Schalke 04      1      3      A  15-16
30/04/16     D1      Hoffenheim        Ingolstadt      2      1      H  15-16
30/04/16     D1      Leverkusen            Hertha      2      1      H  15-16
30/04/16     D1           Mainz           Hamburg      0      0      D  15-16
30/04/16     I1          Chievo        Fiorentina      0      0      D  15-16
30/04/16     I1         Udinese            Torino      1      5      A  15-16
30/04/16    SP1      Ath Madrid         Vallecano      1      0      H  15-16
30/04/16    SP1           Betis         Barcelona      0      2      A  15-16
30/04/16    SP1         Granada        Las Palmas      3      2      H  15-16
30/04/16    SP1        Sociedad       Real Madrid      0      1      A  15-16
30/04/16     E2        Barnsley        Colchester      2      2      D  15-16
30/04/16     E2       Blackpool             Wigan      0      4      A  15-16
30/04/16     E2          Burton        Gillingham      2      1      H  15-16
30/04/16     E2    Chesterfield              Bury      3      0      H  15-16
30/04/16     E2        Coventry  Sheffield United      3      1      H  15-16
30/04/16     E2           Crewe         Doncaster      3      1      H  15-16
30/04/16     E2        Millwall            Oldham      3      0      H  15-16
30/04/16     E2        Rochdale           Swindon      2      2      D  15-16
30/04/16     E2      Scunthorpe         Port Vale      1      0      H  15-16
30/04/16     E2      Shrewsbury         Peterboro      3      4      A  15-16
30/04/16     E2        Southend          Bradford      0      1      A  15-16


30/05/15
         league                home         away  hgoal  agoal result season
date                                                                        
30/05/15     I1            Atalanta        Milan      1      3      A  14-15
30/05/15     I1              Verona     Juventus      2      2      D  14-15
30/05/15     T1           Bursaspor    Konyaspor      0      0      D  14-15
30/05/15     T1          Fenerbahce    Kasimpasa      2      0      H  14-15
30/05/15     T1  Mersin Idman Yurdu   Buyuksehyr      2      2      D  14-15
30/05/15     T1            Rizespor  Galatasaray      1      1      D  14-15
30/05/15     T1           Sivasspor  Trabzonspor      1      1      D  14-15


30/08/13
         league           home         away  hgoal  agoal result season
date                                                                   
30/08/13     T1  Eskisehirspor  Galatasaray      0      0      D  13-14
30/08/13     T1      Konyaspor    Kasimpasa      1      2      A  13-14
30/08/13    SP1        Almeria        Elche      2      2      D  13-14
30/08/13    SP1      Vallecano      Levante      1      2      A  13-14


30/08/14
         league                home              away  hgoal  agoal result  \
date                                                                         
30/08/14     D1             Hamburg         Paderborn      0      3      A   
30/08/14     D1          Leverkusen            Hertha      4      2      H   
30/08/14     D1          Schalke 04     Bayern Munich      1      1      D   
30/08/14     D1           Stuttgart           FC Koln      0      2      A   
30/08/14     D1       Werder Bremen        Hoffenheim      1      1      D   
30/08/14     D1           Wolfsburg     Ein Frankfurt      2      2      D   
30/08/14     I1              Chievo          Juventus      0      1      A   
30/08/14     I1                Roma        Fiorentina      2      0      H   
30/08/14     T1           Bursaspor       Galatasaray      0      2      A   
30/08/14     T1          Buyuksehyr         Kasimpasa      1      1      D   
30/08/14     T1       Eskisehirspor         Konyaspor      2      1      H   
30/08/14     T1  Mersin Idman Yurdu          Besiktas      0      1      A   
30/08/14     E2          Colchester         Peterboro      1      3      A   
30/08/14     E2           Doncaster            Oldham      0      2      A   
30/08/14     E2      Fleetwood Town     Leyton Orient      1      1      D   
30/08/14     E2          Gillingham             Crewe      2      0      H   
30/08/14     E2  Milton Keynes Dons      Crawley Town      2      0      H   
30/08/14     E2           Port Vale      Chesterfield      1      2      A   
30/08/14     E2             Preston  Sheffield United      1      1      D   
30/08/14     E2            Rochdale          Bradford      0      2      A   
30/08/14     E2          Scunthorpe           Walsall      2      1      H   
30/08/14     E2             Swindon          Coventry      1      1      D   
30/08/14     E2              Yeovil          Barnsley      1      1      D   
30/08/14    SP1          Ath Bilbao           Levante      3      0      H   
30/08/14    SP1          Ath Madrid             Eibar      2      1      H   
30/08/14    SP1             Cordoba             Celta      1      1      D   
30/08/14    SP1             Espanol           Sevilla      1      2      A   

         season  
date             
30/08/14  14-15  
30/08/14  14-15  
30/08/14  14-15  
30/08/14  14-15  
30/08/14  14-15  
30/08/14  14-15  
30/08/14  14-15  
30/08/14  14-15  
30/08/14  14-15  
30/08/14  14-15  
30/08/14  14-15  
30/08/14  14-15  
30/08/14  14-15  
30/08/14  14-15  
30/08/14  14-15  
30/08/14  14-15  
30/08/14  14-15  
30/08/14  14-15  
30/08/14  14-15  
30/08/14  14-15  
30/08/14  14-15  
30/08/14  14-15  
30/08/14  14-15  
30/08/14  14-15  
30/08/14  14-15  
30/08/14  14-15  
30/08/14  14-15  


30/08/15
         league           home                  away  hgoal  agoal result  \
date                                                                        
30/08/15     T1  Eskisehirspor              Rizespor      1      1      D   
30/08/15     T1     Fenerbahce           Antalyaspor      2      1      H   
30/08/15     T1      Sivasspor           Osmanlispor      1      1      D   
30/08/15     T1    Trabzonspor  Akhisar Belediyespor      2      2      D   
30/08/15     D1       Dortmund                Hertha      3      1      H   
30/08/15     D1  Werder Bremen            M'gladbach      2      1      H   
30/08/15     I1       Atalanta             Frosinone      2      0      H   
30/08/15     I1          Carpi                 Inter      1      2      A   
30/08/15     I1         Chievo                 Lazio      4      0      H   
30/08/15     I1          Genoa                Verona      2      0      H   
30/08/15     I1         Napoli             Sampdoria      2      2      D   
30/08/15     I1           Roma              Juventus      2      1      H   
30/08/15     I1         Torino            Fiorentina      3      1      H   
30/08/15     I1        Udinese               Palermo      0      1      A   
30/08/15    SP1          Eibar            Ath Bilbao      2      0      H   
30/08/15    SP1         Getafe               Granada      1      2      A   
30/08/15    SP1     Las Palmas               Levante      0      0      D   
30/08/15    SP1        Sevilla            Ath Madrid      0      3      A   
30/08/15    SP1       Valencia             La Coruna      1      1      D   

         season  
date             
30/08/15  15-16  
30/08/15  15-16  
30/08/15  15-16  
30/08/15  15-16  
30/08/15  15-16  
30/08/15  15-16  
30/08/15  15-16  
30/08/15  15-16  
30/08/15  15-16  
30/08/15  15-16  
30/08/15  15-16  
30/08/15  15-16  
30/08/15  15-16  
30/08/15  15-16  
30/08/15  15-16  
30/08/15  15-16  
30/08/15  15-16  
30/08/15  15-16  
30/08/15  15-16  


30/09/11
         league            home            away  hgoal  agoal result season
date                                                                       
30/09/11     D1  Kaiserslautern       Stuttgart      0      2      A  11-12
30/09/11     T1       Bursaspor  Genclerbirligi      4      0      H  11-12


30/09/12
         league            home                away  hgoal  agoal result  \
date                                                                       
30/09/12    SP1         Espanol          Ath Madrid      0      1      A   
30/09/12    SP1         Granada               Celta      2      1      H   
30/09/12    SP1         Osasuna             Levante      4      0      H   
30/09/12    SP1     Real Madrid           La Coruna      5      1      H   
30/09/12    SP1      Valladolid           Vallecano      6      1      H   
30/09/12     I1        Atalanta              Torino      1      5      A   
30/09/12     I1         Bologna             Catania      4      0      H   
30/09/12     I1        Cagliari             Pescara      1      2      A   
30/09/12     I1           Inter          Fiorentina      2      1      H   
30/09/12     I1           Lazio               Siena      2      1      H   
30/09/12     I1         Palermo              Chievo      4      1      H   
30/09/12     I1       Sampdoria              Napoli      0      1      A   
30/09/12     I1         Udinese               Genoa      0      0      D   
30/09/12     T1     Antalyaspor          Elazigspor      4      0      H   
30/09/12     T1   Eskisehirspor          Buyuksehyr      1      0      H   
30/09/12     T1  Genclerbirligi         Kayserispor      4      0      H   
30/09/12     T1     Trabzonspor  Mersin Idman Yurdu      1      1      D   
30/09/12     D1   Ein Frankfurt            Freiburg      2      1      H   
30/09/12     D1       Wolfsburg               Mainz      0      2      A   

         season  
date             
30/09/12  12-13  
30/09/12  12-13  
30/09/12  12-13  
30/09/12  12-13  
30/09/12  12-13  
30/09/12  12-13  
30/09/12  12-13  
30/09/12  12-13  
30/09/12  12-13  
30/09/12  12-13  
30/09/12  12-13  
30/09/12  12-13  
30/09/12  12-13  
30/09/12  12-13  
30/09/12  12-13  
30/09/12  12-13  
30/09/12  12-13  
30/09/12  12-13  
30/09/12  12-13  


30/09/13
         league         home         away  hgoal  agoal result season
date                                                                 
30/09/13     T1  Antalyaspor     Besiktas      2      0      H  13-14
30/09/13     T1  Erciyesspor  Kayserispor      1      1      D  13-14
30/09/13    SP1      Granada   Ath Bilbao      2      0      H  13-14
30/09/13     I1   Fiorentina        Parma      2      2      D  13-14


30/09/14
         league   home          away  hgoal  agoal result season
date                                                            
30/09/14     E2  Crewe  Notts County      0      3      A  14-15


30/10/11
         league         home            away  hgoal  agoal result season
date                                                                    
30/10/11    SP1   Ath Madrid        Zaragoza      3      1      H  11-12
30/10/11    SP1       Malaga         Espanol      2      1      H  11-12
30/10/11    SP1      Osasuna         Levante      2      0      H  11-12
30/10/11    SP1    Santander           Betis      1      0      H  11-12
30/10/11    SP1     Sp Gijon      Ath Bilbao      1      1      D  11-12
30/10/11     I1      Bologna        Atalanta      3      1      H  11-12
30/10/11     I1     Cagliari           Lazio      0      3      A  11-12
30/10/11     I1   Fiorentina           Genoa      1      0      H  11-12
30/10/11     I1        Lecce          Novara      1      1      D  11-12
30/10/11     I1        Parma          Cesena      2      0      H  11-12
30/10/11     I1        Siena          Chievo      4      1      H  11-12
30/10/11     I1      Udinese         Palermo      1      0      H  11-12
30/10/11     D1      FC Koln        Augsburg      3      0      H  11-12
30/10/11     D1      Hamburg  Kaiserslautern      1      1      D  11-12
30/10/11     T1   Ankaragucu      Buyuksehyr      1      2      A  11-12
30/10/11     T1     Besiktas       Sivasspor      3      1      H  11-12
30/10/11     T1    Bursaspor      Manisaspor      0      0      D  11-12
30/10/11     T1  Kayserispor     Galatasaray      0      2      A  11-12


30/10/12
         league     home   away  hgoal  agoal result season
date                                                       
30/10/12     I1  Palermo  Milan      2      2      D  12-13


30/10/13
         league         home       away  hgoal  agoal result season
date                                                               
30/10/13    SP1      Osasuna  Vallecano      3      1      H  13-14
30/10/13    SP1  Real Madrid    Sevilla      7      3      H  13-14
30/10/13    SP1     Valencia    Almeria      1      2      A  13-14
30/10/13    SP1   Valladolid   Sociedad      2      2      D  13-14
30/10/13     I1     Cagliari    Bologna      0      3      A  13-14
30/10/13     I1   Fiorentina     Napoli      1      2      A  13-14
30/10/13     I1        Genoa      Parma      1      0      H  13-14
30/10/13     I1     Juventus    Catania      4      0      H  13-14
30/10/13     I1      Livorno     Torino      3      3      D  13-14
30/10/13     I1        Milan      Lazio      1      1      D  13-14
30/10/13     I1     Sassuolo    Udinese      1      2      A  13-14
30/10/13     I1       Verona  Sampdoria      2      0      H  13-14


30/10/14
         league    home   away  hgoal  agoal result season
date                                                      
30/10/14     I1  Verona  Lazio      1      1      D  14-15


30/10/15
         league                  home            away  hgoal  agoal result  \
date                                                                         
30/10/15     T1  Akhisar Belediyespor     Antalyaspor      2      1      H   
30/10/15     T1              Besiktas       Kasimpasa      3      3      D   
30/10/15     T1             Konyaspor  Genclerbirligi      0      0      D   
30/10/15     D1         Ein Frankfurt   Bayern Munich      0      0      D   
30/10/15    SP1             La Coruna      Ath Madrid      1      1      D   

         season  
date             
30/10/15  15-16  
30/10/15  15-16  
30/10/15  15-16  
30/10/15  15-16  
30/10/15  15-16  


30/11/12
         league                home           away  hgoal  agoal result season
date                                                                          
30/11/12    SP1             Osasuna      Vallecano      1      0      H  12-13
30/11/12     I1             Catania          Milan      1      3      A  12-13
30/11/12     T1         Galatasaray  Gaziantepspor      1      1      D  12-13
30/11/12     D1  Fortuna Dusseldorf  Ein Frankfurt      4      0      H  12-13


30/11/13
         league                home                  away  hgoal  agoal  \
date                                                                      
30/11/13     D1       Bayern Munich          Braunschweig      2      0   
30/11/13     D1              Hertha              Augsburg      0      0   
30/11/13     D1          Hoffenheim         Werder Bremen      4      4   
30/11/13     D1          Leverkusen              Nurnberg      3      0   
30/11/13     D1               Mainz              Dortmund      1      3   
30/11/13     D1          Schalke 04             Stuttgart      3      0   
30/11/13     T1          Fenerbahce              Besiktas      3      3   
30/11/13     T1      Genclerbirligi         Gaziantepspor      1      3   
30/11/13     T1         Kayserispor  Akhisar Belediyespor      0      0   
30/11/13     E2               Crewe          Crawley Town      1      0   
30/11/13     E2       Leyton Orient      Sheffield United      1      1   
30/11/13     E2  Milton Keynes Dons              Coventry      1      3   
30/11/13     E2        Notts County             Brentford      0      1   
30/11/13     E2           Peterboro                Wolves      1      0   
30/11/13     E2             Preston          Bristol City      1      0   
30/11/13     E2           Rotherham            Gillingham      4      1   
30/11/13     E2           Stevenage            Shrewsbury      1      3   
30/11/13     E2             Swindon              Carlisle      3      1   
30/11/13     E2            Tranmere            Colchester      2      1   
30/11/13     E2             Walsall             Port Vale      0      2   
30/11/13    SP1               Celta               Almeria      3      1   
30/11/13    SP1               Elche            Ath Madrid      0      2   
30/11/13    SP1             Espanol              Sociedad      1      2   
30/11/13    SP1         Real Madrid            Valladolid      4      0   
30/11/13     I1               Genoa                Torino      1      1   
30/11/13     I1               Parma               Bologna      1      1   

         result season  
date                    
30/11/13      H  13-14  
30/11/13      D  13-14  
30/11/13      D  13-14  
30/11/13      H  13-14  
30/11/13      A  13-14  
30/11/13      H  13-14  
30/11/13      D  13-14  
30/11/13      A  13-14  
30/11/13      D  13-14  
30/11/13      H  13-14  
30/11/13      D  13-14  
30/11/13      A  13-14  
30/11/13      A  13-14  
30/11/13      H  13-14  
30/11/13      H  13-14  
30/11/13      H  13-14  
30/11/13      A  13-14  
30/11/13      H  13-14  
30/11/13      H  13-14  
30/11/13      A  13-14  
30/11/13      H  13-14  
30/11/13      A  13-14  
30/11/13      A  13-14  
30/11/13      H  13-14  
30/11/13      D  13-14  
30/11/13      D  13-14  


30/11/14
         league                home           away  hgoal  agoal result season
date                                                                          
30/11/14     D1       Ein Frankfurt       Dortmund      2      0      H  14-15
30/11/14     D1           Wolfsburg     M'gladbach      1      0      H  14-15
30/11/14     I1            Cagliari     Fiorentina      0      4      A  14-15
30/11/14     I1              Cesena          Genoa      0      3      A  14-15
30/11/14     I1              Empoli       Atalanta      0      0      D  14-15
30/11/14     I1            Juventus         Torino      2      1      H  14-15
30/11/14     I1               Milan        Udinese      2      0      H  14-15
30/11/14     I1             Palermo          Parma      2      1      H  14-15
30/11/14     I1                Roma          Inter      4      2      H  14-15
30/11/14     T1          Fenerbahce  Eskisehirspor      2      2      D  14-15
30/11/14     T1  Mersin Idman Yurdu      Sivasspor      2      0      H  14-15
30/11/14    SP1          Ath Madrid      La Coruna      2      0      H  14-15
30/11/14    SP1             Cordoba     Villarreal      0      2      A  14-15
30/11/14    SP1             Sevilla        Granada      5      1      H  14-15
30/11/14    SP1            Valencia      Barcelona      0      1      A  14-15


30/11/15
         league        home         away  hgoal  agoal result season
date                                                                
30/11/15     T1  Fenerbahce  Trabzonspor      2      0      H  15-16
30/11/15     I1      Napoli        Inter      2      1      H  15-16
30/11/15     I1    Sassuolo   Fiorentina      1      1      D  15-16


30/12/11
         league          home      away  hgoal  agoal result season
date                                                               
30/12/11     E2  Huddersfield  Carlisle      1      1      D  11-12
30/12/11     E2      Tranmere      Bury      2      0      H  11-12


30/12/15
         league         home        away  hgoal  agoal result season
date                                                                
30/12/15    SP1    Barcelona       Betis      4      0      H  15-16
30/12/15    SP1        Celta  Ath Bilbao      0      1      A  15-16
30/12/15    SP1        Eibar    Sp Gijon      2      0      H  15-16
30/12/15    SP1       Getafe   La Coruna      0      0      D  15-16
30/12/15    SP1   Las Palmas     Granada      4      1      H  15-16
30/12/15    SP1      Levante      Malaga      0      1      A  15-16
30/12/15    SP1  Real Madrid    Sociedad      3      1      H  15-16
30/12/15    SP1      Sevilla     Espanol      2      0      H  15-16
30/12/15    SP1    Vallecano  Ath Madrid      0      2      A  15-16


31/01/12
         league                home            away  hgoal  agoal result  \
date                                                                       
31/01/12     E2            Charlton            Bury      1      1      D   
31/01/12     E2  Milton Keynes Dons  Sheffield Weds      1      1      D   
31/01/12     E2             Walsall    Notts County      0      1      A   

         season  
date             
31/01/12  11-12  
31/01/12  11-12  
31/01/12  11-12  


31/01/14
         league          home         away  hgoal  agoal result season
date                                                                  
31/01/14     D1  Braunschweig     Dortmund      1      2      A  13-14
31/01/14     T1      Besiktas  Erciyesspor      3      2      H  13-14
31/01/14    SP1       Granada        Celta      1      2      A  13-14


31/01/15
         league              home                away  hgoal  agoal result  \
date                                                                         
31/01/15     D1          Freiburg       Ein Frankfurt      4      1      H   
31/01/15     D1           Hamburg             FC Koln      0      2      A   
31/01/15     D1        Leverkusen            Dortmund      0      0      D   
31/01/15     D1             Mainz           Paderborn      5      0      H   
31/01/15     D1        Schalke 04            Hannover      1      0      H   
31/01/15     D1         Stuttgart          M'gladbach      0      1      A   
31/01/15     I1             Genoa          Fiorentina      1      1      D   
31/01/15     I1              Roma              Empoli      1      1      D   
31/01/15     T1     Gaziantepspor           Sivasspor      1      3      A   
31/01/15     T1       Karabukspor          Fenerbahce      1      2      A   
31/01/15     T1         Kasimpasa          Buyuksehyr      0      1      A   
31/01/15     E2          Bradford          Colchester      1      1      D   
31/01/15     E2      Chesterfield           Doncaster      2      2      D   
31/01/15     E2          Coventry            Rochdale      2      2      D   
31/01/15     E2      Crawley Town             Preston      2      1      H   
31/01/15     E2             Crewe  Milton Keynes Dons      0      5      A   
31/01/15     E2     Leyton Orient          Scunthorpe      1      4      A   
31/01/15     E2            Oldham        Notts County      3      0      H   
31/01/15     E2         Peterboro              Yeovil      1      0      H   
31/01/15     E2  Sheffield United             Swindon      2      0      H   
31/01/15    SP1             Celta             Cordoba      1      0      H   
31/01/15    SP1             Eibar          Ath Madrid      1      3      A   
31/01/15    SP1           Granada               Elche      1      0      H   
31/01/15    SP1       Real Madrid            Sociedad      4      1      H   

         season  
date             
31/01/15  14-15  
31/01/15  14-15  
31/01/15  14-15  
31/01/15  14-15  
31/01/15  14-15  
31/01/15  14-15  
31/01/15  14-15  
31/01/15  14-15  
31/01/15  14-15  
31/01/15  14-15  
31/01/15  14-15  
31/01/15  14-15  
31/01/15  14-15  
31/01/15  14-15  
31/01/15  14-15  
31/01/15  14-15  
31/01/15  14-15  
31/01/15  14-15  
31/01/15  14-15  
31/01/15  14-15  
31/01/15  14-15  
31/01/15  14-15  
31/01/15  14-15  
31/01/15  14-15  


31/01/16
         league           home        away  hgoal  agoal result season
date                                                                  
31/01/16     D1  Bayern Munich  Hoffenheim      2      0      H  15-16
31/01/16     D1      Wolfsburg     FC Koln      1      1      D  15-16
31/01/16     I1        Bologna   Sampdoria      3      2      H  15-16
31/01/16     I1         Chievo    Juventus      0      4      A  15-16
31/01/16     I1          Genoa  Fiorentina      0      0      D  15-16
31/01/16     I1          Milan       Inter      3      0      H  15-16
31/01/16     I1         Napoli      Empoli      5      1      H  15-16
31/01/16     I1         Torino      Verona      0      0      D  15-16
31/01/16     I1        Udinese       Lazio      0      0      D  15-16
31/01/16    SP1     Las Palmas       Celta      2      1      H  15-16
31/01/16    SP1    Real Madrid     Espanol      6      0      H  15-16
31/01/16    SP1        Sevilla     Levante      3      1      H  15-16
31/01/16    SP1       Valencia    Sp Gijon      0      1      A  15-16


31/03/12
         league                home              away  hgoal  agoal result  \
date                                                                         
31/03/12    SP1           Barcelona        Ath Bilbao      2      0      H   
31/03/12    SP1              Malaga             Betis      0      2      A   
31/03/12    SP1             Osasuna       Real Madrid      1      5      A   
31/03/12    SP1           Santander           Granada      0      1      A   
31/03/12    SP1            Sp Gijon          Zaragoza      1      2      A   
31/03/12     I1             Catania             Milan      1      1      D   
31/03/12     I1               Parma             Lazio      3      1      H   
31/03/12     D1            Augsburg           FC Koln      2      1      H   
31/03/12     D1              Hertha         Wolfsburg      1      4      A   
31/03/12     D1      Kaiserslautern           Hamburg      0      1      A   
31/03/12     D1          Leverkusen          Freiburg      0      2      A   
31/03/12     D1            Nurnberg     Bayern Munich      0      1      A   
31/03/12     D1       Werder Bremen             Mainz      0      3      A   
31/03/12     T1         Galatasaray          Orduspor      2      0      H   
31/03/12     T1      Genclerbirligi        Manisaspor      3      0      H   
31/03/12     T1         Kayserispor     Eskisehirspor      2      2      D   
31/03/12     T1           Sivasspor        Buyuksehyr      0      1      A   
31/03/12     E2         Bournemouth            Yeovil      0      0      D   
31/03/12     E2                Bury          Tranmere      2      0      H   
31/03/12     E2            Carlisle      Huddersfield      2      1      H   
31/03/12     E2            Charlton     Leyton Orient      2      0      H   
31/03/12     E2        Chesterfield        Scunthorpe      1      4      A   
31/03/12     E2              Exeter        Colchester      1      1      D   
31/03/12     E2          Hartlepool  Sheffield United      0      1      A   
31/03/12     E2  Milton Keynes Dons         Brentford      1      2      A   
31/03/12     E2        Notts County            Oldham      1      0      H   
31/03/12     E2            Rochdale           Walsall      3      3      D   
31/03/12     E2      Sheffield Weds           Preston      2      0      H   
31/03/12     E2           Stevenage           Wycombe      1      1      D   

         season  
date             
31/03/12  11-12  
31/03/12  11-12  
31/03/12  11-12  
31/03/12  11-12  
31/03/12  11-12  
31/03/12  11-12  
31/03/12  11-12  
31/03/12  11-12  
31/03/12  11-12  
31/03/12  11-12  
31/03/12  11-12  
31/03/12  11-12  
31/03/12  11-12  
31/03/12  11-12  
31/03/12  11-12  
31/03/12  11-12  
31/03/12  11-12  
31/03/12  11-12  
31/03/12  11-12  
31/03/12  11-12  
31/03/12  11-12  
31/03/12  11-12  
31/03/12  11-12  
31/03/12  11-12  
31/03/12  11-12  
31/03/12  11-12  
31/03/12  11-12  
31/03/12  11-12  
31/03/12  11-12  


31/03/13
         league            home                  away  hgoal  agoal result  \
date                                                                         
31/03/13    SP1      Ath Madrid              Valencia      1      1      D   
31/03/13    SP1         Espanol              Sociedad      2      2      D   
31/03/13    SP1        Mallorca             La Coruna      2      3      A   
31/03/13    SP1      Valladolid               Osasuna      1      3      A   
31/03/13     T1      Elazigspor        Genclerbirligi      1      1      D   
31/03/13     T1      Fenerbahce  Akhisar Belediyespor      2      0      H   
31/03/13     T1       Kasimpasa             Bursaspor      2      0      H   
31/03/13     T1     Trabzonspor           Antalyaspor      2      0      H   
31/03/13     D1  Greuther Furth         Ein Frankfurt      2      3      A   
31/03/13     D1       Wolfsburg              Nurnberg      2      2      D   

         season  
date             
31/03/13  12-13  
31/03/13  12-13  
31/03/13  12-13  
31/03/13  12-13  
31/03/13  12-13  
31/03/13  12-13  
31/03/13  12-13  
31/03/13  12-13  
31/03/13  12-13  
31/03/13  12-13  


31/03/14
         league           home            away  hgoal  agoal result season
date                                                                      
31/03/14     T1  Eskisehirspor  Genclerbirligi      0      1      A  13-14
31/03/14     T1     Fenerbahce       Bursaspor      3      0      H  13-14
31/03/14     T1    Kayserispor     Antalyaspor      3      1      H  13-14


31/03/15
         league      home          away  hgoal  agoal result season
date                                                               
31/03/15     E2  Bradford  Chesterfield      0      1      A  14-15


31/05/15
         league        home     away  hgoal  agoal result season
date                                                            
31/05/15     I1    Cagliari  Udinese      4      3      H  14-15
31/05/15     I1  Fiorentina   Chievo      3      0      H  14-15
31/05/15     I1       Inter   Empoli      4      3      H  14-15
31/05/15     I1      Napoli    Lazio      2      4      A  14-15
31/05/15     I1        Roma  Palermo      1      2      A  14-15
31/05/15     I1   Sampdoria    Parma      2      2      D  14-15
31/05/15     I1    Sassuolo    Genoa      3      1      H  14-15
31/05/15     I1      Torino   Cesena      5      0      H  14-15


31/08/12
         league                home            away  hgoal  agoal result  \
date                                                                       
31/08/12     T1      Genclerbirligi        Orduspor      1      1      D   
31/08/12     T1  Mersin Idman Yurdu   Eskisehirspor      1      3      A   
31/08/12     D1               Mainz  Greuther Furth      0      1      A   

         season  
date             
31/08/12  12-13  
31/08/12  12-13  
31/08/12  12-13  


31/08/13
         league              home                away  hgoal  agoal result  \
date                                                                         
31/08/13     D1           Hamburg        Braunschweig      4      0      H   
31/08/13     D1          Hannover               Mainz      4      1      H   
31/08/13     D1        M'gladbach       Werder Bremen      4      1      H   
31/08/13     D1          Nurnberg            Augsburg      0      1      A   
31/08/13     D1        Schalke 04          Leverkusen      2      0      H   
31/08/13     D1         Wolfsburg              Hertha      2      0      H   
31/08/13     T1       Antalyaspor           Bursaspor      1      2      A   
31/08/13     T1        Fenerbahce           Sivasspor      5      2      H   
31/08/13     T1       Kayserispor          Elazigspor      1      3      A   
31/08/13     E2         Brentford            Carlisle      0      0      D   
31/08/13     E2        Colchester       Leyton Orient      1      2      A   
31/08/13     E2        Gillingham        Bristol City      1      1      D   
31/08/13     E2      Notts County           Rotherham      0      1      A   
31/08/13     E2            Oldham            Tranmere      0      1      A   
31/08/13     E2         Peterboro        Crawley Town      0      2      A   
31/08/13     E2         Port Vale              Wolves      1      3      A   
31/08/13     E2  Sheffield United  Milton Keynes Dons      0      1      A   
31/08/13     E2        Shrewsbury            Coventry      1      1      D   
31/08/13     E2         Stevenage            Bradford      1      1      D   
31/08/13     E2           Swindon               Crewe      5      0      H   
31/08/13     E2           Walsall             Preston      0      3      A   
31/08/13    SP1             Celta             Granada      1      1      D   
31/08/13    SP1           Osasuna          Villarreal      0      3      A   
31/08/13    SP1        Valladolid              Getafe      1      0      H   
31/08/13     I1            Chievo              Napoli      2      4      A   
31/08/13     I1          Juventus               Lazio      4      1      H   

         season  
date             
31/08/13  13-14  
31/08/13  13-14  
31/08/13  13-14  
31/08/13  13-14  
31/08/13  13-14  
31/08/13  13-14  
31/08/13  13-14  
31/08/13  13-14  
31/08/13  13-14  
31/08/13  13-14  
31/08/13  13-14  
31/08/13  13-14  
31/08/13  13-14  
31/08/13  13-14  
31/08/13  13-14  
31/08/13  13-14  
31/08/13  13-14  
31/08/13  13-14  
31/08/13  13-14  
31/08/13  13-14  
31/08/13  13-14  
31/08/13  13-14  
31/08/13  13-14  
31/08/13  13-14  
31/08/13  13-14  
31/08/13  13-14  


31/08/14
         league          home           away  hgoal  agoal result season
date                                                                    
31/08/14     D1      Freiburg     M'gladbach      0      0      D  14-15
31/08/14     D1         Mainz       Hannover      0      0      D  14-15
31/08/14     I1      Atalanta         Verona      0      0      D  14-15
31/08/14     I1        Cesena          Parma      1      0      H  14-15
31/08/14     I1         Genoa         Napoli      1      2      A  14-15
31/08/14     I1         Milan          Lazio      3      1      H  14-15
31/08/14     I1       Palermo      Sampdoria      1      1      D  14-15
31/08/14     I1      Sassuolo       Cagliari      1      1      D  14-15
31/08/14     I1        Torino          Inter      0      0      D  14-15
31/08/14     I1       Udinese         Empoli      2      0      H  14-15
31/08/14     T1   Erciyesspor    Trabzonspor      0      0      D  14-15
31/08/14     T1    Fenerbahce    Karabukspor      3      2      H  14-15
31/08/14     T1     Sivasspor  Gaziantepspor      1      2      A  14-15
31/08/14     E2  Notts County   Bristol City      1      2      A  14-15
31/08/14    SP1         Elche        Granada      1      1      D  14-15
31/08/14    SP1     La Coruna      Vallecano      2      2      D  14-15
31/08/14    SP1      Sociedad    Real Madrid      4      2      H  14-15
31/08/14    SP1    Villarreal      Barcelona      0      1      A  14-15


31/08/15
         league      home      away  hgoal  agoal result season
date                                                           
31/08/15     E2  Coventry  Southend      2      2      D  15-16


31/10/11
         league                home            away  hgoal  agoal result  \
date                                                                       
31/10/11    SP1             Sevilla         Granada      1      2      A   
31/10/11     T1          Fenerbahce     Karabukspor      1      0      H   
31/10/11     T1  Mersin Idman Yurdu  Genclerbirligi      2      1      H   

         season  
date             
31/10/11  11-12  
31/10/11  11-12  
31/10/11  11-12  


31/10/12
         league      home       away  hgoal  agoal result season
date                                                            
31/10/12     I1  Atalanta     Napoli      1      0      H  12-13
31/10/12     I1  Cagliari      Siena      4      2      H  12-13
31/10/12     I1    Chievo    Pescara      2      0      H  12-13
31/10/12     I1     Inter  Sampdoria      3      2      H  12-13
31/10/12     I1  Juventus    Bologna      2      1      H  12-13
31/10/12     I1     Lazio     Torino      1      1      D  12-13
31/10/12     I1     Parma       Roma      3      2      H  12-13
31/10/12     I1   Udinese    Catania      2      2      D  12-13


31/10/13
         league        home        away  hgoal  agoal result season
date                                                               
31/10/13    SP1  Ath Bilbao       Elche      2      2      D  13-14
31/10/13    SP1       Betis     Levante      0      0      D  13-14
31/10/13    SP1     Granada  Ath Madrid      1      2      A  13-14
31/10/13    SP1  Villarreal      Getafe      0      2      A  13-14
31/10/13     I1        Roma      Chievo      1      0      H  13-14


31/10/14
         league         home       away  hgoal  agoal result season
date                                                               
31/10/14     D1   Schalke 04   Augsburg      1      0      H  14-15
31/10/14     T1  Galatasaray  Kasimpasa      2      1      H  14-15
31/10/14    SP1    La Coruna     Getafe      1      2      A  14-15


31/10/15
         league            home              away  hgoal  agoal result season
date                                                                         
31/10/15     D1        Augsburg             Mainz      3      3      D  15-16
31/10/15     D1         FC Koln        Hoffenheim      0      0      D  15-16
31/10/15     D1          Hertha        M'gladbach      1      4      A  15-16
31/10/15     D1      Schalke 04        Ingolstadt      1      1      D  15-16
31/10/15     D1   Werder Bremen          Dortmund      1      3      A  15-16
31/10/15     D1       Wolfsburg        Leverkusen      2      1      H  15-16
31/10/15     I1           Inter              Roma      1      0      H  15-16
31/10/15     I1        Juventus            Torino      2      1      H  15-16
31/10/15    SP1          Getafe         Barcelona      0      2      A  15-16
31/10/15    SP1     Real Madrid        Las Palmas      3      1      H  15-16
31/10/15    SP1        Sociedad             Celta      2      3      A  15-16
31/10/15    SP1        Valencia           Levante      3      0      H  15-16
31/10/15    SP1      Villarreal           Sevilla      2      1      H  15-16
31/10/15     E2            Bury         Blackpool      4      3      H  15-16
31/10/15     E2        Coventry         Peterboro      3      2      H  15-16
31/10/15     E2           Crewe  Sheffield United      1      0      H  15-16
31/10/15     E2       Doncaster        Colchester      2      0      H  15-16
31/10/15     E2  Fleetwood Town      Chesterfield      0      1      A  15-16
31/10/15     E2        Millwall          Bradford      0      0      D  15-16
31/10/15     E2          Oldham            Burton      0      1      A  15-16
31/10/15     E2       Port Vale        Shrewsbury      2      0      H  15-16
31/10/15     E2      Scunthorpe          Barnsley      2      0      H  15-16
31/10/15     E2        Southend          Rochdale      2      2      D  15-16
31/10/15     E2         Walsall        Gillingham      3      2      H  15-16
31/10/15     E2           Wigan           Swindon      1      0      H  15-16


31/12/11
         league              home                away  hgoal  agoal result  \
date                                                                         
31/12/11     E2         Brentford  Milton Keynes Dons      3      3      D   
31/12/11     E2        Colchester              Exeter      2      0      H   
31/12/11     E2     Leyton Orient            Charlton      1      0      H   
31/12/11     E2            Oldham        Notts County      3      2      H   
31/12/11     E2           Preston      Sheffield Weds      0      2      A   
31/12/11     E2        Scunthorpe        Chesterfield      2      2      D   
31/12/11     E2  Sheffield United          Hartlepool      3      1      H   
31/12/11     E2           Walsall            Rochdale      0      0      D   
31/12/11     E2           Wycombe           Stevenage      0      1      A   
31/12/11     E2            Yeovil         Bournemouth      1      3      A   

         season  
date             
31/12/11  11-12  
31/12/11  11-12  
31/12/11  11-12  
31/12/11  11-12  
31/12/11  11-12  
31/12/11  11-12  
31/12/11  11-12  
31/12/11  11-12  
31/12/11  11-12  
31/12/11  11-12  


31/12/15
         league        home      away  hgoal  agoal result season
date                                                             
31/12/15    SP1  Villarreal  Valencia      1      0      H  15-16


Note that since in the preceding commands we're grouping on an index, we need to specify the level argument as opposed to just using a column name. When we group by multiple keys, the resulting group name is a tuple, as shown in the upcoming commands. First, we reset the index to obtain the original DataFrame and define a MultiIndex in order to be able to group by multiple keys. If this is not done, it will result in a ValueError :


In [12]:
seasonData = seasonData.reset_index()

In [13]:
seasonData = seasonData.set_index(['date', 'league'])

In [14]:
dateAndLeague = seasonData.groupby(level=['date', 'league'])

In [15]:
for name, group in dateAndLeague:
    print(name)
    print(group)


('01/01/13', 'E2')
                         home                away  hgoal  agoal result season
date     league                                                              
01/01/13 E2         Brentford         Bournemouth      0      0      D  12-13
         E2              Bury            Tranmere      0      1      A  12-13
         E2          Coventry          Shrewsbury      0      1      A  12-13
         E2      Crawley Town          Colchester      3      0      H  12-13
         E2             Crewe            Carlisle      1      0      H  12-13
         E2         Doncaster    Sheffield United      2      2      D  12-13
         E2        Hartlepool             Preston      0      1      A  12-13
         E2      Notts County  Milton Keynes Dons      1      2      A  12-13
         E2        Scunthorpe              Oldham      2      2      D  12-13
         E2           Swindon          Portsmouth      5      0      H  12-13
         E2           Walsall           Stevenage      1      0      H  12-13
         E2            Yeovil       Leyton Orient      3      0      H  12-13
('01/01/14', 'E2')
                               home              away  hgoal  agoal result  \
date     league                                                              
01/01/14 E2                   Crewe          Carlisle      2      1      H   
         E2      Milton Keynes Dons        Colchester      0      0      D   
         E2            Notts County          Bradford      3      0      H   
         E2                  Oldham        Shrewsbury      1      2      A   
         E2               Peterboro         Brentford      1      3      A   
         E2                 Preston         Port Vale      3      2      H   
         E2               Rotherham          Coventry      1      3      A   
         E2                Tranmere            Wolves      1      1      D   
         E2                 Walsall  Sheffield United      2      1      H   

                season  
date     league         
01/01/14 E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
('01/02/12', 'I1')
                     home     away  hgoal  agoal result season
date     league                                               
01/02/12 I1      Cagliari     Roma      4      2      H  11-12
         I1         Inter  Palermo      4      4      D  11-12
         I1         Lazio    Milan      2      0      H  11-12
         I1        Napoli   Cesena      0      0      D  11-12
         I1       Udinese    Lecce      2      1      H  11-12
('01/02/12', 'T1')
                           home           away  hgoal  agoal result season
date     league                                                           
01/02/12 T1         Galatasaray    Antalyaspor      1      1      D  11-12
         T1      Genclerbirligi  Gaziantepspor      1      0      H  11-12
         T1            Orduspor     Ankaragucu      2      0      H  11-12
         T1         Trabzonspor      Bursaspor      2      1      H  11-12
('01/02/13', 'D1')
                          home      away  hgoal  agoal result season
date     league                                                     
01/02/13 D1      Werder Bremen  Hannover      2      0      H  12-13
('01/02/13', 'E2')
                             home      away  hgoal  agoal result season
date     league                                                        
01/02/13 E2      Sheffield United  Coventry      1      2      A  12-13
('01/02/13', 'I1')
                 home      away  hgoal  agoal result season
date     league                                            
01/02/13 I1      Roma  Cagliari      2      4      A  12-13
('01/02/13', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
01/02/13 SP1     Valladolid  Ath Bilbao      2      2      D  12-13
('01/02/13', 'T1')
                                 home         away  hgoal  agoal result season
date     league                                                               
01/02/13 T1      Akhisar Belediyespor  Kayserispor      1      2      A  12-13
         T1                  Besiktas  Karabukspor      2      2      D  12-13
('01/02/14', 'D1')
                       home           away  hgoal  agoal result season
date     league                                                       
01/02/14 D1        Augsburg  Werder Bremen      3      1      H  13-14
         D1        Hannover     M'gladbach      3      1      H  13-14
         D1      Hoffenheim        Hamburg      3      0      H  13-14
         D1      Leverkusen      Stuttgart      2      1      H  13-14
         D1           Mainz       Freiburg      2      0      H  13-14
         D1      Schalke 04      Wolfsburg      2      1      H  13-14
('01/02/14', 'E2')
                               home              away  hgoal  agoal result  \
date     league                                                              
01/02/14 E2            Bristol City          Carlisle      2      1      H   
         E2                   Crewe  Sheffield United      3      0      H   
         E2              Gillingham         Port Vale      3      2      H   
         E2      Milton Keynes Dons          Tranmere      0      1      A   
         E2                 Preston      Notts County      2      0      H   
         E2               Rotherham     Leyton Orient      2      1      H   
         E2              Shrewsbury         Brentford      1      1      D   
         E2                 Swindon            Oldham      0      1      A   
         E2                  Wolves          Bradford      2      0      H   

                season  
date     league         
01/02/14 E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
('01/02/14', 'I1')
                     home        away  hgoal  agoal result season
date     league                                                  
01/02/14 I1       Bologna     Udinese      0      2      A  13-14
         I1      Cagliari  Fiorentina      1      0      H  13-14
         I1         Milan      Torino      1      1      D  13-14
('01/02/14', 'SP1')
                      home        away  hgoal  agoal result season
date     league                                                   
01/02/14 SP1     Barcelona    Valencia      2      3      A  13-14
         SP1        Getafe  Valladolid      0      0      D  13-14
         SP1       Levante   Vallecano      0      0      D  13-14
         SP1        Malaga     Sevilla      3      2      H  13-14
('01/02/14', 'T1')
                          home           away  hgoal  agoal result season
date     league                                                          
01/02/14 T1        Antalyaspor  Gaziantepspor      0      1      A  13-14
         T1      Eskisehirspor     Fenerbahce      2      1      H  13-14
         T1        Kayserispor      Kasimpasa      0      0      D  13-14
('01/02/15', 'D1')
                          home        away  hgoal  agoal result season
date     league                                                       
01/02/15 D1           Augsburg  Hoffenheim      3      1      H  14-15
         D1      Werder Bremen      Hertha      2      0      H  14-15
('01/02/15', 'E2')
                         home            away  hgoal  agoal result season
date     league                                                          
01/02/15 E2      Bristol City  Fleetwood Town      2      0      H  14-15
         E2           Walsall      Gillingham      1      1      D  14-15
('01/02/15', 'I1')
                     home       away  hgoal  agoal result season
date     league                                                 
01/02/15 I1      Atalanta   Cagliari      2      1      H  14-15
         I1        Cesena      Lazio      2      1      H  14-15
         I1        Chievo     Napoli      1      2      A  14-15
         I1         Milan      Parma      3      1      H  14-15
         I1       Palermo     Verona      2      1      H  14-15
         I1      Sassuolo      Inter      3      1      H  14-15
         I1        Torino  Sampdoria      5      1      H  14-15
         I1       Udinese   Juventus      0      0      D  14-15
('01/02/15', 'SP1')
                      home        away  hgoal  agoal result season
date     league                                                   
01/02/15 SP1       Almeria      Getafe      1      0      H  14-15
         SP1     Barcelona  Villarreal      3      2      H  14-15
         SP1       Levante  Ath Bilbao      0      2      A  14-15
         SP1       Sevilla     Espanol      3      2      H  14-15
('01/02/15', 'T1')
                           home                away  hgoal  agoal result  \
date     league                                                            
01/02/15 T1            Besiktas  Mersin Idman Yurdu      2      1      H   
         T1         Galatasaray           Bursaspor      2      2      D   
         T1      Genclerbirligi            Rizespor      0      2      A   
         T1           Konyaspor       Eskisehirspor      1      0      H   

                season  
date     league         
01/02/15 T1      14-15  
         T1      14-15  
         T1      14-15  
         T1      14-15  
('01/02/16', 'SP1')
                      home       away  hgoal  agoal result season
date     league                                                  
01/02/16 SP1     La Coruna  Vallecano      2      2      D  15-16
('01/03/13', 'D1')
                          home        away  hgoal  agoal result season
date     league                                                       
01/03/13 D1      Ein Frankfurt  M'gladbach      0      1      A  12-13
('01/03/13', 'I1')
                   home      away  hgoal  agoal result season
date     league                                              
01/03/13 I1      Napoli  Juventus      1      1      D  12-13
('01/03/13', 'SP1')
                   home      away  hgoal  agoal result season
date     league                                              
01/03/13 SP1     Getafe  Zaragoza      2      0      H  12-13
('01/03/13', 'T1')
                           home        away  hgoal  agoal result season
date     league                                                        
01/03/13 T1      Genclerbirligi  Buyuksehyr      0      0      D  12-13
('01/03/14', 'D1')
                          home        away  hgoal  agoal result season
date     league                                                       
01/03/14 D1           Augsburg    Hannover      1      1      D  13-14
         D1      Bayern Munich  Schalke 04      5      1      H  13-14
         D1       Braunschweig  M'gladbach      1      1      D  13-14
         D1           Dortmund    Nurnberg      3      0      H  13-14
         D1         Leverkusen       Mainz      0      1      A  13-14
         D1      Werder Bremen     Hamburg      1      0      H  13-14
('01/03/14', 'E2')
                               home              away  hgoal  agoal result  \
date     league                                                              
01/03/14 E2            Bristol City        Gillingham      2      1      H   
         E2                Carlisle         Brentford      0      0      D   
         E2            Crawley Town         Peterboro      1      0      H   
         E2                   Crewe           Swindon      1      1      D   
         E2           Leyton Orient        Colchester      2      1      H   
         E2      Milton Keynes Dons  Sheffield United      0      1      A   
         E2                 Preston           Walsall      2      1      H   
         E2               Rotherham      Notts County      6      0      H   
         E2                Tranmere            Oldham      2      2      D   
         E2                  Wolves         Port Vale      3      0      H   

                season  
date     league         
01/03/14 E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
('01/03/14', 'I1')
                 home   away  hgoal  agoal result season
date     league                                         
01/03/14 I1      Roma  Inter      0      0      D  13-14
('01/03/14', 'SP1')
                    home        away  hgoal  agoal result season
date     league                                                 
01/03/14 SP1       Elche       Celta      1      0      H  13-14
         SP1      Getafe     Espanol      0      0      D  13-14
         SP1     Levante     Osasuna      2      0      H  13-14
         SP1      Malaga  Valladolid      1      1      D  13-14
('01/03/14', 'T1')
                          home            away  hgoal  agoal result season
date     league                                                           
01/03/14 T1      Eskisehirspor       Kasimpasa      0      0      D  13-14
         T1         Fenerbahce  Genclerbirligi      2      0      H  13-14
         T1        Karabukspor   Gaziantepspor      0      1      A  13-14
('01/03/15', 'D1')
                          home       away  hgoal  agoal result season
date     league                                                      
01/03/15 D1         M'gladbach  Paderborn      2      0      H  14-15
         D1      Werder Bremen  Wolfsburg      3      5      A  14-15
('01/03/15', 'I1')
                     home        away  hgoal  agoal result season
date     league                                                  
01/03/15 I1      Atalanta   Sampdoria      1      2      A  14-15
         I1      Cagliari      Verona      1      2      A  14-15
         I1        Cesena     Udinese      1      0      H  14-15
         I1         Inter  Fiorentina      0      1      A  14-15
         I1       Palermo      Empoli      0      0      D  14-15
         I1      Sassuolo       Lazio      0      3      A  14-15
         I1        Torino      Napoli      1      0      H  14-15
('01/03/15', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
01/03/15 SP1           Eibar  Ath Bilbao      0      1      A  14-15
         SP1     Real Madrid  Villarreal      1      1      D  14-15
         SP1         Sevilla  Ath Madrid      0      0      D  14-15
         SP1        Valencia    Sociedad      2      0      H  14-15
('01/03/15', 'T1')
                                 home                away  hgoal  agoal  \
date     league                                                           
01/03/15 T1      Akhisar Belediyespor          Buyuksehyr      0      2   
         T1                  Besiktas       Balikesirspor      2      2   
         T1                 Bursaspor  Mersin Idman Yurdu      2      1   
         T1             Gaziantepspor           Kasimpasa      0      2   

                result season  
date     league                
01/03/15 T1          A  14-15  
         T1          D  14-15  
         T1          H  14-15  
         T1          A  14-15  
('01/03/16', 'D1')
                       home       away  hgoal  agoal result season
date     league                                                   
01/03/16 D1        Hannover  Wolfsburg      0      4      A  15-16
         D1      Ingolstadt    FC Koln      1      1      D  15-16
('01/03/16', 'E2')
                             home        away  hgoal  agoal result season
date     league                                                          
01/03/16 E2              Barnsley    Coventry      2      0      H  15-16
         E2              Bradford  Colchester      1      2      A  15-16
         E2                  Bury   Peterboro      3      1      H  15-16
         E2          Chesterfield   Blackpool      1      1      D  15-16
         E2        Fleetwood Town  Gillingham      2      1      H  15-16
         E2              Millwall       Wigan      0      0      D  15-16
         E2                Oldham   Port Vale      1      1      D  15-16
         E2      Sheffield United      Burton      0      1      A  15-16
         E2            Shrewsbury    Rochdale      2      0      H  15-16
         E2              Southend       Crewe      1      1      D  15-16
         E2               Swindon   Doncaster      2      0      H  15-16
         E2               Walsall  Scunthorpe      0      0      D  15-16
('01/03/16', 'SP1')
                       home      away  hgoal  agoal result season
date     league                                                  
01/03/16 SP1     Ath Madrid  Sociedad      3      0      H  15-16
         SP1     Las Palmas    Getafe      4      0      H  15-16
('01/04/12', 'D1')
                       home        away  hgoal  agoal result season
date     league                                                    
01/04/12 D1        Hannover  M'gladbach      2      1      H  11-12
         D1      Hoffenheim  Schalke 04      1      1      D  11-12
('01/04/12', 'I1')
                       home      away  hgoal  agoal result season
date     league                                                  
01/04/12 I1         Bologna   Palermo      1      3      A  11-12
         I1        Cagliari  Atalanta      2      0      H  11-12
         I1      Fiorentina    Chievo      1      2      A  11-12
         I1           Inter     Genoa      5      4      H  11-12
         I1        Juventus    Napoli      3      0      H  11-12
         I1           Lecce    Cesena      0      0      D  11-12
         I1            Roma    Novara      5      2      H  11-12
         I1           Siena   Udinese      1      0      H  11-12
('01/04/12', 'SP1')
                       home       away  hgoal  agoal result season
date     league                                                   
01/04/12 SP1     Ath Madrid     Getafe      3      0      H  11-12
         SP1       Sociedad  Vallecano      4      0      H  11-12
         SP1       Valencia    Levante      1      1      D  11-12
         SP1     Villarreal    Espanol      0      0      D  11-12
('01/04/12', 'T1')
                        home        away  hgoal  agoal result season
date     league                                                     
01/04/12 T1      Antalyaspor   Bursaspor      1      3      A  11-12
         T1         Besiktas  Samsunspor      0      1      A  11-12
         T1      Trabzonspor  Fenerbahce      1      1      D  11-12
('01/04/13', 'E2')
                               home          away  hgoal  agoal result season
date     league                                                              
01/04/13 E2             Bournemouth    Scunthorpe      1      0      H  12-13
         E2                   Crewe       Preston      1      0      H  12-13
         E2               Doncaster       Swindon      1      0      H  12-13
         E2           Leyton Orient          Bury      2      0      H  12-13
         E2      Milton Keynes Dons     Brentford      2      0      H  12-13
         E2            Notts County        Yeovil      1      2      A  12-13
         E2                  Oldham    Colchester      1      1      D  12-13
         E2              Portsmouth      Tranmere      1      0      H  12-13
         E2        Sheffield United      Carlisle      0      0      D  12-13
         E2              Shrewsbury  Crawley Town      3      0      H  12-13
         E2               Stevenage    Hartlepool      1      0      H  12-13
         E2                 Walsall      Coventry      4      0      H  12-13
('01/04/13', 'SP1')
                       home     away  hgoal  agoal result season
date     league                                                 
01/04/13 SP1     Ath Bilbao  Granada      1      0      H  12-13
         SP1          Betis   Getafe      0      0      D  12-13
('01/04/13', 'T1')
                               home         away  hgoal  agoal result season
date     league                                                             
01/04/13 T1             Karabukspor  Kayserispor      3      1      H  12-13
         T1      Mersin Idman Yurdu     Besiktas      1      2      A  12-13
('01/04/14', 'E2')
                             home          away  hgoal  agoal result season
date     league                                                            
01/04/14 E2              Coventry      Bradford      0      0      D  13-14
         E2             Port Vale  Crawley Town      2      1      H  13-14
         E2      Sheffield United     Brentford      0      0      D  13-14
         E2             Stevenage        Wolves      0      0      D  13-14
('01/04/15', 'E2')
                     home           away  hgoal  agoal result season
date     league                                                     
01/04/15 E2      Coventry  Leyton Orient      0      1      A  14-15
('01/04/16', 'D1')
                       home       away  hgoal  agoal result season
date     league                                                   
01/04/16 D1      Leverkusen  Wolfsburg      3      0      H  15-16
('01/04/16', 'SP1')
                      home    away  hgoal  agoal result season
date     league                                               
01/04/16 SP1     Vallecano  Getafe      2      0      H  15-16
('01/05/12', 'I1')
                   home     away  hgoal  agoal result season
date     league                                             
01/05/12 I1      Chievo     Roma      0      0      D  11-12
         I1      Napoli  Palermo      2      0      H  11-12
('01/05/12', 'SP1')
                     home        away  hgoal  agoal result season
date     league                                                  
01/05/12 SP1       Getafe   Santander      1      1      D  11-12
         SP1      Granada     Espanol      2      1      H  11-12
         SP1     Sp Gijon  Villarreal      2      3      A  11-12
('01/05/15', 'SP1')
                     home     away  hgoal  agoal result season
date     league                                               
01/05/15 SP1     Sociedad  Levante      3      0      H  14-15
('01/05/16', 'I1')
                     home       away  hgoal  agoal result season
date     league                                                 
01/05/16 I1        Empoli    Bologna      0      0      D  15-16
         I1      Juventus      Carpi      2      0      H  15-16
         I1         Lazio      Inter      2      0      H  15-16
         I1         Milan  Frosinone      3      3      D  15-16
         I1       Palermo  Sampdoria      2      0      H  15-16
         I1      Sassuolo     Verona      1      0      H  15-16
('01/05/16', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
01/05/16 SP1     Ath Bilbao       Celta      2      1      H  15-16
         SP1        Espanol     Sevilla      1      0      H  15-16
         SP1      La Coruna      Getafe      0      2      A  15-16
         SP1       Valencia  Villarreal      0      2      A  15-16
('01/05/16', 'T1')
                        home                  away  hgoal  agoal result season
date     league                                                               
01/05/16 T1      Antalyaspor             Konyaspor      1      0      H  15-16
         T1       Fenerbahce         Gaziantepspor      3      0      H  15-16
         T1        Sivasspor  Akhisar Belediyespor      1      1      D  15-16
('01/06/13', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
01/06/13 SP1       Barcelona      Malaga      4      1      H  12-13
         SP1           Celta     Espanol      1      0      H  12-13
         SP1         Granada      Getafe      2      0      H  12-13
         SP1       La Coruna    Sociedad      0      1      A  12-13
         SP1         Levante       Betis      1      1      D  12-13
         SP1        Mallorca  Valladolid      4      2      H  12-13
         SP1     Real Madrid     Osasuna      4      2      H  12-13
         SP1         Sevilla    Valencia      4      3      H  12-13
         SP1       Vallecano  Ath Bilbao      2      2      D  12-13
         SP1        Zaragoza  Ath Madrid      1      3      A  12-13
('01/09/12', 'D1')
                               home           away  hgoal  agoal result season
date     league                                                               
01/09/12 D1      Fortuna Dusseldorf     M'gladbach      0      0      D  12-13
         D1              Hoffenheim  Ein Frankfurt      0      4      A  12-13
         D1              Leverkusen       Freiburg      2      0      H  12-13
         D1                Nurnberg       Dortmund      1      1      D  12-13
         D1              Schalke 04       Augsburg      3      1      H  12-13
         D1           Werder Bremen        Hamburg      2      0      H  12-13
('01/09/12', 'E2')
                               home           away  hgoal  agoal result season
date     league                                                               
01/09/12 E2                    Bury   Notts County      0      2      A  12-13
         E2            Crawley Town  Leyton Orient      1      0      H  12-13
         E2                   Crewe       Coventry      1      0      H  12-13
         E2              Hartlepool     Scunthorpe      2      0      H  12-13
         E2      Milton Keynes Dons       Carlisle      2      0      H  12-13
         E2              Portsmouth         Oldham      0      1      A  12-13
         E2        Sheffield United    Bournemouth      5      3      H  12-13
         E2               Stevenage     Shrewsbury      1      1      D  12-13
         E2                Tranmere     Colchester      4      0      H  12-13
         E2                 Walsall      Brentford      2      2      D  12-13
         E2                  Yeovil      Doncaster      2      1      H  12-13
('01/09/12', 'I1')
                    home     away  hgoal  agoal result season
date     league                                              
01/09/12 I1      Bologna    Milan      1      3      A  12-13
         I1       Torino  Pescara      3      0      H  12-13
('01/09/12', 'SP1')
                      home      away  hgoal  agoal result season
date     league                                                 
01/09/12 SP1         Celta   Osasuna      2      0      H  12-13
         SP1     La Coruna    Getafe      1      1      D  12-13
         SP1      Mallorca  Sociedad      1      0      H  12-13
         SP1      Zaragoza    Malaga      0      1      A  12-13
('01/09/12', 'T1')
                        home                  away  hgoal  agoal result season
date     league                                                               
01/09/12 T1       Buyuksehyr           Antalyaspor      0      1      A  12-13
         T1       Elazigspor             Kasimpasa      0      3      A  12-13
         T1      Karabukspor              Besiktas      0      3      A  12-13
         T1      Kayserispor  Akhisar Belediyespor      1      1      D  12-13
('01/09/13', 'D1')
                          home        away  hgoal  agoal result season
date     league                                                       
01/09/13 D1      Ein Frankfurt    Dortmund      1      2      A  13-14
         D1          Stuttgart  Hoffenheim      6      2      H  13-14
('01/09/13', 'I1')
                     home        away  hgoal  agoal result season
date     league                                                  
01/09/13 I1      Atalanta      Torino      2      0      H  13-14
         I1       Bologna   Sampdoria      2      2      D  13-14
         I1       Catania       Inter      0      3      A  13-14
         I1         Genoa  Fiorentina      2      5      A  13-14
         I1         Milan    Cagliari      3      1      H  13-14
         I1          Roma      Verona      3      0      H  13-14
         I1      Sassuolo     Livorno      1      4      A  13-14
         I1       Udinese       Parma      3      1      H  13-14
('01/09/13', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
01/09/13 SP1         Espanol       Betis      0      0      D  13-14
         SP1     Real Madrid  Ath Bilbao      3      1      H  13-14
         SP1         Sevilla      Malaga      2      2      D  13-14
         SP1        Sociedad  Ath Madrid      1      2      A  13-14
         SP1        Valencia   Barcelona      2      3      A  13-14
('01/09/13', 'T1')
                                 home            away  hgoal  agoal result  \
date     league                                                              
01/09/13 T1      Akhisar Belediyespor     Trabzonspor      3      0      H   
         T1                  Besiktas   Gaziantepspor      2      0      H   
         T1               Karabukspor  Genclerbirligi      1      0      H   
         T1                  Rizespor     Erciyesspor      2      1      H   

                season  
date     league         
01/09/13 T1      13-14  
         T1      13-14  
         T1      13-14  
         T1      13-14  
('01/10/11', 'D1')
                       home           away  hgoal  agoal result season
date     league                                                       
01/10/11 D1        Dortmund       Augsburg      4      0      H  11-12
         D1        Freiburg     M'gladbach      1      0      H  11-12
         D1          Hertha        FC Koln      3      0      H  11-12
         D1      Hoffenheim  Bayern Munich      0      0      D  11-12
         D1      Leverkusen      Wolfsburg      3      1      H  11-12
         D1        Nurnberg          Mainz      3      3      D  11-12
('01/10/11', 'E2')
                               home            away  hgoal  agoal result  \
date     league                                                            
01/10/11 E2               Brentford    Huddersfield      0      4      A   
         E2            Chesterfield      Colchester      0      1      A   
         E2                  Exeter          Oldham      2      0      H   
         E2              Hartlepool  Sheffield Weds      0      1      A   
         E2           Leyton Orient         Preston      2      1      H   
         E2      Milton Keynes Dons    Notts County      3      0      H   
         E2                Rochdale         Wycombe      2      1      H   
         E2        Sheffield United        Charlton      0      2      A   
         E2               Stevenage      Scunthorpe      1      2      A   
         E2                Tranmere     Bournemouth      0      0      D   
         E2                 Walsall        Carlisle      1      1      D   
         E2                  Yeovil            Bury      1      3      A   

                season  
date     league         
01/10/11 E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
('01/10/11', 'I1')
                  home      away  hgoal  agoal result season
date     league                                             
01/10/11 I1      Inter    Napoli      0      3      A  11-12
         I1       Roma  Atalanta      3      1      H  11-12
('01/10/11', 'SP1')
                       home       away  hgoal  agoal result season
date     league                                                   
01/10/11 SP1         Malaga     Getafe      3      2      H  11-12
         SP1        Osasuna   Mallorca      2      2      D  11-12
         SP1      Santander  Vallecano      1      1      D  11-12
         SP1       Valencia    Granada      1      0      H  11-12
         SP1     Villarreal   Zaragoza      2      2      D  11-12
('01/10/11', 'T1')
                        home        away  hgoal  agoal result season
date     league                                                     
01/10/11 T1      Antalyaspor   Sivasspor      2      2      D  11-12
         T1       Fenerbahce  Buyuksehyr      4      2      H  11-12
         T1      Karabukspor    Orduspor      1      2      A  11-12
('01/10/12', 'SP1')
                   home      away  hgoal  agoal result season
date     league                                              
01/10/12 SP1     Getafe  Mallorca      1      0      H  12-13
('01/10/12', 'T1')
                     home       away  hgoal  agoal result season
date     league                                                 
01/10/12 T1      Besiktas  Sivasspor      0      1      A  12-13
('01/11/12', 'I1')
                  home        away  hgoal  agoal result season
date     league                                               
01/11/12 I1      Genoa  Fiorentina      0      1      A  12-13
('01/11/13', 'D1')
                     home       away  hgoal  agoal result season
date     league                                                 
01/11/13 D1      Dortmund  Stuttgart      6      1      H  13-14
('01/11/13', 'SP1')
                      home     away  hgoal  agoal result season
date     league                                                
01/11/13 SP1     Barcelona  Espanol      1      0      H  13-14
('01/11/13', 'T1')
                        home       away  hgoal  agoal result season
date     league                                                    
01/11/13 T1      Galatasaray  Konyaspor      2      1      H  13-14
('01/11/14', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
01/11/14 D1      Bayern Munich       Dortmund      2      1      H  14-15
         D1            Hamburg     Leverkusen      1      0      H  14-15
         D1           Hannover  Ein Frankfurt      1      0      H  14-15
         D1              Mainz  Werder Bremen      1      2      A  14-15
         D1          Stuttgart      Wolfsburg      0      4      A  14-15
('01/11/14', 'E2')
                               home        away  hgoal  agoal result season
date     league                                                            
01/11/14 E2                Bradford   Doncaster      1      2      A  14-15
         E2            Bristol City      Oldham      1      0      H  14-15
         E2            Chesterfield      Yeovil      0      0      D  14-15
         E2              Colchester   Port Vale      1      2      A  14-15
         E2            Crawley Town       Crewe      1      1      D  14-15
         E2          Fleetwood Town  Gillingham      1      0      H  14-15
         E2           Leyton Orient    Coventry      2      2      D  14-15
         E2      Milton Keynes Dons     Swindon      2      1      H  14-15
         E2            Notts County     Walsall      1      2      A  14-15
         E2               Peterboro  Scunthorpe      1      2      A  14-15
         E2                Rochdale     Preston      3      0      H  14-15
         E2        Sheffield United    Barnsley      0      1      A  14-15
('01/11/14', 'I1')
                   home      away  hgoal  agoal result season
date     league                                              
01/11/14 I1      Empoli  Juventus      0      2      A  14-15
         I1      Napoli      Roma      2      0      H  14-15
         I1       Parma     Inter      2      0      H  14-15
('01/11/14', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
01/11/14 SP1     Ath Madrid      Cordoba      4      2      H  14-15
         SP1      Barcelona        Celta      0      1      A  14-15
         SP1        Granada  Real Madrid      0      4      A  14-15
         SP1       Sociedad       Malaga      0      1      A  14-15
('01/11/14', 'T1')
                                 home         away  hgoal  agoal result season
date     league                                                               
01/11/14 T1      Akhisar Belediyespor  Trabzonspor      1      1      D  14-15
         T1                 Bursaspor    Sivasspor      3      0      H  14-15
         T1            Genclerbirligi   Buyuksehyr      1      0      H  14-15
('01/11/15', 'D1')
                      home       away  hgoal  agoal result season
date     league                                                  
01/11/15 D1        Hamburg   Hannover      1      2      A  15-16
         D1      Stuttgart  Darmstadt      2      0      H  15-16
('01/11/15', 'I1')
                       home       away  hgoal  agoal result season
date     league                                                   
01/11/15 I1         Bologna   Atalanta      3      0      H  15-16
         I1           Carpi     Verona      0      0      D  15-16
         I1      Fiorentina  Frosinone      4      1      H  15-16
         I1           Genoa     Napoli      0      0      D  15-16
         I1           Lazio      Milan      1      3      A  15-16
         I1         Udinese   Sassuolo      0      0      D  15-16
('01/11/15', 'SP1')
                     home        away  hgoal  agoal result season
date     league                                                  
01/11/15 SP1        Betis  Ath Bilbao      1      3      A  15-16
         SP1        Eibar   Vallecano      1      0      H  15-16
         SP1      Espanol     Granada      1      1      D  15-16
         SP1     Sp Gijon      Malaga      1      0      H  15-16
('01/12/12', 'D1')
                           home        away  hgoal  agoal result season
date     league                                                        
01/12/12 D1            Augsburg    Freiburg      1      1      D  12-13
         D1       Bayern Munich    Dortmund      1      1      D  12-13
         D1      Greuther Furth   Stuttgart      0      1      A  12-13
         D1          Leverkusen    Nurnberg      1      0      H  12-13
         D1               Mainz    Hannover      2      1      H  12-13
         D1          Schalke 04  M'gladbach      1      1      D  12-13
('01/12/12', 'I1')
                     home    away  hgoal  agoal result season
date     league                                              
01/12/12 I1      Juventus  Torino      3      0      H  12-13
('01/12/12', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
01/12/12 SP1       Barcelona  Ath Bilbao      5      1      H  12-13
         SP1          Getafe      Malaga      1      0      H  12-13
         SP1     Real Madrid  Ath Madrid      2      0      H  12-13
         SP1        Valencia    Sociedad      2      5      A  12-13
('01/12/12', 'T1')
                                 home        away  hgoal  agoal result season
date     league                                                              
01/12/12 T1      Akhisar Belediyespor   Bursaspor      2      2      D  12-13
         T1               Karabukspor  Elazigspor      0      1      A  12-13
         T1                  Orduspor    Besiktas      1      2      A  12-13
('01/12/13', 'D1')
                       home           away  hgoal  agoal result season
date     league                                                       
01/12/13 D1        Hannover  Ein Frankfurt      2      0      H  13-14
         D1      M'gladbach       Freiburg      1      0      H  13-14
('01/12/13', 'E2')
                   home      away  hgoal  agoal result season
date     league                                              
01/12/13 E2      Oldham  Bradford      1      1      D  13-14
('01/12/13', 'I1')
                     home       away  hgoal  agoal result season
date     league                                                 
01/12/13 I1      Atalanta       Roma      1      1      D  13-14
         I1      Cagliari   Sassuolo      2      2      D  13-14
         I1       Catania      Milan      1      3      A  13-14
         I1        Chievo    Livorno      3      0      H  13-14
         I1         Inter  Sampdoria      1      1      D  13-14
         I1      Juventus    Udinese      1      0      H  13-14
('01/12/13', 'SP1')
                       home       away  hgoal  agoal result season
date     league                                                   
01/12/13 SP1     Ath Bilbao  Barcelona      1      0      H  13-14
         SP1          Betis  Vallecano      2      2      D  13-14
         SP1        Granada    Sevilla      1      2      A  13-14
         SP1       Valencia    Osasuna      3      0      H  13-14
('01/12/13', 'T1')
                          home         away  hgoal  agoal result season
date     league                                                        
01/12/13 T1      Eskisehirspor  Karabukspor      0      0      D  13-14
         T1          Kasimpasa  Galatasaray      1      1      D  13-14
         T1        Trabzonspor  Erciyesspor      3      1      H  13-14
('01/12/14', 'I1')
                      home    away  hgoal  agoal result season
date     league                                               
01/12/14 I1      Sampdoria  Napoli      1      1      D  14-15
('01/12/14', 'SP1')
                    home       away  hgoal  agoal result season
date     league                                                
01/12/14 SP1     Almeria  Vallecano      0      1      A  14-15
('01/12/14', 'T1')
                        home            away  hgoal  agoal result season
date     league                                                         
01/12/14 T1      Karabukspor        Besiktas      1      2      A  14-15
         T1      Trabzonspor  Genclerbirligi      4      1      H  14-15
('01/12/15', 'E2')
                       home      away  hgoal  agoal result season
date     league                                                  
01/12/15 E2          Burton  Millwall      2      1      H  15-16
         E2      Shrewsbury   Walsall      1      3      A  15-16
('02/01/12', 'E2')
                               home              away  hgoal  agoal result  \
date     league                                                              
02/01/12 E2             Bournemouth           Wycombe      2      0      H   
         E2                    Bury           Walsall      2      1      H   
         E2                Carlisle  Sheffield United      3      2      H   
         E2                Charlton         Brentford      2      0      H   
         E2            Chesterfield            Oldham      1      1      D   
         E2                  Exeter            Yeovil      1      1      D   
         E2              Hartlepool        Scunthorpe      1      2      A   
         E2      Milton Keynes Dons        Colchester      1      0      H   
         E2            Notts County      Huddersfield      2      2      D   
         E2                Rochdale           Preston      1      1      D   
         E2          Sheffield Weds          Tranmere      2      1      H   
         E2               Stevenage     Leyton Orient      0      1      A   

                season  
date     league         
02/01/12 E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
('02/01/16', 'E2')
                             home        away  hgoal  agoal result season
date     league                                                          
02/01/16 E2              Barnsley    Millwall      2      1      H  15-16
         E2                Burton   Blackpool      1      0      H  15-16
         E2          Chesterfield  Shrewsbury      7      1      H  15-16
         E2                 Crewe    Coventry      0      5      A  15-16
         E2        Fleetwood Town        Bury      2      0      H  15-16
         E2            Gillingham    Bradford      3      0      H  15-16
         E2                Oldham  Colchester      1      1      D  15-16
         E2            Scunthorpe       Wigan      1      1      D  15-16
         E2      Sheffield United   Peterboro      2      3      A  15-16
         E2              Southend   Doncaster      0      3      A  15-16
         E2               Walsall    Rochdale      0      3      A  15-16
('02/01/16', 'SP1')
                       home       away  hgoal  agoal result season
date     league                                                   
02/01/16 SP1     Ath Madrid    Levante      1      0      H  15-16
         SP1        Espanol  Barcelona      0      0      D  15-16
         SP1         Malaga      Celta      2      0      H  15-16
('02/02/12', 'I1')
                   home    away  hgoal  agoal result season
date     league                                            
02/02/12 I1      Novara  Chievo      1      2      A  11-12
('02/02/12', 'T1')
                       home                away  hgoal  agoal result season
date     league                                                            
02/02/12 T1        Besiktas  Mersin Idman Yurdu      0      1      A  11-12
         T1      Manisaspor       Eskisehirspor      2      3      A  11-12
         T1      Samsunspor          Fenerbahce      3      1      H  11-12
         T1       Sivasspor         Kayserispor      1      1      D  11-12
('02/02/13', 'D1')
                               home            away  hgoal  agoal result  \
date     league                                                            
02/02/13 D1      Fortuna Dusseldorf       Stuttgart      3      1      H   
         D1                 Hamburg   Ein Frankfurt      0      2      A   
         D1              Hoffenheim        Freiburg      2      1      H   
         D1                   Mainz   Bayern Munich      0      3      A   
         D1              Schalke 04  Greuther Furth      1      2      A   
         D1               Wolfsburg        Augsburg      1      1      D   

                season  
date     league         
02/02/13 D1      12-13  
         D1      12-13  
         D1      12-13  
         D1      12-13  
         D1      12-13  
         D1      12-13  
('02/02/13', 'E2')
                               home           away  hgoal  agoal result season
date     league                                                               
02/02/13 E2                    Bury      Doncaster      2      0      H  12-13
         E2            Crawley Town        Swindon      1      1      D  12-13
         E2                   Crewe     Scunthorpe      1      0      H  12-13
         E2              Hartlepool   Notts County      2      1      H  12-13
         E2      Milton Keynes Dons    Bournemouth      0      3      A  12-13
         E2              Portsmouth     Colchester      2      3      A  12-13
         E2                 Preston     Shrewsbury      1      2      A  12-13
         E2               Stevenage  Leyton Orient      0      1      A  12-13
         E2                Tranmere       Carlisle      0      1      A  12-13
         E2                 Walsall         Oldham      3      1      H  12-13
         E2                  Yeovil      Brentford      3      0      H  12-13
('02/02/13', 'I1')
                   home       away  hgoal  agoal result season
date     league                                               
02/02/13 I1      Napoli    Catania      2      0      H  12-13
         I1      Torino  Sampdoria      0      0      D  12-13
('02/02/13', 'SP1')
                    home         away  hgoal  agoal result season
date     league                                                  
02/02/13 SP1     Espanol      Levante      3      2      H  12-13
         SP1      Getafe    La Coruna      3      1      H  12-13
         SP1     Granada  Real Madrid      1      0      H  12-13
         SP1     Osasuna        Celta      1      0      H  12-13
('02/02/13', 'T1')
                        home         away  hgoal  agoal result season
date     league                                                      
02/02/13 T1      Antalyaspor   Buyuksehyr      1      0      H  12-13
         T1        Bursaspor  Galatasaray      1      1      D  12-13
         T1        Kasimpasa   Elazigspor      0      0      D  12-13
('02/02/14', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
02/02/14 D1      Bayern Munich  Ein Frankfurt      5      0      H  13-14
         D1             Hertha       Nurnberg      1      3      A  13-14
('02/02/14', 'I1')
                     home     away  hgoal  agoal result season
date     league                                               
02/02/14 I1      Atalanta   Napoli      3      0      H  13-14
         I1       Catania  Livorno      3      3      D  13-14
         I1        Chievo    Lazio      0      2      A  13-14
         I1      Juventus    Inter      3      1      H  13-14
         I1      Sassuolo   Verona      1      2      A  13-14
('02/02/14', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
02/02/14 SP1     Ath Bilbao  Real Madrid      1      1      D  13-14
         SP1     Ath Madrid     Sociedad      4      0      H  13-14
         SP1          Betis      Espanol      2      0      H  13-14
         SP1          Elche      Almeria      1      0      H  13-14
('02/02/14', 'T1')
                                 home            away  hgoal  agoal result  \
date     league                                                              
02/02/14 T1      Akhisar Belediyespor  Genclerbirligi      3      1      H   
         T1               Galatasaray       Bursaspor      6      0      H   
         T1               Karabukspor      Elazigspor      3      1      H   
         T1                 Konyaspor       Sivasspor      3      0      H   

                season  
date     league         
02/02/14 T1      13-14  
         T1      13-14  
         T1      13-14  
         T1      13-14  
('02/02/15', 'SP1')
                   home      away  hgoal  agoal result season
date     league                                              
02/02/15 SP1     Malaga  Valencia      1      0      H  14-15
('02/02/16', 'E2')
                       home      away  hgoal  agoal result season
date     league                                                  
02/02/16 E2       Doncaster   Walsall      1      2      A  15-16
         E2       Port Vale   Swindon      1      0      H  15-16
         E2      Shrewsbury  Southend      1      2      A  15-16
('02/02/16', 'I1')
                     home  away  hgoal  agoal result season
date     league                                            
02/02/16 I1      Sassuolo  Roma      0      2      A  15-16
('02/03/13', 'D1')
                          home            away  hgoal  agoal result season
date     league                                                           
02/03/13 D1           Dortmund        Hannover      3      1      H  12-13
         D1            Hamburg  Greuther Furth      1      1      D  12-13
         D1         Leverkusen       Stuttgart      2      1      H  12-13
         D1           Nurnberg        Freiburg      1      1      D  12-13
         D1      Werder Bremen        Augsburg      0      1      A  12-13
         D1          Wolfsburg      Schalke 04      1      4      A  12-13
('02/03/13', 'E2')
                               home              away  hgoal  agoal result  \
date     league                                                              
02/03/13 E2               Brentford        Scunthorpe      1      0      H   
         E2                    Bury      Crawley Town      0      2      A   
         E2                Coventry           Swindon      1      2      A   
         E2                   Crewe        Portsmouth      1      2      A   
         E2               Doncaster        Hartlepool      3      0      H   
         E2           Leyton Orient       Bournemouth      3      1      H   
         E2      Milton Keynes Dons           Preston      1      1      D   
         E2            Notts County          Carlisle      1      0      H   
         E2                  Oldham  Sheffield United      0      2      A   
         E2               Stevenage        Colchester      0      2      A   
         E2                 Walsall        Shrewsbury      3      1      H   
         E2                  Yeovil          Tranmere      1      0      H   

                season  
date     league         
02/03/13 E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
('02/03/13', 'I1')
                  home   away  hgoal  agoal result season
date     league                                          
02/03/13 I1      Milan  Lazio      3      0      H  12-13
('02/03/13', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
02/03/13 SP1       La Coruna   Vallecano      0      0      D  12-13
         SP1         Osasuna  Ath Bilbao      0      1      A  12-13
         SP1     Real Madrid   Barcelona      2      1      H  12-13
         SP1        Valencia     Levante      2      2      D  12-13
('02/03/13', 'T1')
                                 home         away  hgoal  agoal result season
date     league                                                               
02/03/13 T1      Akhisar Belediyespor   Elazigspor      0      1      A  12-13
         T1             Eskisehirspor  Galatasaray      0      0      D  12-13
         T1                  Orduspor  Karabukspor      3      2      H  12-13
('02/03/14', 'D1')
                          home       away  hgoal  agoal result season
date     league                                                      
02/03/14 D1      Ein Frankfurt  Stuttgart      2      1      H  13-14
         D1         Hoffenheim  Wolfsburg      6      2      H  13-14
('02/03/14', 'E2')
                     home        away  hgoal  agoal result season
date     league                                                  
02/03/14 E2      Coventry  Shrewsbury      0      0      D  13-14
('02/03/14', 'I1')
                       home       away  hgoal  agoal result season
date     league                                                   
02/03/14 I1        Atalanta     Chievo      2      1      H  13-14
         I1        Cagliari    Udinese      3      0      H  13-14
         I1      Fiorentina      Lazio      0      1      A  13-14
         I1           Genoa    Catania      2      0      H  13-14
         I1         Livorno     Napoli      1      1      D  13-14
         I1           Milan   Juventus      0      2      A  13-14
         I1        Sassuolo      Parma      0      1      A  13-14
         I1          Torino  Sampdoria      0      2      A  13-14
         I1          Verona    Bologna      0      0      D  13-14
('02/03/14', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
02/03/14 SP1     Ath Madrid  Real Madrid      2      2      D  13-14
         SP1      Barcelona      Almeria      4      1      H  13-14
         SP1        Sevilla     Sociedad      1      0      H  13-14
         SP1      Vallecano     Valencia      1      0      H  13-14
         SP1     Villarreal        Betis      1      1      D  13-14
('02/03/14', 'T1')
                        home         away  hgoal  agoal result season
date     league                                                      
02/03/14 T1      Kayserispor  Erciyesspor      0      4      A  13-14
         T1        Konyaspor  Trabzonspor      0      0      D  13-14
         T1         Rizespor  Galatasaray      1      1      D  13-14
         T1        Sivasspor   Elazigspor      1      3      A  13-14
('02/03/15', 'I1')
                 home      away  hgoal  agoal result season
date     league                                            
02/03/15 I1      Roma  Juventus      1      1      D  14-15
('02/03/15', 'SP1')
                  home   away  hgoal  agoal result season
date     league                                          
02/03/15 SP1     Celta  Elche      1      1      D  14-15
('02/03/15', 'T1')
                        home         away  hgoal  agoal result season
date     league                                                      
02/03/15 T1      Trabzonspor  Karabukspor      3      2      H  14-15
('02/03/16', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
02/03/16 D1      Bayern Munich          Mainz      1      2      A  15-16
         D1          Darmstadt       Dortmund      0      2      A  15-16
         D1             Hertha  Ein Frankfurt      2      0      H  15-16
         D1         Hoffenheim       Augsburg      2      1      H  15-16
         D1         Leverkusen  Werder Bremen      1      4      A  15-16
         D1         M'gladbach      Stuttgart      4      0      H  15-16
         D1         Schalke 04        Hamburg      3      2      H  15-16
('02/03/16', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
02/03/16 SP1     Ath Bilbao    La Coruna      4      1      H  15-16
         SP1          Celta   Villarreal      0      0      D  15-16
         SP1        Levante  Real Madrid      1      3      A  15-16
         SP1         Malaga     Valencia      1      2      A  15-16
         SP1        Sevilla        Eibar      1      0      H  15-16
('02/04/12', 'SP1')
                    home      away  hgoal  agoal result season
date     league                                               
02/04/12 SP1     Sevilla  Mallorca      3      1      H  11-12
('02/04/14', 'E2')
                      home        away  hgoal  agoal result season
date     league                                                   
02/04/14 E2      Peterboro  Colchester      2      0      H  13-14
('02/04/16', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
02/04/16 D1      Bayern Munich  Ein Frankfurt      1      0      H  15-16
         D1          Darmstadt      Stuttgart      2      2      D  15-16
         D1           Dortmund  Werder Bremen      3      2      H  15-16
         D1           Hannover        Hamburg      0      3      A  15-16
         D1         Ingolstadt     Schalke 04      3      0      H  15-16
         D1              Mainz       Augsburg      4      2      H  15-16
('02/04/16', 'E2')
                             home            away  hgoal  agoal result season
date     league                                                              
02/04/16 E2             Blackpool        Southend      2      0      H  15-16
         E2              Bradford      Scunthorpe      1      0      H  15-16
         E2                Burton            Bury      1      1      D  15-16
         E2          Chesterfield       Port Vale      4      2      H  15-16
         E2            Colchester        Millwall      0      0      D  15-16
         E2            Gillingham        Coventry      0      0      D  15-16
         E2             Peterboro           Crewe      3      0      H  15-16
         E2              Rochdale       Doncaster      2      2      D  15-16
         E2      Sheffield United         Walsall      2      0      H  15-16
         E2            Shrewsbury           Wigan      1      5      A  15-16
         E2               Swindon  Fleetwood Town      1      1      D  15-16
('02/04/16', 'I1')
                     home      away  hgoal  agoal result season
date     league                                                
02/04/16 I1         Carpi  Sassuolo      1      3      A  15-16
         I1      Juventus    Empoli      1      0      H  15-16
('02/04/16', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
02/04/16 SP1     Ath Madrid        Betis      5      1      H  15-16
         SP1      Barcelona  Real Madrid      1      2      A  15-16
         SP1          Celta    La Coruna      1      1      D  15-16
         SP1     Las Palmas     Valencia      2      1      H  15-16
('02/04/16', 'T1')
                           home         away  hgoal  agoal result season
date     league                                                         
02/04/16 T1       Eskisehirspor  Galatasaray      4      3      H  15-16
         T1       Gaziantepspor  Trabzonspor      0      1      A  15-16
         T1      Genclerbirligi    Konyaspor      0      1      A  15-16
('02/05/12', 'I1')
                       home      away  hgoal  agoal result season
date     league                                                  
02/05/12 I1         Catania   Bologna      0      1      A  11-12
         I1          Cesena   Udinese      0      1      A  11-12
         I1      Fiorentina    Novara      2      2      D  11-12
         I1           Genoa  Cagliari      2      1      H  11-12
         I1        Juventus     Lecce      1      1      D  11-12
         I1           Lazio     Siena      1      1      D  11-12
         I1           Milan  Atalanta      2      0      H  11-12
         I1           Parma     Inter      3      1      H  11-12
('02/05/12', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
02/05/12 SP1     Ath Bilbao  Real Madrid      0      3      A  11-12
         SP1     Ath Madrid     Sociedad      1      1      D  11-12
         SP1      Barcelona       Malaga      4      1      H  11-12
         SP1       Mallorca    Vallecano      1      0      H  11-12
         SP1        Sevilla        Betis      1      2      A  11-12
         SP1       Valencia      Osasuna      4      0      H  11-12
         SP1       Zaragoza      Levante      1      0      H  11-12
('02/05/14', 'SP1')
                      home        away  hgoal  agoal result season
date     league                                                   
02/05/14 SP1     Vallecano  Ath Bilbao      0      3      A  13-14
('02/05/15', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
02/05/15 D1           Augsburg        FC Koln      0      0      D  14-15
         D1           Freiburg      Paderborn      1      2      A  14-15
         D1         Hoffenheim       Dortmund      1      1      D  14-15
         D1         Leverkusen  Bayern Munich      2      0      H  14-15
         D1         Schalke 04      Stuttgart      3      2      H  14-15
         D1      Werder Bremen  Ein Frankfurt      1      0      H  14-15
         D1          Wolfsburg       Hannover      2      2      D  14-15
('02/05/15', 'I1')
                      home      away  hgoal  agoal result season
date     league                                                 
02/05/15 I1      Sampdoria  Juventus      0      1      A  14-15
         I1       Sassuolo   Palermo      0      0      D  14-15
('02/05/15', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
02/05/15 SP1     Ath Madrid   Ath Bilbao      0      0      D  14-15
         SP1        Cordoba    Barcelona      0      8      A  14-15
         SP1      La Coruna   Villarreal      1      1      D  14-15
         SP1        Sevilla  Real Madrid      2      3      A  14-15
('02/05/15', 'T1')
                               home           away  hgoal  agoal result season
date     league                                                               
02/05/15 T1              Buyuksehyr  Eskisehirspor      1      1      D  14-15
         T1              Fenerbahce  Balikesirspor      4      3      H  14-15
         T1             Karabukspor       Rizespor      2      0      H  14-15
         T1      Mersin Idman Yurdu      Konyaspor      3      1      H  14-15
('02/05/16', 'D1')
                          home       away  hgoal  agoal result season
date     league                                                      
02/05/16 D1      Werder Bremen  Stuttgart      6      2      H  15-16
('02/05/16', 'E2')
                    home            away  hgoal  agoal result season
date     league                                                     
02/05/16 E2      Walsall  Fleetwood Town      3      1      H  15-16
('02/05/16', 'I1')
                   home      away  hgoal  agoal result season
date     league                                              
02/05/16 I1       Genoa      Roma      2      3      A  15-16
         I1      Napoli  Atalanta      2      1      H  15-16
('02/05/16', 'SP1')
                   home     away  hgoal  agoal result season
date     league                                             
02/05/16 SP1     Malaga  Levante      3      1      H  15-16
('02/05/16', 'T1')
                      home         away  hgoal  agoal result season
date     league                                                    
02/05/16 T1      Kasimpasa  Osmanlispor      1      1      D  15-16
('02/08/13', 'E2')
                             home          away  hgoal  agoal result season
date     league                                                            
02/08/13 E2      Sheffield United  Notts County      2      1      H  13-14
('02/09/12', 'D1')
                          home       away  hgoal  agoal result season
date     league                                                      
02/09/12 D1      Bayern Munich  Stuttgart      6      1      H  12-13
         D1          Wolfsburg   Hannover      0      4      A  12-13
('02/09/12', 'E2')
                    home     away  hgoal  agoal result season
date     league                                              
02/09/12 E2      Preston  Swindon      4      1      H  12-13
('02/09/12', 'I1')
                      home        away  hgoal  agoal result season
date     league                                                   
02/09/12 I1       Cagliari    Atalanta      1      1      D  12-13
         I1        Catania       Genoa      3      2      H  12-13
         I1          Inter        Roma      1      3      A  12-13
         I1          Lazio     Palermo      3      0      H  12-13
         I1         Napoli  Fiorentina      2      1      H  12-13
         I1          Parma      Chievo      2      0      H  12-13
         I1      Sampdoria       Siena      2      1      H  12-13
         I1        Udinese    Juventus      1      4      A  12-13
('02/09/12', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
02/09/12 SP1      Ath Bilbao  Valladolid      2      0      H  12-13
         SP1       Barcelona    Valencia      1      0      H  12-13
         SP1         Levante     Espanol      3      2      H  12-13
         SP1     Real Madrid     Granada      3      0      H  12-13
         SP1       Vallecano     Sevilla      0      0      D  12-13
('02/09/12', 'T1')
                          home         away  hgoal  agoal result season
date     league                                                        
02/09/12 T1        Galatasaray    Bursaspor      3      2      H  12-13
         T1      Gaziantepspor  Trabzonspor      1      0      H  12-13
         T1          Sivasspor   Fenerbahce      0      0      D  12-13
('02/10/11', 'D1')
                     home           away  hgoal  agoal result season
date     league                                                     
02/10/11 D1       Hamburg     Schalke 04      1      2      A  11-12
         D1      Hannover  Werder Bremen      3      2      H  11-12
('02/10/11', 'I1')
                       home      away  hgoal  agoal result season
date     league                                                  
02/10/11 I1          Cesena    Chievo      0      0      D  11-12
         I1      Fiorentina     Lazio      1      2      A  11-12
         I1        Juventus     Milan      2      0      H  11-12
         I1           Lecce  Cagliari      0      2      A  11-12
         I1          Novara   Catania      3      3      D  11-12
         I1         Palermo     Siena      2      0      H  11-12
         I1           Parma     Genoa      3      1      H  11-12
         I1         Udinese   Bologna      2      0      H  11-12
('02/10/11', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
02/10/11 SP1     Ath Madrid      Sevilla      0      0      D  11-12
         SP1          Betis      Levante      0      1      A  11-12
         SP1        Espanol  Real Madrid      0      4      A  11-12
         SP1       Sociedad   Ath Bilbao      1      2      A  11-12
         SP1       Sp Gijon    Barcelona      0      1      A  11-12
('02/10/11', 'T1')
                          home                away  hgoal  agoal result season
date     league                                                               
02/10/11 T1         Ankaragucu         Galatasaray      0      3      A  11-12
         T1      Eskisehirspor         Trabzonspor      0      2      A  11-12
         T1        Kayserispor  Mersin Idman Yurdu      2      2      D  11-12
         T1         Samsunspor          Manisaspor      1      2      A  11-12
('02/10/12', 'E2')
                         home                away  hgoal  agoal result season
date     league                                                              
02/10/12 E2         Brentford          Shrewsbury      0      0      D  12-13
         E2          Coventry  Milton Keynes Dons      1      1      D  12-13
         E2      Crawley Town         Bournemouth      3      1      H  12-13
         E2             Crewe              Oldham      0      2      A  12-13
         E2         Doncaster             Preston      1      3      A  12-13
         E2        Hartlepool    Sheffield United      1      2      A  12-13
         E2      Notts County           Stevenage      1      2      A  12-13
         E2        Scunthorpe            Tranmere      1      3      A  12-13
         E2           Swindon          Colchester      0      1      A  12-13
         E2           Walsall       Leyton Orient      1      2      A  12-13
         E2            Yeovil          Portsmouth      1      2      A  12-13
('02/10/15', 'D1')
                      home   away  hgoal  agoal result season
date     league                                              
02/10/15 D1      Darmstadt  Mainz      2      3      A  15-16
('02/10/15', 'SP1')
                  home    away  hgoal  agoal result season
date     league                                           
02/10/15 SP1     Celta  Getafe      0      0      D  15-16
('02/10/15', 'T1')
                        home                away  hgoal  agoal result season
date     league                                                             
02/10/15 T1        Sivasspor  Mersin Idman Yurdu      2      2      D  15-16
         T1      Trabzonspor           Konyaspor      1      2      A  15-16
('02/11/12', 'D1')
                          home            away  hgoal  agoal result season
date     league                                                           
02/11/12 D1      Ein Frankfurt  Greuther Furth      1      1      D  12-13
('02/11/12', 'T1')
                       home         away  hgoal  agoal result season
date     league                                                     
02/11/12 T1      Buyuksehyr  Galatasaray      1      3      A  12-13
('02/11/13', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
02/11/13 D1       Braunschweig     Leverkusen      1      0      H  13-14
         D1      Ein Frankfurt      Wolfsburg      1      2      A  13-14
         D1            Hamburg     M'gladbach      0      2      A  13-14
         D1             Hertha     Schalke 04      0      2      A  13-14
         D1         Hoffenheim  Bayern Munich      1      2      A  13-14
         D1           Nurnberg       Freiburg      0      3      A  13-14
('02/11/13', 'E2')
                               home              away  hgoal  agoal result  \
date     league                                                              
02/11/13 E2            Bristol City            Oldham      1      1      D   
         E2                Coventry      Notts County      3      0      H   
         E2            Crawley Town         Brentford      0      1      A   
         E2                   Crewe          Bradford      0      0      D   
         E2              Gillingham          Carlisle      1      0      H   
         E2      Milton Keynes Dons           Walsall      1      0      H   
         E2               Peterboro     Leyton Orient      1      3      A   
         E2                 Preston          Tranmere      1      1      D   
         E2               Rotherham        Colchester      2      2      D   
         E2              Shrewsbury  Sheffield United      2      0      H   
         E2                 Swindon         Port Vale      5      2      H   
         E2                  Wolves         Stevenage      2      0      H   

                season  
date     league         
02/11/13 E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
('02/11/13', 'I1')
                   home        away  hgoal  agoal result season
date     league                                                
02/11/13 I1       Milan  Fiorentina      0      2      A  13-14
         I1      Napoli     Catania      2      1      H  13-14
         I1       Parma    Juventus      0      1      A  13-14
('02/11/13', 'SP1')
                      home         away  hgoal  agoal result season
date     league                                                    
02/11/13 SP1       Almeria   Valladolid      1      0      H  13-14
         SP1       Sevilla        Celta      0      1      A  13-14
         SP1      Sociedad      Osasuna      5      0      H  13-14
         SP1     Vallecano  Real Madrid      2      3      A  13-14
('02/11/13', 'T1')
                        home        away  hgoal  agoal result season
date     league                                                     
02/11/13 T1        Bursaspor  Fenerbahce      2      3      A  13-14
         T1      Erciyesspor   Kasimpasa      0      3      A  13-14
('02/11/14', 'D1')
                       home        away  hgoal  agoal result season
date     league                                                    
02/11/14 D1         FC Koln    Freiburg      0      1      A  14-15
         D1      M'gladbach  Hoffenheim      3      1      H  14-15
         D1       Paderborn      Hertha      3      1      H  14-15
('02/11/14', 'I1')
                      home        away  hgoal  agoal result season
date     league                                                   
02/11/14 I1         Chievo    Sassuolo      0      0      D  14-15
         I1          Milan     Palermo      0      2      A  14-15
         I1      Sampdoria  Fiorentina      3      1      H  14-15
         I1         Torino    Atalanta      0      0      D  14-15
         I1        Udinese       Genoa      2      4      A  14-15
('02/11/14', 'SP1')
                       home      away  hgoal  agoal result season
date     league                                                  
02/11/14 SP1     Ath Bilbao   Sevilla      1      0      H  14-15
         SP1          Elche   Espanol      2      1      H  14-15
         SP1        Levante   Almeria      2      1      H  14-15
         SP1     Villarreal  Valencia      1      3      A  14-15
('02/11/14', 'T1')
                          home                away  hgoal  agoal result season
date     league                                                               
02/11/14 T1           Besiktas          Fenerbahce      0      2      A  14-15
         T1      Gaziantepspor  Mersin Idman Yurdu      1      0      H  14-15
         T1           Rizespor         Erciyesspor      1      1      D  14-15
('02/11/15', 'I1')
                    home       away  hgoal  agoal result season
date     league                                                
02/11/15 I1       Chievo  Sampdoria      1      1      D  15-16
         I1      Palermo     Empoli      0      1      A  15-16
('02/12/11', 'D1')
                       home        away  hgoal  agoal result season
date     league                                                    
02/12/11 D1      Leverkusen  Hoffenheim      2      0      H  11-12
('02/12/11', 'I1')
                  home   away  hgoal  agoal result season
date     league                                          
02/12/11 I1      Genoa  Milan      0      2      A  11-12
('02/12/11', 'T1')
                      home         away  hgoal  agoal result season
date     league                                                    
02/12/11 T1      Sivasspor  Trabzonspor      2      2      D  11-12
('02/12/12', 'D1')
                       home           away  hgoal  agoal result season
date     league                                                       
02/12/12 D1      Hoffenheim  Werder Bremen      1      4      A  12-13
         D1       Wolfsburg        Hamburg      1      1      D  12-13
('02/12/12', 'I1')
                       home       away  hgoal  agoal result season
date     league                                                   
02/12/12 I1         Bologna   Atalanta      2      1      H  12-13
         I1      Fiorentina  Sampdoria      2      2      D  12-13
         I1           Genoa     Chievo      2      4      A  12-13
         I1           Inter    Palermo      1      0      H  12-13
         I1           Lazio      Parma      2      1      H  12-13
         I1          Napoli    Pescara      5      1      H  12-13
         I1           Siena       Roma      1      3      A  12-13
         I1         Udinese   Cagliari      4      1      H  12-13
('02/12/12', 'SP1')
                      home      away  hgoal  agoal result season
date     league                                                 
02/12/12 SP1         Celta   Levante      1      1      D  12-13
         SP1       Granada   Espanol      0      0      D  12-13
         SP1     La Coruna     Betis      2      3      A  12-13
         SP1      Mallorca  Zaragoza      1      1      D  12-13
('02/12/12', 'T1')
                          home                away  hgoal  agoal result season
date     league                                                               
02/12/12 T1        Antalyaspor  Mersin Idman Yurdu      1      0      H  12-13
         T1         Buyuksehyr           Sivasspor      2      0      H  12-13
         T1      Eskisehirspor           Kasimpasa      2      2      D  12-13
         T1        Kayserispor          Fenerbahce      1      1      D  12-13
('02/12/13', 'I1')
                       home    away  hgoal  agoal result season
date     league                                                
02/12/13 I1      Fiorentina  Verona      4      3      H  13-14
         I1           Lazio  Napoli      2      4      A  13-14
('02/12/13', 'T1')
                      home      away  hgoal  agoal result season
date     league                                                 
02/12/13 T1      Konyaspor  Rizespor      2      1      H  13-14
('02/12/14', 'E2')
                             home                away  hgoal  agoal result  \
date     league                                                              
02/12/14 E2              Barnsley           Doncaster      1      1      D   
         E2      Sheffield United  Milton Keynes Dons      0      1      A   

                season  
date     league         
02/12/14 E2      14-15  
         E2      14-15  
('03/01/12', 'T1')
                               home         away  hgoal  agoal result season
date     league                                                             
03/01/12 T1             Galatasaray   Buyuksehyr      4      1      H  11-12
         T1             Kayserispor    Bursaspor      0      2      A  11-12
         T1      Mersin Idman Yurdu   Ankaragucu      1      2      A  11-12
         T1               Sivasspor  Karabukspor      3      0      H  11-12
         T1             Trabzonspor   Manisaspor      2      1      H  11-12
('03/01/14', 'E2')
                       home    away  hgoal  agoal result season
date     league                                                
03/01/14 E2      Gillingham  Wolves      1      0      H  13-14
('03/01/15', 'E2')
                           home        away  hgoal  agoal result season
date     league                                                        
03/01/15 E2      Fleetwood Town     Swindon      2      2      D  14-15
         E2           Port Vale  Gillingham      2      1      H  14-15
         E2             Walsall    Coventry      0      2      A  14-15
('03/01/15', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
03/01/15 SP1     Ath Madrid     Levante      3      1      H  14-15
         SP1          Elche  Villarreal      2      2      D  14-15
         SP1      La Coruna  Ath Bilbao      1      0      H  14-15
         SP1         Malaga     Almeria      1      2      A  14-15
         SP1        Sevilla       Celta      1      0      H  14-15
('03/01/15', 'T1')
                       home                  away  hgoal  agoal result season
date     league                                                              
03/01/15 T1       Bursaspor  Akhisar Belediyespor      3      1      H  14-15
         T1      Fenerbahce            Buyuksehyr      2      0      H  14-15
         T1        Rizespor             Konyaspor      1      1      D  14-15
('03/01/16', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
03/01/16 SP1     Ath Bilbao   Las Palmas      2      2      D  15-16
         SP1          Betis        Eibar      0      4      A  15-16
         SP1        Granada      Sevilla      2      1      H  15-16
         SP1      La Coruna   Villarreal      1      2      A  15-16
         SP1       Valencia  Real Madrid      2      2      D  15-16
         SP1      Vallecano     Sociedad      2      2      D  15-16
('03/02/12', 'D1')
                     home      away  hgoal  agoal result season
date     league                                                
03/02/12 D1      Nurnberg  Dortmund      0      2      A  11-12
('03/02/13', 'D1')
                       home        away  hgoal  agoal result season
date     league                                                    
03/02/13 D1      Leverkusen    Dortmund      2      3      A  12-13
         D1        Nurnberg  M'gladbach      2      1      H  12-13
('03/02/13', 'I1')
                       home      away  hgoal  agoal result season
date     league                                                  
03/02/13 I1          Chievo  Juventus      1      2      A  12-13
         I1      Fiorentina     Parma      2      0      H  12-13
         I1           Genoa     Lazio      3      2      H  12-13
         I1           Milan   Udinese      2      1      H  12-13
         I1         Palermo  Atalanta      1      2      A  12-13
         I1         Pescara   Bologna      2      3      A  12-13
         I1           Siena     Inter      3      1      H  12-13
('03/02/13', 'SP1')
                       home       away  hgoal  agoal result season
date     league                                                   
03/02/13 SP1     Ath Madrid      Betis      1      0      H  12-13
         SP1         Malaga   Zaragoza      1      1      D  12-13
         SP1        Sevilla  Vallecano      2      1      H  12-13
         SP1       Sociedad   Mallorca      3      0      H  12-13
         SP1       Valencia  Barcelona      1      1      D  12-13
('03/02/13', 'T1')
                          home                away  hgoal  agoal result season
date     league                                                               
03/02/13 T1      Eskisehirspor  Mersin Idman Yurdu      0      0      D  12-13
         T1         Fenerbahce           Sivasspor      1      2      A  12-13
         T1           Orduspor      Genclerbirligi      2      1      H  12-13
         T1        Trabzonspor       Gaziantepspor      4      1      H  12-13
('03/02/14', 'I1')
                  home       away  hgoal  agoal result season
date     league                                              
03/02/14 I1      Genoa  Sampdoria      0      1      A  13-14
('03/02/14', 'SP1')
                       home     away  hgoal  agoal result season
date     league                                                 
03/02/14 SP1     Villarreal  Osasuna      3      1      H  13-14
('03/02/14', 'T1')
                     home         away  hgoal  agoal result season
date     league                                                   
03/02/14 T1      Rizespor  Trabzonspor      0      0      D  13-14
('03/02/15', 'D1')
                          home        away  hgoal  agoal result season
date     league                                                       
03/02/15 D1      Bayern Munich  Schalke 04      1      1      D  14-15
         D1      Ein Frankfurt   Wolfsburg      1      1      D  14-15
         D1           Hannover       Mainz      1      1      D  14-15
         D1         M'gladbach    Freiburg      1      0      H  14-15
('03/02/15', 'E2')
                     home    away  hgoal  agoal result season
date     league                                              
03/02/15 E2      Barnsley  Oldham      1      0      H  14-15
('03/02/16', 'I1')
                       home      away  hgoal  agoal result season
date     league                                                  
03/02/16 I1          Empoli   Udinese      1      1      D  15-16
         I1      Fiorentina     Carpi      2      1      H  15-16
         I1       Frosinone   Bologna      1      0      H  15-16
         I1           Inter    Chievo      1      0      H  15-16
         I1        Juventus     Genoa      1      0      H  15-16
         I1           Lazio    Napoli      0      2      A  15-16
         I1         Palermo     Milan      0      2      A  15-16
         I1       Sampdoria    Torino      2      2      D  15-16
         I1          Verona  Atalanta      2      1      H  15-16
('03/03/12', 'D1')
                           home           away  hgoal  agoal result season
date     league                                                           
03/03/12 D1            Dortmund          Mainz      2      1      H  11-12
         D1            Freiburg     Schalke 04      2      1      H  11-12
         D1             Hamburg      Stuttgart      0      4      A  11-12
         D1            Hannover       Augsburg      2      2      D  11-12
         D1              Hertha  Werder Bremen      1      0      H  11-12
         D1      Kaiserslautern      Wolfsburg      0      0      D  11-12
         D1          Leverkusen  Bayern Munich      2      0      H  11-12
('03/03/12', 'E2')
                             home                away  hgoal  agoal result  \
date     league                                                              
03/03/12 E2           Bournemouth            Charlton      0      1      A   
         E2                  Bury        Huddersfield      3      3      D   
         E2          Chesterfield            Tranmere      1      0      H   
         E2            Colchester             Preston      3      0      H   
         E2                Exeter           Stevenage      1      1      D   
         E2            Hartlepool  Milton Keynes Dons      1      1      D   
         E2         Leyton Orient             Walsall      1      1      D   
         E2          Notts County            Carlisle      2      0      H   
         E2              Rochdale      Sheffield Weds      0      0      D   
         E2            Scunthorpe             Wycombe      4      1      H   
         E2      Sheffield United              Oldham      2      3      A   
         E2                Yeovil           Brentford      2      1      H   

                season  
date     league         
03/03/12 E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
('03/03/12', 'I1')
                     home    away  hgoal  agoal result season
date     league                                              
03/03/12 I1      Juventus  Chievo      1      1      D  11-12
         I1       Palermo   Milan      0      4      A  11-12
('03/03/12', 'SP1')
                      home        away  hgoal  agoal result season
date     league                                                   
03/03/12 SP1     Barcelona    Sp Gijon      3      1      H  11-12
         SP1        Getafe      Malaga      1      3      A  11-12
         SP1      Mallorca     Osasuna      1      1      D  11-12
         SP1       Sevilla  Ath Madrid      1      1      D  11-12
         SP1     Vallecano   Santander      4      2      H  11-12
('03/03/12', 'T1')
                               home            away  hgoal  agoal result  \
date     league                                                            
03/03/12 T1              Ankaragucu   Eskisehirspor      2      5      A   
         T1             Antalyaspor      Samsunspor      0      2      A   
         T1              Fenerbahce  Genclerbirligi      6      1      H   
         T1      Mersin Idman Yurdu        Orduspor      1      0      H   

                season  
date     league         
03/03/12 T1      11-12  
         T1      11-12  
         T1      11-12  
         T1      11-12  
('03/03/13', 'D1')
                               home           away  hgoal  agoal result season
date     league                                                               
03/03/13 D1      Fortuna Dusseldorf          Mainz      1      1      D  12-13
         D1              Hoffenheim  Bayern Munich      0      1      A  12-13
('03/03/13', 'I1')
                       home      away  hgoal  agoal result season
date     league                                                  
03/03/13 I1         Bologna  Cagliari      3      0      H  12-13
         I1         Catania     Inter      2      3      A  12-13
         I1      Fiorentina    Chievo      2      1      H  12-13
         I1         Pescara   Udinese      0      1      A  12-13
         I1            Roma     Genoa      3      1      H  12-13
         I1       Sampdoria     Parma      1      0      H  12-13
         I1           Siena  Atalanta      0      2      A  12-13
         I1          Torino   Palermo      0      0      D  12-13
('03/03/13', 'SP1')
                     home        away  hgoal  agoal result season
date     league                                                  
03/03/13 SP1      Espanol  Valladolid      0      0      D  12-13
         SP1      Granada    Mallorca      1      2      A  12-13
         SP1       Malaga  Ath Madrid      0      0      D  12-13
         SP1     Sociedad       Betis      3      3      D  12-13
('03/03/13', 'T1')
                        home                away  hgoal  agoal result season
date     league                                                             
03/03/13 T1      Antalyaspor       Gaziantepspor      5      2      H  12-13
         T1         Besiktas          Fenerbahce      3      2      H  12-13
         T1        Bursaspor           Sivasspor      1      0      H  12-13
         T1      Kayserispor  Mersin Idman Yurdu      2      1      H  12-13
('03/03/15', 'E2')
                               home          away  hgoal  agoal result season
date     league                                                              
03/03/15 E2                Barnsley      Coventry      1      0      H  14-15
         E2                Bradford  Crawley Town      1      0      H  14-15
         E2              Colchester  Notts County      0      1      A  14-15
         E2          Fleetwood Town    Scunthorpe      2      2      D  14-15
         E2           Leyton Orient  Bristol City      1      3      A  14-15
         E2      Milton Keynes Dons  Chesterfield      1      2      A  14-15
         E2               Port Vale        Oldham      0      1      A  14-15
         E2                 Preston     Doncaster      2      2      D  14-15
         E2                Rochdale         Crewe      4      0      H  14-15
         E2        Sheffield United     Peterboro      1      2      A  14-15
         E2                 Swindon    Gillingham      0      3      A  14-15
         E2                  Yeovil       Walsall      0      1      A  14-15
('03/03/16', 'SP1')
                      home       away  hgoal  agoal result season
date     league                                                  
03/03/16 SP1       Espanol      Betis      0      3      A  15-16
         SP1       Granada   Sp Gijon      2      0      H  15-16
         SP1     Vallecano  Barcelona      1      5      A  15-16
('03/04/12', 'E2')
                          home          away  hgoal  agoal result season
date     league                                                         
03/04/12 E2          Brentford        Oldham      2      0      H  11-12
         E2      Leyton Orient  Huddersfield      1      3      A  11-12
('03/04/13', 'I1')
                      home   away  hgoal  agoal result season
date     league                                              
03/04/13 I1      Sampdoria  Inter      0      2      A  12-13
('03/04/15', 'E2')
                       home            away  hgoal  agoal result season
date     league                                                        
03/04/15 E2           Crewe    Crawley Town      0      0      D  14-15
         E2       Doncaster        Bradford      0      3      A  14-15
         E2      Gillingham  Fleetwood Town      0      1      A  14-15
         E2          Oldham    Bristol City      1      1      D  14-15
         E2       Port Vale      Colchester      1      2      A  14-15
         E2         Preston        Rochdale      1      0      H  14-15
         E2      Scunthorpe       Peterboro      2      0      H  14-15
         E2         Walsall    Notts County      0      0      D  14-15
         E2          Yeovil    Chesterfield      2      3      A  14-15
('03/04/15', 'SP1')
                  home       away  hgoal  agoal result season
date     league                                              
03/04/15 SP1     Eibar  Vallecano      1      2      A  14-15
('03/04/16', 'D1')
                       home     away  hgoal  agoal result season
date     league                                                 
03/04/16 D1      Hoffenheim  FC Koln      1      1      D  15-16
         D1      M'gladbach   Hertha      5      0      H  15-16
('03/04/16', 'I1')
                       home       away  hgoal  agoal result season
date     league                                                   
03/04/16 I1        Atalanta      Milan      2      1      H  15-16
         I1          Chievo    Palermo      3      1      H  15-16
         I1      Fiorentina  Sampdoria      1      1      D  15-16
         I1           Genoa  Frosinone      4      0      H  15-16
('03/04/16', 'SP1')
                       home     away  hgoal  agoal result season
date     league                                                 
03/04/16 SP1     Ath Bilbao  Granada      1      1      D  15-16
('03/04/16', 'T1')
                        home                  away  hgoal  agoal result season
date     league                                                               
03/04/16 T1      Antalyaspor  Akhisar Belediyespor      2      2      D  15-16
         T1       Buyuksehyr    Mersin Idman Yurdu      3      0      H  15-16
         T1       Fenerbahce           Osmanlispor      0      0      D  15-16
         T1        Sivasspor             Bursaspor      1      2      A  15-16
('03/05/13', 'D1')
                       home        away  hgoal  agoal result season
date     league                                                    
03/05/13 D1      M'gladbach  Schalke 04      0      1      A  12-13
('03/05/13', 'SP1')
                  home        away  hgoal  agoal result season
date     league                                               
03/05/13 SP1     Celta  Ath Bilbao      1      1      D  12-13
('03/05/13', 'T1')
                           home       away  hgoal  agoal result season
date     league                                                       
03/05/13 T1      Genclerbirligi  Kasimpasa      0      0      D  12-13
('03/05/14', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
03/05/14 D1       Braunschweig       Augsburg      0      1      A  13-14
         D1           Dortmund     Hoffenheim      3      2      H  13-14
         D1      Ein Frankfurt     Leverkusen      0      2      A  13-14
         D1           Freiburg     Schalke 04      0      2      A  13-14
         D1            Hamburg  Bayern Munich      1      4      A  13-14
         D1         M'gladbach          Mainz      3      1      H  13-14
         D1           Nurnberg       Hannover      0      2      A  13-14
         D1          Stuttgart      Wolfsburg      1      2      A  13-14
         D1      Werder Bremen         Hertha      2      0      H  13-14
('03/05/14', 'E2')
                               home           away  hgoal  agoal result season
date     league                                                               
03/05/14 E2               Brentford      Stevenage      2      0      H  13-14
         E2            Crawley Town   Bristol City      1      1      D  13-14
         E2                   Crewe        Preston      2      1      H  13-14
         E2              Gillingham     Shrewsbury      1      1      D  13-14
         E2      Milton Keynes Dons  Leyton Orient      1      3      A  13-14
         E2                  Oldham   Notts County      1      1      D  13-14
         E2               Peterboro      Port Vale      0      0      D  13-14
         E2        Sheffield United       Coventry      2      1      H  13-14
         E2                 Swindon      Rotherham      1      2      A  13-14
         E2                Tranmere       Bradford      1      2      A  13-14
         E2                 Walsall     Colchester      0      1      A  13-14
         E2                  Wolves       Carlisle      3      0      H  13-14
('03/05/14', 'SP1')
                       home     away  hgoal  agoal result season
date     league                                                 
03/05/14 SP1      Barcelona   Getafe      2      2      D  13-14
         SP1         Malaga    Elche      0      1      A  13-14
         SP1        Osasuna    Celta      0      2      A  13-14
         SP1     Valladolid  Espanol      1      0      H  13-14
('03/05/14', 'T1')
                          home            away  hgoal  agoal result season
date     league                                                           
03/05/14 T1        Antalyaspor      Elazigspor      1      2      A  13-14
         T1           Besiktas       Kasimpasa      2      1      H  13-14
         T1        Erciyesspor   Gaziantepspor      1      0      H  13-14
         T1      Eskisehirspor     Kayserispor      1      4      A  13-14
         T1        Galatasaray  Genclerbirligi      3      2      H  13-14
         T1        Karabukspor       Konyaspor      2      2      D  13-14
('03/05/15', 'D1')
                   home        away  hgoal  agoal result season
date     league                                                
03/05/15 D1      Hertha  M'gladbach      1      2      A  14-15
         D1       Mainz     Hamburg      1      2      A  14-15
('03/05/15', 'E2')
                               home            away  hgoal  agoal result  \
date     league                                                            
03/05/15 E2                Barnsley        Rochdale      5      0      H   
         E2            Bristol City         Walsall      8      2      H   
         E2              Colchester         Preston      1      0      H   
         E2            Crawley Town        Coventry      1      2      A   
         E2                   Crewe        Bradford      0      1      A   
         E2               Doncaster      Scunthorpe      5      2      H   
         E2              Gillingham    Notts County      3      1      H   
         E2      Milton Keynes Dons          Yeovil      5      1      H   
         E2                  Oldham       Peterboro      1      1      D   
         E2               Port Vale  Fleetwood Town      1      2      A   
         E2        Sheffield United    Chesterfield      1      1      D   
         E2                 Swindon   Leyton Orient      2      2      D   

                season  
date     league         
03/05/15 E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
('03/05/15', 'I1')
                       home     away  hgoal  agoal result season
date     league                                                 
03/05/15 I1        Atalanta    Lazio      1      1      D  14-15
         I1      Fiorentina   Cesena      3      1      H  14-15
         I1           Inter   Chievo      0      0      D  14-15
         I1          Napoli    Milan      3      0      H  14-15
         I1            Roma    Genoa      2      0      H  14-15
         I1          Verona  Udinese      0      1      A  14-15
('03/05/15', 'SP1')
                     home       away  hgoal  agoal result season
date     league                                                 
03/05/15 SP1      Espanol  Vallecano      1      1      D  14-15
         SP1       Getafe    Granada      1      2      A  14-15
         SP1       Malaga      Elche      1      2      A  14-15
         SP1     Valencia      Eibar      3      1      H  14-15
('03/05/15', 'T1')
                          home            away  hgoal  agoal result season
date     league                                                           
03/05/15 T1      Gaziantepspor  Genclerbirligi      0      3      A  14-15
         T1          Kasimpasa       Bursaspor      5      3      H  14-15
         T1        Trabzonspor        Besiktas      0      2      A  14-15
('03/08/13', 'E2')
                         home                away  hgoal  agoal result season
date     league                                                              
03/08/13 E2      Bristol City            Bradford      2      2      D  13-14
         E2          Carlisle       Leyton Orient      1      5      A  13-14
         E2      Crawley Town            Coventry      3      2      H  13-14
         E2             Crewe           Rotherham      3      3      D  13-14
         E2        Gillingham          Colchester      0      1      A  13-14
         E2         Peterboro             Swindon      1      0      H  13-14
         E2         Port Vale           Brentford      1      1      D  13-14
         E2           Preston              Wolves      0      0      D  13-14
         E2        Shrewsbury  Milton Keynes Dons      0      0      D  13-14
         E2         Stevenage              Oldham      3      4      A  13-14
         E2           Walsall            Tranmere      3      1      H  13-14
('03/09/11', 'E2')
                             home                away  hgoal  agoal result  \
date     league                                                              
03/09/11 E2              Carlisle  Milton Keynes Dons      1      3      A   
         E2          Chesterfield       Leyton Orient      0      0      D   
         E2            Hartlepool              Exeter      2      0      H   
         E2          Notts County         Bournemouth      3      1      H   
         E2                Oldham        Huddersfield      1      1      D   
         E2            Scunthorpe          Colchester      1      1      D   
         E2      Sheffield United                Bury      4      0      H   
         E2             Stevenage            Rochdale      4      2      H   
         E2              Tranmere              Yeovil      0      0      D   
         E2               Walsall           Brentford      0      1      A   

                season  
date     league         
03/09/11 E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
('03/10/11', 'T1')
                          home      away  hgoal  agoal result season
date     league                                                     
03/10/11 T1      Gaziantepspor  Besiktas      0      0      D  11-12
('03/10/14', 'D1')
                   home       away  hgoal  agoal result season
date     league                                               
03/10/14 D1      Hertha  Stuttgart      3      2      H  14-15
('03/10/14', 'SP1')
                   home     away  hgoal  agoal result season
date     league                                             
03/10/14 SP1     Getafe  Cordoba      1      1      D  14-15
('03/10/14', 'T1')
                               home       away  hgoal  agoal result season
date     league                                                           
03/10/14 T1      Mersin Idman Yurdu  Bursaspor      2      1      H  14-15
('03/10/15', 'D1')
                       home           away  hgoal  agoal result season
date     league                                                       
03/10/15 D1        Hannover  Werder Bremen      1      0      H  15-16
         D1          Hertha        Hamburg      3      0      H  15-16
         D1      Hoffenheim      Stuttgart      2      2      D  15-16
         D1      Ingolstadt  Ein Frankfurt      2      0      H  15-16
         D1      M'gladbach      Wolfsburg      2      0      H  15-16
('03/10/15', 'E2')
                       home              away  hgoal  agoal result season
date     league                                                          
03/10/15 E2       Blackpool           Swindon      1      0      H  15-16
         E2          Burton          Southend      1      0      H  15-16
         E2      Colchester              Bury      0      1      A  15-16
         E2        Coventry        Shrewsbury      3      0      H  15-16
         E2           Crewe      Chesterfield      1      2      A  15-16
         E2       Doncaster          Barnsley      2      1      H  15-16
         E2      Gillingham            Oldham      3      3      D  15-16
         E2       Peterboro          Millwall      5      3      H  15-16
         E2       Port Vale  Sheffield United      2      1      H  15-16
         E2        Rochdale          Bradford      1      3      A  15-16
         E2      Scunthorpe    Fleetwood Town      1      0      H  15-16
         E2           Wigan           Walsall      0      0      D  15-16
('03/10/15', 'I1')
                   home    away  hgoal  agoal result season
date     league                                            
03/10/15 I1       Carpi  Torino      2      1      H  15-16
         I1      Chievo  Verona      1      1      D  15-16
('03/10/15', 'SP1')
                       home       away  hgoal  agoal result season
date     league                                                   
03/10/15 SP1        Espanol   Sp Gijon      1      2      A  15-16
         SP1        Granada  La Coruna      1      1      D  15-16
         SP1     Las Palmas      Eibar      0      2      A  15-16
         SP1         Malaga   Sociedad      3      1      H  15-16
         SP1        Sevilla  Barcelona      2      1      H  15-16
('03/10/15', 'T1')
                           home         away  hgoal  agoal result season
date     league                                                         
03/10/15 T1          Buyuksehyr  Galatasaray      0      2      A  15-16
         T1       Gaziantepspor  Osmanlispor      2      1      H  15-16
         T1      Genclerbirligi  Kayserispor      2      0      H  15-16
('03/11/12', 'D1')
                       home           away  hgoal  agoal result season
date     league                                                       
03/11/12 D1        Dortmund      Stuttgart      0      0      D  12-13
         D1         Hamburg  Bayern Munich      0      3      A  12-13
         D1        Hannover       Augsburg      2      0      H  12-13
         D1      Hoffenheim     Schalke 04      3      2      H  12-13
         D1      M'gladbach       Freiburg      1      1      D  12-13
         D1        Nurnberg      Wolfsburg      1      0      H  12-13
('03/11/12', 'I1')
                     home    away  hgoal  agoal result season
date     league                                              
03/11/12 I1      Juventus   Inter      1      3      A  12-13
         I1         Milan  Chievo      5      1      H  12-13
('03/11/12', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
03/11/12 SP1       Barcelona       Celta      3      1      H  12-13
         SP1          Malaga   Vallecano      1      2      A  12-13
         SP1     Real Madrid    Zaragoza      4      0      H  12-13
         SP1        Valencia  Ath Madrid      2      0      H  12-13
('03/11/12', 'T1')
                                 home           away  hgoal  agoal result  \
date     league                                                             
03/11/12 T1      Akhisar Belediyespor     Fenerbahce      1      2      A   
         T1             Eskisehirspor  Gaziantepspor      4      0      H   
         T1               Kayserispor    Karabukspor      3      0      H   

                season  
date     league         
03/11/12 T1      12-13  
         T1      12-13  
         T1      12-13  
('03/11/13', 'D1')
                          home      away  hgoal  agoal result season
date     league                                                     
03/11/13 D1           Augsburg     Mainz      2      1      H  13-14
         D1      Werder Bremen  Hannover      3      2      H  13-14
('03/11/13', 'I1')
                      home      away  hgoal  agoal result season
date     league                                                 
03/11/13 I1          Lazio     Genoa      0      2      A  13-14
         I1        Livorno  Atalanta      1      0      H  13-14
         I1      Sampdoria  Sassuolo      3      4      A  13-14
         I1         Torino      Roma      1      1      D  13-14
         I1        Udinese     Inter      0      3      A  13-14
         I1         Verona  Cagliari      2      1      H  13-14
('03/11/13', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
03/11/13 SP1     Ath Madrid  Ath Bilbao      2      0      H  13-14
         SP1         Getafe    Valencia      0      1      A  13-14
         SP1        Levante     Granada      0      1      A  13-14
         SP1         Malaga       Betis      3      2      H  13-14
('03/11/13', 'T1')
                        home                  away  hgoal  agoal result season
date     league                                                               
03/11/13 T1         Besiktas           Karabukspor      0      0      D  13-14
         T1         Rizespor  Akhisar Belediyespor      0      0      D  13-14
         T1      Trabzonspor            Elazigspor      4      0      H  13-14
('03/11/14', 'I1')
                   home      away  hgoal  agoal result season
date     league                                              
03/11/14 I1      Cesena    Verona      1      1      D  14-15
         I1       Lazio  Cagliari      4      2      H  14-15
('03/11/14', 'SP1')
                      home   away  hgoal  agoal result season
date     league                                              
03/11/14 SP1     Vallecano  Eibar      2      3      A  14-15
('03/11/14', 'T1')
                          home           away  hgoal  agoal result season
date     league                                                          
03/11/14 T1      Eskisehirspor  Balikesirspor      2      2      D  14-15
         T1          Konyaspor    Karabukspor      1      0      H  14-15
('03/11/15', 'E2')
                     home       away  hgoal  agoal result season
date     league                                                 
03/11/15 E2      Bradford  Blackpool      1      0      H  15-16
         E2      Coventry   Barnsley      4      3      H  15-16
('03/12/11', 'D1')
                           home           away  hgoal  agoal result season
date     league                                                           
03/12/11 D1       Bayern Munich  Werder Bremen      4      1      H  11-12
         D1            Freiburg       Hannover      1      1      D  11-12
         D1      Kaiserslautern         Hertha      1      1      D  11-12
         D1          M'gladbach       Dortmund      1      1      D  11-12
         D1           Stuttgart        FC Koln      2      2      D  11-12
         D1           Wolfsburg          Mainz      2      2      D  11-12
('03/12/11', 'I1')
                   home     away  hgoal  agoal result season
date     league                                             
03/12/11 I1       Inter  Udinese      0      1      A  11-12
         I1      Napoli    Lecce      4      2      H  11-12
('03/12/11', 'SP1')
                      home         away  hgoal  agoal result season
date     league                                                    
03/12/11 SP1     Barcelona      Levante      5      0      H  11-12
         SP1     Santander   Villarreal      1      0      H  11-12
         SP1      Sp Gijon  Real Madrid      0      3      A  11-12
         SP1      Valencia      Espanol      2      1      H  11-12
('03/12/11', 'T1')
                           home         away  hgoal  agoal result season
date     league                                                         
03/12/11 T1          Fenerbahce   Ankaragucu      4      2      H  11-12
         T1       Gaziantepspor   Samsunspor      1      0      H  11-12
         T1      Genclerbirligi  Galatasaray      0      1      A  11-12
('03/12/12', 'SP1')
                    home        away  hgoal  agoal result season
date     league                                                 
03/12/12 SP1     Sevilla  Valladolid      1      2      A  12-13
('03/12/12', 'T1')
                           home         away  hgoal  agoal result season
date     league                                                         
03/12/12 T1      Genclerbirligi  Trabzonspor      0      4      A  12-13
('04/01/12', 'T1')
                           home           away  hgoal  agoal result season
date     league                                                           
04/01/12 T1            Besiktas  Eskisehirspor      2      0      H  11-12
         T1       Gaziantepspor    Antalyaspor      1      0      H  11-12
         T1      Genclerbirligi     Samsunspor      1      1      D  11-12
         T1            Orduspor     Fenerbahce      1      1      D  11-12
('04/01/13', 'E2')
                    home        away  hgoal  agoal result season
date     league                                                 
04/01/13 E2      Walsall  Portsmouth      2      0      H  12-13
('04/01/13', 'SP1')
                     home   away  hgoal  agoal result season
date     league                                             
04/01/13 SP1     Zaragoza  Betis      1      2      A  12-13
('04/01/14', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
04/01/14 SP1        Almeria     Granada      3      0      H  13-14
         SP1         Malaga  Ath Madrid      0      1      A  13-14
         SP1       Valencia     Levante      2      0      H  13-14
         SP1     Valladolid       Betis      0      0      D  13-14
('04/01/15', 'SP1')
                     home         away  hgoal  agoal result season
date     league                                                   
04/01/15 SP1      Espanol        Eibar      1      2      A  14-15
         SP1       Getafe    Vallecano      1      2      A  14-15
         SP1     Sociedad    Barcelona      1      0      H  14-15
         SP1     Valencia  Real Madrid      2      1      H  14-15
('04/01/15', 'T1')
                          home           away  hgoal  agoal result season
date     league                                                          
04/01/15 T1           Besiktas    Galatasaray      0      2      A  14-15
         T1        Erciyesspor      Kasimpasa      2      5      A  14-15
         T1      Eskisehirspor  Gaziantepspor      1      3      A  14-15
         T1          Sivasspor    Karabukspor      2      0      H  14-15
('04/01/16', 'SP1')
                     home    away  hgoal  agoal result season
date     league                                              
04/01/16 SP1     Sp Gijon  Getafe      1      2      A  15-16
('04/02/12', 'D1')
                       home           away  hgoal  agoal result season
date     league                                                       
04/02/12 D1         Hamburg  Bayern Munich      1      1      D  11-12
         D1          Hertha       Hannover      0      1      A  11-12
         D1      Hoffenheim       Augsburg      2      2      D  11-12
         D1      Leverkusen      Stuttgart      2      2      D  11-12
         D1      Schalke 04          Mainz      1      1      D  11-12
         D1       Wolfsburg     M'gladbach      0      0      D  11-12
('04/02/12', 'E2')
                           home                away  hgoal  agoal result  \
date     league                                                            
04/02/12 E2            Carlisle        Chesterfield      2      1      H   
         E2        Huddersfield  Milton Keynes Dons      1      1      D   
         E2      Sheffield Weds              Yeovil      2      1      H   
         E2             Wycombe            Tranmere      2      1      H   

                season  
date     league         
04/02/12 E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
('04/02/12', 'I1')
                 home   away  hgoal  agoal result season
date     league                                         
04/02/12 I1      Roma  Inter      4      0      H  11-12
('04/02/12', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
04/02/12 SP1     Ath Bilbao      Espanol      3      3      D  11-12
         SP1      Barcelona     Sociedad      2      1      H  11-12
         SP1         Getafe  Real Madrid      0      1      A  11-12
         SP1        Levante    Santander      1      1      D  11-12
         SP1       Mallorca        Betis      1      0      H  11-12
('04/02/12', 'T1')
                          home         away  hgoal  agoal result season
date     league                                                        
04/02/12 T1        Antalyaspor  Trabzonspor      2      1      H  11-12
         T1      Gaziantepspor  Galatasaray      1      2      A  11-12
('04/02/14', 'E2')
                         home        away  hgoal  agoal result season
date     league                                                      
04/02/14 E2      Bristol City    Coventry      1      2      A  13-14
         E2         Stevenage  Gillingham      3      1      H  13-14
('04/02/15', 'D1')
                       home           away  hgoal  agoal result season
date     league                                                       
04/02/15 D1        Dortmund       Augsburg      0      1      A  14-15
         D1         FC Koln      Stuttgart      0      0      D  14-15
         D1          Hertha     Leverkusen      0      1      A  14-15
         D1      Hoffenheim  Werder Bremen      1      2      A  14-15
         D1       Paderborn        Hamburg      0      3      A  14-15
('04/02/15', 'SP1')
                        home     away  hgoal  agoal result season
date     league                                                  
04/02/15 SP1     Real Madrid  Sevilla      2      1      H  14-15
('04/03/12', 'D1')
                       home        away  hgoal  agoal result season
date     league                                                    
04/03/12 D1      Hoffenheim     FC Koln      1      1      D  11-12
         D1        Nurnberg  M'gladbach      1      0      H  11-12
('04/03/12', 'I1')
                       home      away  hgoal  agoal result season
date     league                                                  
04/03/12 I1         Bologna    Novara      1      0      H  11-12
         I1      Fiorentina    Cesena      2      0      H  11-12
         I1           Inter   Catania      2      2      D  11-12
         I1           Lecce     Genoa      2      2      D  11-12
         I1           Parma    Napoli      1      2      A  11-12
         I1            Roma     Lazio      1      2      A  11-12
         I1           Siena  Cagliari      3      0      H  11-12
         I1         Udinese  Atalanta      0      0      D  11-12
('04/03/12', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
04/03/12 SP1      Ath Bilbao    Sociedad      2      0      H  11-12
         SP1         Granada    Valencia      0      1      A  11-12
         SP1     Real Madrid     Espanol      5      0      H  11-12
         SP1        Zaragoza  Villarreal      2      1      H  11-12
('04/03/12', 'T1')
                          home         away  hgoal  agoal result season
date     league                                                        
04/03/12 T1           Besiktas  Trabzonspor      1      2      A  11-12
         T1          Bursaspor  Karabukspor      3      0      H  11-12
         T1      Gaziantepspor   Buyuksehyr      5      0      H  11-12
         T1        Kayserispor   Manisaspor      2      0      H  11-12
('04/03/13', 'SP1')
                    home   away  hgoal  agoal result season
date     league                                            
04/03/13 SP1     Sevilla  Celta      4      1      H  12-13
('04/03/13', 'T1')
                      home         away  hgoal  agoal result season
date     league                                                    
04/03/13 T1      Kasimpasa  Trabzonspor      2      0      H  12-13
('04/03/14', 'E2')
                             home       away  hgoal  agoal result season
date     league                                                         
04/03/14 E2            Colchester  Rotherham      0      0      D  13-14
         E2          Crawley Town  Stevenage      1      1      D  13-14
         E2      Sheffield United  Peterboro      2      0      H  13-14
('04/03/16', 'I1')
                 home        away  hgoal  agoal result season
date     league                                              
04/03/16 I1      Roma  Fiorentina      4      1      H  15-16
('04/03/16', 'T1')
                               home       away  hgoal  agoal result season
date     league                                                           
04/03/16 T1      Mersin Idman Yurdu  Sivasspor      1      0      H  15-16
('04/04/14', 'D1')
                    home        away  hgoal  agoal result season
date     league                                                 
04/04/14 D1      Hamburg  Leverkusen      2      1      H  13-14
('04/04/14', 'T1')
                          home       away  hgoal  agoal result season
date     league                                                      
04/04/14 T1      Gaziantepspor  Kasimpasa      2      2      D  13-14
('04/04/15', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
04/04/15 D1           Dortmund  Bayern Munich      0      1      A  14-15
         D1      Ein Frankfurt       Hannover      2      2      D  14-15
         D1           Freiburg        FC Koln      1      0      H  14-15
         D1         Hoffenheim     M'gladbach      1      4      A  14-15
         D1         Leverkusen        Hamburg      4      0      H  14-15
         D1      Werder Bremen          Mainz      0      0      D  14-15
         D1          Wolfsburg      Stuttgart      3      1      H  14-15
('04/04/15', 'E2')
                     home                away  hgoal  agoal result season
date     league                                                          
04/04/15 E2      Barnsley    Sheffield United      0      2      A  14-15
         E2       Swindon  Milton Keynes Dons      0      3      A  14-15
('04/04/15', 'I1')
                       home       away  hgoal  agoal result season
date     league                                                   
04/04/15 I1        Atalanta     Torino      1      2      A  14-15
         I1        Cagliari      Lazio      1      3      A  14-15
         I1      Fiorentina  Sampdoria      2      0      H  14-15
         I1           Genoa    Udinese      1      1      D  14-15
         I1           Inter      Parma      1      1      D  14-15
         I1        Juventus     Empoli      2      0      H  14-15
         I1         Palermo      Milan      1      2      A  14-15
         I1            Roma     Napoli      1      0      H  14-15
         I1        Sassuolo     Chievo      1      0      H  14-15
         I1          Verona     Cesena      3      3      D  14-15
('04/04/15', 'SP1')
                    home        away  hgoal  agoal result season
date     league                                                 
04/04/15 SP1     Almeria     Levante      1      4      A  14-15
         SP1     Cordoba  Ath Madrid      0      2      A  14-15
         SP1      Malaga    Sociedad      1      1      D  14-15
         SP1     Sevilla  Ath Bilbao      2      0      H  14-15
('04/04/15', 'T1')
                           home                away  hgoal  agoal result  \
date     league                                                            
04/04/15 T1       Balikesirspor  Mersin Idman Yurdu      1      3      A   
         T1       Eskisehirspor           Sivasspor      1      3      A   
         T1      Genclerbirligi           Kasimpasa      5      2      H   
         T1            Rizespor          Fenerbahce      1      5      A   

                season  
date     league         
04/04/15 T1      14-15  
         T1      14-15  
         T1      14-15  
         T1      14-15  
('04/04/16', 'T1')
                      home         away  hgoal  agoal result season
date     league                                                    
04/04/16 T1      Kasimpasa     Besiktas      2      1      H  15-16
         T1       Rizespor  Kayserispor      0      0      D  15-16
('04/05/13', 'D1')
                          home                away  hgoal  agoal result season
date     league                                                               
04/05/13 D1           Dortmund       Bayern Munich      1      1      D  12-13
         D1      Ein Frankfurt  Fortuna Dusseldorf      3      1      H  12-13
         D1           Hannover               Mainz      2      2      D  12-13
         D1           Nurnberg          Leverkusen      0      2      A  12-13
         D1          Stuttgart      Greuther Furth      0      2      A  12-13
         D1      Werder Bremen          Hoffenheim      2      2      D  12-13
('04/05/13', 'I1')
                       home      away  hgoal  agoal result season
date     league                                                  
04/05/13 I1          Chievo  Cagliari      0      0      D  12-13
         I1      Fiorentina      Roma      0      1      A  12-13
('04/05/13', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
04/05/13 SP1         Granada      Malaga      1      0      H  12-13
         SP1       La Coruna  Ath Madrid      0      0      D  12-13
         SP1     Real Madrid  Valladolid      4      3      H  12-13
         SP1        Valencia     Osasuna      4      0      H  12-13
('04/05/13', 'T1')
                        home         away  hgoal  agoal result season
date     league                                                      
04/05/13 T1      Kayserispor  Trabzonspor      2      1      H  12-13
         T1         Orduspor    Bursaspor      2      4      A  12-13
('04/05/14', 'I1')
                    home       away  hgoal  agoal result season
date     league                                                
04/05/14 I1      Catania       Roma      4      1      H  13-14
         I1       Chievo     Torino      0      1      A  13-14
         I1        Genoa    Bologna      0      0      D  13-14
         I1        Milan      Inter      1      0      H  13-14
         I1        Parma  Sampdoria      2      0      H  13-14
         I1      Udinese    Livorno      5      3      H  13-14
('04/05/14', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
04/05/14 SP1         Almeria       Betis      3      2      H  13-14
         SP1         Levante  Ath Madrid      2      0      H  13-14
         SP1     Real Madrid    Valencia      2      2      D  13-14
         SP1         Sevilla  Villarreal      0      0      D  13-14
('04/05/14', 'T1')
                                 home         away  hgoal  agoal result season
date     league                                                               
04/05/14 T1      Akhisar Belediyespor   Fenerbahce      3      1      H  13-14
         T1                 Bursaspor  Trabzonspor      2      2      D  13-14
         T1                  Rizespor    Sivasspor      1      1      D  13-14
('04/05/15', 'I1')
                     home   away  hgoal  agoal result season
date     league                                             
04/05/15 I1      Cagliari  Parma      4      0      H  14-15
('04/05/15', 'SP1')
                    home   away  hgoal  agoal result season
date     league                                            
04/05/15 SP1     Almeria  Celta      2      2      D  14-15
('04/05/15', 'T1')
                                 home         away  hgoal  agoal result season
date     league                                                               
04/05/15 T1      Akhisar Belediyespor  Galatasaray      0      2      A  14-15
         T1               Erciyesspor    Sivasspor      2      3      A  14-15
('04/10/13', 'D1')
                     home    away  hgoal  agoal result season
date     league                                              
04/10/13 D1      Hannover  Hertha      1      1      D  13-14
('04/10/13', 'E2')
                             home          away  hgoal  agoal result season
date     league                                                            
04/10/13 E2      Sheffield United  Crawley Town      1      1      D  13-14
('04/10/13', 'SP1')
                       home     away  hgoal  agoal result season
date     league                                                 
04/10/13 SP1         Malaga  Osasuna      0      1      A  13-14
         SP1     Villarreal  Granada      3      0      H  13-14
('04/10/13', 'T1')
                        home       away  hgoal  agoal result season
date     league                                                    
04/10/13 T1      Karabukspor  Bursaspor      0      1      A  13-14
('04/10/14', 'D1')
                          home        away  hgoal  agoal result season
date     league                                                       
04/10/14 D1      Bayern Munich    Hannover      4      0      H  14-15
         D1           Dortmund     Hamburg      0      1      A  14-15
         D1      Ein Frankfurt     FC Koln      3      2      H  14-15
         D1         Hoffenheim  Schalke 04      2      1      H  14-15
         D1         Leverkusen   Paderborn      2      2      D  14-15
         D1      Werder Bremen    Freiburg      1      1      D  14-15
('04/10/14', 'E2')
                           home                away  hgoal  agoal result  \
date     league                                                            
04/10/14 E2            Bradford               Crewe      2      0      H   
         E2        Chesterfield    Sheffield United      3      2      H   
         E2            Coventry        Crawley Town      2      2      D   
         E2      Fleetwood Town           Port Vale      1      0      H   
         E2       Leyton Orient             Swindon      1      2      A   
         E2        Notts County          Gillingham      1      0      H   
         E2           Peterboro              Oldham      2      2      D   
         E2             Preston          Colchester      4      2      H   
         E2            Rochdale            Barnsley      0      1      A   
         E2          Scunthorpe           Doncaster      1      2      A   
         E2             Walsall        Bristol City      1      1      D   
         E2              Yeovil  Milton Keynes Dons      0      2      A   

                season  
date     league         
04/10/14 E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
('04/10/14', 'I1')
                   home      away  hgoal  agoal result season
date     league                                              
04/10/14 I1       Milan    Chievo      2      0      H  14-15
         I1      Verona  Cagliari      1      0      H  14-15
('04/10/14', 'SP1')
                      home        away  hgoal  agoal result season
date     league                                                   
04/10/14 SP1       Almeria       Elche      2      2      D  14-15
         SP1         Eibar     Levante      3      3      D  14-15
         SP1        Malaga     Granada      2      1      H  14-15
         SP1      Valencia  Ath Madrid      3      1      H  14-15
         SP1     Vallecano   Barcelona      0      2      A  14-15
('04/10/14', 'T1')
                        home            away  hgoal  agoal result season
date     league                                                         
04/10/14 T1      Erciyesspor     Galatasaray      1      2      A  14-15
         T1       Fenerbahce       Konyaspor      2      1      H  14-15
         T1        Kasimpasa   Gaziantepspor      4      2      H  14-15
         T1        Sivasspor  Genclerbirligi      1      0      H  14-15
('04/10/15', 'D1')
                          home      away  hgoal  agoal result season
date     league                                                     
04/10/15 D1      Bayern Munich  Dortmund      5      1      H  15-16
         D1         Leverkusen  Augsburg      1      1      D  15-16
         D1         Schalke 04   FC Koln      0      3      A  15-16
('04/10/15', 'I1')
                       home       away  hgoal  agoal result season
date     league                                                   
04/10/15 I1          Empoli   Sassuolo      1      0      H  15-16
         I1      Fiorentina   Atalanta      3      0      H  15-16
         I1        Juventus    Bologna      3      1      H  15-16
         I1           Lazio  Frosinone      2      0      H  15-16
         I1           Milan     Napoli      0      4      A  15-16
         I1         Palermo       Roma      2      4      A  15-16
         I1       Sampdoria      Inter      1      1      D  15-16
         I1         Udinese      Genoa      1      1      D  15-16
('04/10/15', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
04/10/15 SP1     Ath Bilbao     Valencia      3      1      H  15-16
         SP1     Ath Madrid  Real Madrid      1      1      D  15-16
         SP1        Levante   Villarreal      1      0      H  15-16
         SP1      Vallecano        Betis      0      2      A  15-16
('04/10/15', 'T1')
                          home                  away  hgoal  agoal result  \
date     league                                                             
04/10/15 T1        Antalyaspor             Kasimpasa      0      0      D   
         T1      Eskisehirspor              Besiktas      1      2      A   
         T1         Fenerbahce  Akhisar Belediyespor      2      2      D   
         T1           Rizespor             Bursaspor      2      3      A   

                season  
date     league         
04/10/15 T1      15-16  
         T1      15-16  
         T1      15-16  
         T1      15-16  
('04/11/11', 'D1')
                  home       away  hgoal  agoal result season
date     league                                              
04/11/11 D1      Mainz  Stuttgart      3      1      H  11-12
('04/11/11', 'T1')
                       home        away  hgoal  agoal result season
date     league                                                    
04/11/11 T1      Samsunspor  Ankaragucu      2      2      D  11-12
         T1       Sivasspor  Fenerbahce      2      0      H  11-12
('04/11/12', 'D1')
                          home                away  hgoal  agoal result season
date     league                                                               
04/11/12 D1         Leverkusen  Fortuna Dusseldorf      3      2      H  12-13
         D1      Werder Bremen               Mainz      2      1      H  12-13
('04/11/12', 'I1')
                       home      away  hgoal  agoal result season
date     league                                                  
04/11/12 I1         Bologna   Udinese      1      1      D  12-13
         I1         Catania     Lazio      4      0      H  12-13
         I1      Fiorentina  Cagliari      4      1      H  12-13
         I1          Napoli    Torino      1      1      D  12-13
         I1         Pescara     Parma      2      0      H  12-13
         I1            Roma   Palermo      4      1      H  12-13
         I1       Sampdoria  Atalanta      1      2      A  12-13
         I1           Siena     Genoa      1      0      H  12-13
('04/11/12', 'SP1')
                      home        away  hgoal  agoal result season
date     league                                                   
04/11/12 SP1       Granada  Ath Bilbao      1      2      A  12-13
         SP1     La Coruna    Mallorca      1      0      H  12-13
         SP1       Osasuna  Valladolid      0      1      A  12-13
         SP1       Sevilla     Levante      0      0      D  12-13
         SP1      Sociedad     Espanol      0      1      A  12-13
('04/11/12', 'T1')
                           home                away  hgoal  agoal result  \
date     league                                                            
04/11/12 T1            Besiktas  Mersin Idman Yurdu      3      0      H   
         T1      Genclerbirligi          Elazigspor      1      2      A   
         T1            Orduspor           Sivasspor      2      0      H   

                season  
date     league         
04/11/12 T1      12-13  
         T1      12-13  
         T1      12-13  
('04/11/13', 'I1')
                    home    away  hgoal  agoal result season
date     league                                             
04/11/13 I1      Bologna  Chievo      0      0      D  13-14
('04/11/13', 'SP1')
                  home        away  hgoal  agoal result season
date     league                                               
04/11/13 SP1     Elche  Villarreal      0      1      A  13-14
('04/11/13', 'T1')
                           home           away  hgoal  agoal result season
date     league                                                           
04/11/13 T1         Antalyaspor    Kayserispor      2      2      D  13-14
         T1       Gaziantepspor      Sivasspor      0      4      A  13-14
         T1      Genclerbirligi  Eskisehirspor      2      0      H  13-14
('04/11/14', 'E2')
                    home     away  hgoal  agoal result season
date     league                                              
04/11/14 E2      Swindon  Preston      1      0      H  14-15
('04/12/11', 'D1')
                       home      away  hgoal  agoal result season
date     league                                                  
04/12/11 D1         Hamburg  Nurnberg      2      0      H  11-12
         D1      Schalke 04  Augsburg      3      1      H  11-12
('04/12/11', 'I1')
                       home      away  hgoal  agoal result season
date     league                                                  
04/12/11 I1         Bologna     Siena      1      0      H  11-12
         I1         Catania  Cagliari      0      1      A  11-12
         I1          Chievo  Atalanta      0      0      D  11-12
         I1      Fiorentina      Roma      3      0      H  11-12
         I1        Juventus    Cesena      2      0      H  11-12
         I1           Parma   Palermo      0      0      D  11-12
('04/12/11', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
04/12/11 SP1     Ath Madrid   Vallecano      3      1      H  11-12
         SP1        Granada    Zaragoza      1      0      H  11-12
         SP1       Mallorca  Ath Bilbao      1      1      D  11-12
         SP1        Osasuna       Betis      2      1      H  11-12
         SP1       Sociedad      Malaga      3      2      H  11-12
('04/12/11', 'T1')
                               home           away  hgoal  agoal result season
date     league                                                               
04/12/11 T1             Antalyaspor    Karabukspor      2      1      H  11-12
         T1               Bursaspor  Eskisehirspor      0      1      A  11-12
         T1             Kayserispor     Buyuksehyr      1      0      H  11-12
         T1      Mersin Idman Yurdu     Manisaspor      0      0      D  11-12
('04/12/15', 'D1')
                       home      away  hgoal  agoal result season
date     league                                                  
04/12/15 D1      Schalke 04  Hannover      3      1      H  15-16
('04/12/15', 'I1')
                  home      away  hgoal  agoal result season
date     league                                             
04/12/15 I1      Lazio  Juventus      0      2      A  15-16
('04/12/15', 'T1')
                        home       away  hgoal  agoal result season
date     league                                                    
04/12/15 T1      Galatasaray  Bursaspor      3      0      H  15-16
('05/01/13', 'E2')
                      home        away  hgoal  agoal result season
date     league                                                   
05/01/13 E2          Crewe   Stevenage      1      2      A  12-13
         E2      Doncaster  Colchester      1      0      H  12-13
('05/01/13', 'I1')
                    home      away  hgoal  agoal result season
date     league                                               
05/01/13 I1      Catania    Torino      0      0      D  12-13
         I1        Lazio  Cagliari      2      1      H  12-13
('05/01/13', 'SP1')
                      home        away  hgoal  agoal result season
date     league                                                   
05/01/13 SP1       Granada    Valencia      1      2      A  12-13
         SP1     La Coruna      Malaga      1      0      H  12-13
         SP1       Levante  Ath Bilbao      3      1      H  12-13
         SP1       Sevilla     Osasuna      1      0      H  12-13
('05/01/14', 'I1')
                       home      away  hgoal  agoal result season
date     league                                                  
05/01/14 I1          Chievo  Cagliari      0      0      D  13-14
         I1      Fiorentina   Livorno      1      0      H  13-14
         I1        Juventus      Roma      3      0      H  13-14
('05/01/14', 'SP1')
                      home        away  hgoal  agoal result season
date     league                                                   
05/01/14 SP1     Barcelona       Elche      4      0      H  13-14
         SP1       Osasuna     Espanol      1      0      H  13-14
         SP1       Sevilla      Getafe      3      0      H  13-14
         SP1      Sociedad  Ath Bilbao      2      0      H  13-14
('05/01/15', 'I1')
                  home       away  hgoal  agoal result season
date     league                                              
05/01/15 I1      Lazio  Sampdoria      3      0      H  14-15
('05/01/15', 'SP1')
                    home     away  hgoal  agoal result season
date     league                                              
05/01/15 SP1     Cordoba  Granada      2      0      H  14-15
('05/01/15', 'T1')
                               home            away  hgoal  agoal result  \
date     league                                                            
05/01/15 T1           Balikesirspor     Trabzonspor      2      2      D   
         T1      Mersin Idman Yurdu  Genclerbirligi      1      1      D   

                season  
date     league         
05/01/15 T1      14-15  
         T1      14-15  
('05/01/16', 'I1')
                  home       away  hgoal  agoal result season
date     league                                              
05/01/16 I1      Genoa  Sampdoria      2      3      A  15-16
('05/02/12', 'D1')
                           home           away  hgoal  agoal result season
date     league                                                           
05/02/12 D1            Freiburg  Werder Bremen      2      2      D  11-12
         D1      Kaiserslautern        FC Koln      0      1      A  11-12
('05/02/12', 'I1')
                       home      away  hgoal  agoal result season
date     league                                                  
05/02/12 I1          Chievo     Parma      1      2      A  11-12
         I1      Fiorentina   Udinese      3      2      H  11-12
         I1           Genoa     Lazio      3      2      H  11-12
         I1        Juventus     Siena      0      0      D  11-12
         I1           Lecce   Bologna      0      0      D  11-12
         I1           Milan    Napoli      0      0      D  11-12
         I1          Novara  Cagliari      0      0      D  11-12
         I1         Palermo  Atalanta      2      1      H  11-12
('05/02/12', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
05/02/12 SP1     Ath Madrid    Valencia      0      0      D  11-12
         SP1        Sevilla  Villarreal      1      2      A  11-12
         SP1       Sp Gijon     Osasuna      1      1      D  11-12
         SP1       Zaragoza   Vallecano      1      2      A  11-12
('05/02/12', 'T1')
                               home            away  hgoal  agoal result  \
date     league                                                            
05/02/12 T1               Bursaspor        Orduspor      0      0      D   
         T1              Fenerbahce        Besiktas      2      0      H   
         T1             Kayserispor  Genclerbirligi      2      3      A   
         T1      Mersin Idman Yurdu       Sivasspor      1      5      A   

                season  
date     league         
05/02/12 T1      11-12  
         T1      11-12  
         T1      11-12  
         T1      11-12  
('05/02/13', 'E2')
                       home          away  hgoal  agoal result season
date     league                                                      
05/02/13 E2      Colchester       Swindon      0      1      A  12-13
         E2      Scunthorpe    Portsmouth      2      1      H  12-13
         E2       Stevenage  Notts County      2      0      H  12-13
('05/02/16', 'D1')
                       home           away  hgoal  agoal result season
date     league                                                       
05/02/16 D1      M'gladbach  Werder Bremen      5      1      H  15-16
('05/02/16', 'SP1')
                   home    away  hgoal  agoal result season
date     league                                            
05/02/16 SP1     Malaga  Getafe      3      0      H  15-16
('05/02/16', 'T1')
                        home        away  hgoal  agoal result season
date     league                                                     
05/02/16 T1      Antalyaspor  Fenerbahce      4      2      H  15-16
         T1      Osmanlispor   Sivasspor      4      0      H  15-16
('05/03/12', 'SP1')
                    home   away  hgoal  agoal result season
date     league                                            
05/03/12 SP1     Levante  Betis      3      1      H  11-12
('05/03/12', 'T1')
                      home         away  hgoal  agoal result season
date     league                                                    
05/03/12 T1      Sivasspor  Galatasaray      0      4      A  11-12
('05/03/13', 'E2')
                               home        away  hgoal  agoal result season
date     league                                                            
05/03/13 E2            Crawley Town    Carlisle      1      1      D  12-13
         E2              Hartlepool  Colchester      0      0      D  12-13
         E2      Milton Keynes Dons   Doncaster      3      0      H  12-13
         E2               Stevenage   Brentford      1      0      H  12-13
('05/03/14', 'E2')
                     home     away  hgoal  agoal result season
date     league                                               
05/03/14 E2      Coventry  Walsall      2      1      H  13-14
('05/03/16', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
05/03/16 D1           Augsburg     Leverkusen      3      3      D  15-16
         D1           Dortmund  Bayern Munich      0      0      D  15-16
         D1      Ein Frankfurt     Ingolstadt      1      1      D  15-16
         D1            FC Koln     Schalke 04      1      3      A  15-16
         D1          Stuttgart     Hoffenheim      5      1      H  15-16
         D1      Werder Bremen       Hannover      4      1      H  15-16
         D1          Wolfsburg     M'gladbach      2      1      H  15-16
('05/03/16', 'E2')
                           home              away  hgoal  agoal result season
date     league                                                              
05/03/16 E2                Bury          Bradford      0      0      D  15-16
         E2            Coventry          Rochdale      0      1      A  15-16
         E2               Crewe            Burton      1      1      D  15-16
         E2           Doncaster        Shrewsbury      0      1      A  15-16
         E2      Fleetwood Town  Sheffield United      2      2      D  15-16
         E2            Millwall         Blackpool      3      0      H  15-16
         E2           Port Vale        Colchester      2      0      H  15-16
         E2          Scunthorpe        Gillingham      0      0      D  15-16
         E2            Southend      Chesterfield      0      1      A  15-16
         E2             Walsall          Barnsley      1      3      A  15-16
         E2               Wigan         Peterboro      1      1      D  15-16
('05/03/16', 'I1')
                   home       away  hgoal  agoal result season
date     league                                               
05/03/16 I1      Napoli     Chievo      3      1      H  15-16
         I1      Verona  Sampdoria      0      3      A  15-16
('05/03/16', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
05/03/16 SP1          Getafe     Sevilla      1      1      D  15-16
         SP1       La Coruna      Malaga      3      3      D  15-16
         SP1     Real Madrid       Celta      7      1      H  15-16
         SP1      Villarreal  Las Palmas      0      1      A  15-16
('05/03/16', 'T1')
                        home            away  hgoal  agoal result season
date     league                                                         
05/03/16 T1        Bursaspor        Rizespor      1      0      H  15-16
         T1      Kayserispor  Genclerbirligi      0      2      A  15-16
         T1      Osmanlispor   Gaziantepspor      1      1      D  15-16
('05/04/13', 'D1')
                       home                away  hgoal  agoal result season
date     league                                                            
05/04/13 D1      Hoffenheim  Fortuna Dusseldorf      3      0      H  12-13
('05/04/13', 'SP1')
                    home   away  hgoal  agoal result season
date     league                                            
05/04/13 SP1     Granada  Betis      1      5      A  12-13
('05/04/13', 'T1')
                        home       away  hgoal  agoal result season
date     league                                                    
05/04/13 T1      Antalyaspor  Kasimpasa      3      2      H  12-13
('05/04/14', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
05/04/14 D1           Augsburg  Bayern Munich      1      0      H  13-14
         D1           Dortmund      Wolfsburg      2      1      H  13-14
         D1      Ein Frankfurt          Mainz      2      0      H  13-14
         D1           Nurnberg     M'gladbach      0      2      A  13-14
         D1          Stuttgart       Freiburg      2      0      H  13-14
         D1      Werder Bremen     Schalke 04      1      1      D  13-14
('05/04/14', 'E2')
                             home                away  hgoal  agoal result  \
date     league                                                              
05/04/14 E2              Bradford              Oldham      2      3      A   
         E2             Brentford        Notts County      3      1      H   
         E2          Bristol City             Preston      1      1      D   
         E2              Carlisle             Swindon      1      0      H   
         E2            Colchester            Tranmere      1      2      A   
         E2              Coventry  Milton Keynes Dons      1      2      A   
         E2          Crawley Town               Crewe      1      2      A   
         E2            Gillingham           Rotherham      3      4      A   
         E2             Port Vale             Walsall      1      0      H   
         E2      Sheffield United       Leyton Orient      1      1      D   
         E2            Shrewsbury           Stevenage      1      0      H   
         E2                Wolves           Peterboro      2      0      H   

                season  
date     league         
05/04/14 E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
('05/04/14', 'I1')
                  home     away  hgoal  agoal result season
date     league                                            
05/04/14 I1      Inter  Bologna      2      2      D  13-14
('05/04/14', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
05/04/14 SP1     Ath Madrid   Villarreal      1      0      H  13-14
         SP1      Barcelona        Betis      3      1      H  13-14
         SP1       Sociedad  Real Madrid      0      4      A  13-14
         SP1      Vallecano        Celta      3      0      H  13-14
('05/04/14', 'T1')
                                 home           away  hgoal  agoal result  \
date     league                                                             
05/04/14 T1      Akhisar Belediyespor  Eskisehirspor      0      0      D   
         T1               Antalyaspor      Konyaspor      1      1      D   
         T1                  Besiktas    Kayserispor      2      1      H   
         T1                  Rizespor    Karabukspor      0      1      A   

                season  
date     league         
05/04/14 T1      13-14  
         T1      13-14  
         T1      13-14  
         T1      13-14  
('05/04/15', 'D1')
                     home        away  hgoal  agoal result season
date     league                                                  
05/04/15 D1      Augsburg  Schalke 04      0      0      D  14-15
         D1        Hertha   Paderborn      2      0      H  14-15
('05/04/15', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
05/04/15 SP1           Celta   Barcelona      0      1      A  14-15
         SP1          Getafe   La Coruna      2      1      H  14-15
         SP1     Real Madrid     Granada      9      1      H  14-15
         SP1        Valencia  Villarreal      0      0      D  14-15
('05/04/15', 'T1')
                                 home           away  hgoal  agoal result  \
date     league                                                             
05/04/15 T1      Akhisar Belediyespor  Gaziantepspor      3      0      H   
         T1                 Bursaspor    Erciyesspor      3      0      H   
         T1               Galatasaray    Karabukspor      4      2      H   
         T1                 Konyaspor    Trabzonspor      1      0      H   

                season  
date     league         
05/04/15 T1      14-15  
         T1      14-15  
         T1      14-15  
         T1      14-15  
('05/04/16', 'E2')
                           home       away  hgoal  agoal result season
date     league                                                       
05/04/16 E2      Fleetwood Town  Peterboro      2      0      H  15-16
         E2              Oldham    Swindon      2      0      H  15-16
('05/05/12', 'D1')
                          home            away  hgoal  agoal result season
date     league                                                           
05/05/12 D1           Augsburg         Hamburg      1      0      H  11-12
         D1           Dortmund        Freiburg      4      0      H  11-12
         D1            FC Koln   Bayern Munich      1      4      A  11-12
         D1           Hannover  Kaiserslautern      2      1      H  11-12
         D1             Hertha      Hoffenheim      3      1      H  11-12
         D1              Mainz      M'gladbach      0      3      A  11-12
         D1           Nurnberg      Leverkusen      1      4      A  11-12
         D1          Stuttgart       Wolfsburg      3      2      H  11-12
         D1      Werder Bremen      Schalke 04      2      3      A  11-12
('05/05/12', 'E2')
                               home              away  hgoal  agoal result  \
date     league                                                              
05/05/12 E2             Bournemouth           Preston      1      0      H   
         E2                Charlton        Hartlepool      3      2      H   
         E2            Chesterfield         Brentford      2      3      A   
         E2                  Exeter  Sheffield United      2      2      D   
         E2            Huddersfield            Yeovil      2      0      H   
         E2           Leyton Orient          Rochdale      2      1      H   
         E2      Milton Keynes Dons           Walsall      0      1      A   
         E2            Notts County        Colchester      4      1      H   
         E2                  Oldham          Carlisle      2      1      H   
         E2          Sheffield Weds           Wycombe      2      0      H   
         E2               Stevenage              Bury      3      0      H   
         E2                Tranmere        Scunthorpe      1      1      D   

                season  
date     league         
05/05/12 E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
('05/05/12', 'I1')
                  home        away  hgoal  agoal result season
date     league                                               
05/05/12 I1      Lecce  Fiorentina      0      1      A  11-12
         I1       Roma     Catania      2      2      D  11-12
('05/05/12', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
05/05/12 SP1     Ath Bilbao       Getafe      0      0      D  11-12
         SP1     Ath Madrid       Malaga      2      1      H  11-12
         SP1      Barcelona      Espanol      4      0      H  11-12
         SP1        Granada  Real Madrid      1      2      A  11-12
         SP1       Mallorca      Levante      1      0      H  11-12
         SP1        Osasuna     Sociedad      1      0      H  11-12
         SP1        Sevilla    Vallecano      5      2      H  11-12
         SP1       Sp Gijon        Betis      2      1      H  11-12
         SP1       Valencia   Villarreal      1      0      H  11-12
         SP1       Zaragoza    Santander      2      1      H  11-12
('05/05/13', 'D1')
                     home       away  hgoal  agoal result season
date     league                                                 
05/05/13 D1      Freiburg   Augsburg      2      0      H  12-13
         D1       Hamburg  Wolfsburg      1      1      D  12-13
('05/05/13', 'I1')
                     home       away  hgoal  agoal result season
date     league                                                 
05/05/13 I1       Catania      Siena      3      0      H  12-13
         I1         Genoa    Pescara      4      1      H  12-13
         I1      Juventus    Palermo      1      0      H  12-13
         I1         Lazio    Bologna      6      0      H  12-13
         I1         Milan     Torino      1      0      H  12-13
         I1        Napoli      Inter      3      1      H  12-13
         I1         Parma   Atalanta      2      0      H  12-13
         I1       Udinese  Sampdoria      3      1      H  12-13
('05/05/13', 'SP1')
                      home       away  hgoal  agoal result season
date     league                                                  
05/05/13 SP1     Barcelona      Betis      4      2      H  12-13
         SP1      Mallorca    Levante      1      1      D  12-13
         SP1       Sevilla    Espanol      3      0      H  12-13
         SP1      Zaragoza  Vallecano      3      0      H  12-13
('05/05/13', 'T1')
                               home                  away  hgoal  agoal  \
date     league                                                           
05/05/13 T1             Antalyaspor  Akhisar Belediyespor      4      3   
         T1              Buyuksehyr            Fenerbahce      2      0   
         T1           Eskisehirspor              Besiktas      1      2   
         T1             Galatasaray             Sivasspor      4      2   
         T1             Karabukspor         Gaziantepspor      0      2   
         T1      Mersin Idman Yurdu            Elazigspor      0      2   

                result season  
date     league                
05/05/13 T1          H  12-13  
         T1          H  12-13  
         T1          A  12-13  
         T1          H  12-13  
         T1          A  12-13  
         T1          A  12-13  
('05/05/14', 'I1')
                     home      away  hgoal  agoal result season
date     league                                                
05/05/14 I1      Juventus  Atalanta      1      0      H  13-14
         I1         Lazio    Verona      3      3      D  13-14
('05/05/14', 'SP1')
                     home     away  hgoal  agoal result season
date     league                                               
05/05/14 SP1     Sociedad  Granada      1      1      D  13-14
('05/08/11', 'D1')
                     home     away  hgoal  agoal result season
date     league                                               
05/08/11 D1      Dortmund  Hamburg      3      1      H  11-12
('05/09/11', 'E2')
                     home            away  hgoal  agoal result season
date     league                                                      
05/09/11 E2      Charlton  Sheffield Weds      1      1      D  11-12
('05/09/14', 'E2')
                     home        away  hgoal  agoal result season
date     league                                                  
05/09/14 E2      Coventry  Gillingham      1      0      H  14-15
('05/09/15', 'E2')
                           home        away  hgoal  agoal result season
date     league                                                        
05/09/15 E2            Barnsley  Shrewsbury      1      2      A  15-16
         E2        Chesterfield       Wigan      2      3      A  15-16
         E2               Crewe     Swindon      1      3      A  15-16
         E2      Fleetwood Town    Rochdale      1      1      D  15-16
         E2          Gillingham   Doncaster      1      0      H  15-16
         E2              Oldham    Bradford      1      2      A  15-16
         E2          Scunthorpe   Blackpool      0      1      A  15-16
         E2            Southend   Peterboro      2      1      H  15-16
         E2             Walsall        Bury      0      1      A  15-16
('05/10/12', 'D1')
                     home           away  hgoal  agoal result season
date     league                                                     
05/10/12 D1      Augsburg  Werder Bremen      3      1      H  12-13
('05/10/12', 'SP1')
                  home     away  hgoal  agoal result season
date     league                                            
05/10/12 SP1     Celta  Sevilla      2      0      H  12-13
('05/10/12', 'T1')
                          home         away  hgoal  agoal result season
date     league                                                        
05/10/12 T1      Gaziantepspor  Antalyaspor      0      1      A  12-13
         T1        Karabukspor     Orduspor      1      1      D  12-13
         T1        Trabzonspor    Kasimpasa      1      0      H  12-13
('05/10/13', 'D1')
                       home           away  hgoal  agoal result season
date     league                                                       
05/10/13 D1      Leverkusen  Bayern Munich      1      1      D  13-14
         D1           Mainz     Hoffenheim      2      2      D  13-14
         D1      M'gladbach       Dortmund      2      0      H  13-14
         D1      Schalke 04       Augsburg      4      1      H  13-14
         D1       Stuttgart  Werder Bremen      1      1      D  13-14
         D1       Wolfsburg   Braunschweig      0      2      A  13-14
('05/10/13', 'E2')
                         home                away  hgoal  agoal result season
date     league                                                              
05/10/13 E2         Brentford           Rotherham      0      1      A  13-14
         E2        Colchester              Wolves      0      3      A  13-14
         E2        Gillingham  Milton Keynes Dons      3      2      H  13-14
         E2      Notts County               Crewe      4      0      H  13-14
         E2            Oldham       Leyton Orient      1      1      D  13-14
         E2         Peterboro             Preston      2      0      H  13-14
         E2         Port Vale        Bristol City      1      1      D  13-14
         E2        Shrewsbury            Carlisle      2      2      D  13-14
         E2         Stevenage            Coventry      0      1      A  13-14
         E2           Swindon            Tranmere      1      0      H  13-14
         E2           Walsall            Bradford      0      2      A  13-14
('05/10/13', 'I1')
                   home      away  hgoal  agoal result season
date     league                                              
05/10/13 I1      Chievo  Atalanta      0      1      A  13-14
         I1       Inter      Roma      0      3      A  13-14
('05/10/13', 'SP1')
                      home         away  hgoal  agoal result season
date     league                                                    
05/10/13 SP1     Barcelona   Valladolid      4      1      H  13-14
         SP1         Elche      Espanol      2      1      H  13-14
         SP1       Levante  Real Madrid      2      3      A  13-14
         SP1     Vallecano     Sociedad      1      0      H  13-14
('05/10/13', 'T1')
                          home           away  hgoal  agoal result season
date     league                                                          
05/10/13 T1      Eskisehirspor       Besiktas      0      1      A  13-14
         T1        Kayserispor  Gaziantepspor      0      1      A  13-14
         T1          Konyaspor    Erciyesspor      1      0      H  13-14
('05/10/14', 'D1')
                       home      away  hgoal  agoal result season
date     league                                                  
05/10/14 D1      M'gladbach     Mainz      1      1      D  14-15
         D1       Wolfsburg  Augsburg      1      0      H  14-15
('05/10/14', 'I1')
                       home      away  hgoal  agoal result season
date     league                                                  
05/10/14 I1          Empoli   Palermo      3      0      H  14-15
         I1      Fiorentina     Inter      3      0      H  14-15
         I1        Juventus      Roma      3      2      H  14-15
         I1           Lazio  Sassuolo      3      2      H  14-15
         I1          Napoli    Torino      2      1      H  14-15
         I1           Parma     Genoa      1      2      A  14-15
         I1       Sampdoria  Atalanta      1      0      H  14-15
         I1         Udinese    Cesena      1      1      D  14-15
('05/10/14', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
05/10/14 SP1           Celta  Villarreal      1      3      A  14-15
         SP1         Espanol    Sociedad      2      0      H  14-15
         SP1     Real Madrid  Ath Bilbao      5      0      H  14-15
         SP1         Sevilla   La Coruna      4      1      H  14-15
('05/10/14', 'T1')
                          home                  away  hgoal  agoal result  \
date     league                                                             
05/10/14 T1      Balikesirspor              Besiktas      0      1      A   
         T1         Buyuksehyr  Akhisar Belediyespor      4      0      H   
         T1      Eskisehirspor              Rizespor      1      2      A   
         T1        Karabukspor           Trabzonspor      3      0      H   

                season  
date     league         
05/10/14 T1      14-15  
         T1      14-15  
         T1      14-15  
         T1      14-15  
('05/11/11', 'D1')
                          home            away  hgoal  agoal result season
date     league                                                           
05/11/11 D1           Dortmund       Wolfsburg      5      1      H  11-12
         D1             Hertha      M'gladbach      1      2      A  11-12
         D1         Hoffenheim  Kaiserslautern      1      1      D  11-12
         D1         Leverkusen         Hamburg      2      2      D  11-12
         D1           Nurnberg        Freiburg      1      2      A  11-12
         D1      Werder Bremen         FC Koln      3      2      H  11-12
('05/11/11', 'E2')
                               home              away  hgoal  agoal result  \
date     league                                                              
05/11/11 E2             Bournemouth        Scunthorpe      2      0      H   
         E2                Charlton           Preston      5      2      H   
         E2            Chesterfield            Yeovil      2      2      D   
         E2                  Exeter          Carlisle      0      0      D   
         E2            Huddersfield           Walsall      1      1      D   
         E2           Leyton Orient        Hartlepool      1      1      D   
         E2      Milton Keynes Dons          Rochdale      3      1      H   
         E2            Notts County           Wycombe      1      1      D   
         E2                  Oldham              Bury      0      2      A   
         E2          Sheffield Weds         Brentford      0      0      D   
         E2               Stevenage  Sheffield United      2      1      H   
         E2                Tranmere        Colchester      0      0      D   

                season  
date     league         
05/11/11 E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
('05/11/11', 'I1')
                    home     away  hgoal  agoal result season
date     league                                              
05/11/11 I1       Novara     Roma      0      2      A  11-12
         I1      Palermo  Bologna      3      1      H  11-12
('05/11/11', 'SP1')
                     home      away  hgoal  agoal result season
date     league                                                
05/11/11 SP1        Betis    Malaga      0      0      D  11-12
         SP1      Levante  Valencia      0      2      A  11-12
         SP1     Mallorca   Sevilla      0      0      D  11-12
('05/11/11', 'T1')
                        home                away  hgoal  agoal result season
date     league                                                             
05/11/11 T1      Galatasaray  Mersin Idman Yurdu      0      0      D  11-12
         T1      Karabukspor       Eskisehirspor      1      2      A  11-12
         T1       Manisaspor         Antalyaspor      1      0      H  11-12
         T1         Orduspor       Gaziantepspor      0      0      D  11-12
('05/11/12', 'SP1')
                   home   away  hgoal  agoal result season
date     league                                           
05/11/12 SP1     Getafe  Betis      2      4      A  12-13
('05/11/12', 'T1')
                        home         away  hgoal  agoal result season
date     league                                                      
05/11/12 T1      Antalyaspor  Trabzonspor      2      1      H  12-13
         T1        Bursaspor    Kasimpasa      1      2      A  12-13
('05/11/13', 'E2')
                         home          away  hgoal  agoal result season
date     league                                                        
05/11/13 E2      Bristol City  Crawley Town      2      0      H  13-14
         E2          Carlisle        Wolves      2      2      D  13-14
('05/12/11', 'I1')
                  home    away  hgoal  agoal result season
date     league                                           
05/12/11 I1      Lazio  Novara      3      0      H  11-12
('05/12/11', 'SP1')
                    home    away  hgoal  agoal result season
date     league                                             
05/12/11 SP1     Sevilla  Getafe      3      0      H  11-12
('05/12/11', 'T1')
                     home      away  hgoal  agoal result season
date     league                                                
05/12/11 T1      Besiktas  Orduspor      2      1      H  11-12
('05/12/14', 'D1')
                     home        away  hgoal  agoal result season
date     league                                                  
05/12/14 D1      Dortmund  Hoffenheim      1      0      H  14-15
('05/12/14', 'I1')
                       home      away  hgoal  agoal result season
date     league                                                  
05/12/14 I1      Fiorentina  Juventus      0      0      D  14-15
('05/12/15', 'D1')
                       home           away  hgoal  agoal result season
date     league                                                       
05/12/15 D1         FC Koln       Augsburg      0      1      A  15-16
         D1         Hamburg          Mainz      1      3      A  15-16
         D1          Hertha     Leverkusen      2      1      H  15-16
         D1      Ingolstadt     Hoffenheim      1      1      D  15-16
         D1      M'gladbach  Bayern Munich      3      1      H  15-16
         D1       Wolfsburg       Dortmund      1      2      A  15-16
('05/12/15', 'I1')
                   home   away  hgoal  agoal result season
date     league                                           
05/12/15 I1       Inter  Genoa      1      0      H  15-16
         I1      Torino   Roma      1      1      D  15-16
('05/12/15', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
05/12/15 SP1           Betis       Celta      1      1      D  15-16
         SP1         Granada  Ath Madrid      0      2      A  15-16
         SP1       La Coruna     Sevilla      1      1      D  15-16
         SP1     Real Madrid      Getafe      4      1      H  15-16
         SP1        Valencia   Barcelona      1      1      D  15-16
('05/12/15', 'T1')
                        home         away  hgoal  agoal result season
date     league                                                      
05/12/15 T1      Kayserispor     Besiktas      1      2      A  15-16
         T1        Konyaspor  Antalyaspor      3      2      H  15-16
         T1      Osmanlispor    Kasimpasa      0      1      A  15-16
('06/01/12', 'E2')
                    home          away  hgoal  agoal result season
date     league                                                   
06/01/12 E2      Wycombe  Huddersfield      0      6      A  11-12
('06/01/13', 'I1')
                       home       away  hgoal  agoal result season
date     league                                                   
06/01/13 I1          Chievo   Atalanta      1      0      H  12-13
         I1      Fiorentina    Pescara      0      2      A  12-13
         I1           Genoa    Bologna      2      0      H  12-13
         I1        Juventus  Sampdoria      1      2      A  12-13
         I1           Milan      Siena      2      1      H  12-13
         I1          Napoli       Roma      4      1      H  12-13
         I1           Parma    Palermo      2      1      H  12-13
         I1         Udinese      Inter      3      0      H  12-13
('06/01/13', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
06/01/13 SP1       Barcelona     Espanol      4      0      H  12-13
         SP1           Celta  Valladolid      3      1      H  12-13
         SP1        Mallorca  Ath Madrid      1      1      D  12-13
         SP1     Real Madrid    Sociedad      4      3      H  12-13
('06/01/14', 'I1')
                    home       away  hgoal  agoal result season
date     league                                                
06/01/14 I1      Catania    Bologna      2      0      H  13-14
         I1        Genoa   Sassuolo      2      0      H  13-14
         I1        Lazio      Inter      1      0      H  13-14
         I1        Milan   Atalanta      3      0      H  13-14
         I1       Napoli  Sampdoria      2      0      H  13-14
         I1        Parma     Torino      3      1      H  13-14
         I1      Udinese     Verona      1      3      A  13-14
('06/01/14', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
06/01/14 SP1     Real Madrid       Celta      3      0      H  13-14
         SP1       Vallecano  Villarreal      2      5      A  13-14
('06/01/15', 'I1')
                     home        away  hgoal  agoal result season
date     league                                                  
06/01/15 I1        Cesena      Napoli      1      4      A  14-15
         I1        Chievo      Torino      0      0      D  14-15
         I1        Empoli      Verona      0      0      D  14-15
         I1         Genoa    Atalanta      2      2      D  14-15
         I1      Juventus       Inter      1      1      D  14-15
         I1         Milan    Sassuolo      1      2      A  14-15
         I1       Palermo    Cagliari      5      0      H  14-15
         I1         Parma  Fiorentina      1      0      H  14-15
         I1       Udinese        Roma      0      1      A  14-15
('06/01/16', 'I1')
                     home        away  hgoal  agoal result season
date     league                                                  
06/01/16 I1        Chievo        Roma      3      3      D  15-16
         I1        Empoli       Inter      0      1      A  15-16
         I1      Juventus      Verona      3      0      H  15-16
         I1         Lazio       Carpi      0      0      D  15-16
         I1         Milan     Bologna      0      1      A  15-16
         I1        Napoli      Torino      2      1      H  15-16
         I1       Palermo  Fiorentina      1      3      A  15-16
         I1      Sassuolo   Frosinone      2      2      D  15-16
         I1       Udinese    Atalanta      2      1      H  15-16
('06/02/12', 'SP1')
                    home    away  hgoal  agoal result season
date     league                                             
06/02/12 SP1     Granada  Malaga      2      1      H  11-12
('06/02/12', 'T1')
                          home        away  hgoal  agoal result season
date     league                                                       
06/02/12 T1         Ankaragucu  Manisaspor      0      1      A  11-12
         T1      Eskisehirspor  Buyuksehyr      3      1      H  11-12
         T1        Karabukspor  Samsunspor      2      1      H  11-12
('06/02/15', 'D1')
                       home        away  hgoal  agoal result season
date     league                                                    
06/02/15 D1      Schalke 04  M'gladbach      1      0      H  14-15
('06/02/15', 'SP1')
                      home   away  hgoal  agoal result season
date     league                                              
06/02/15 SP1     La Coruna  Eibar      2      0      H  14-15
('06/02/15', 'T1')
                       home         away  hgoal  agoal result season
date     league                                                     
06/02/15 T1      Buyuksehyr  Karabukspor      2      2      D  14-15
('06/02/16', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
06/02/16 D1      Ein Frankfurt      Stuttgart      2      4      A  15-16
         D1           Hannover          Mainz      0      1      A  15-16
         D1             Hertha       Dortmund      0      0      D  15-16
         D1         Ingolstadt       Augsburg      2      1      H  15-16
         D1         Leverkusen  Bayern Munich      0      0      D  15-16
         D1         Schalke 04      Wolfsburg      3      0      H  15-16
('06/02/16', 'E2')
                             home        away  hgoal  agoal result season
date     league                                                          
06/02/16 E2                Burton    Bradford      3      1      H  15-16
         E2          Chesterfield   Peterboro      0      1      A  15-16
         E2                 Crewe    Rochdale      2      0      H  15-16
         E2            Gillingham     Swindon      0      0      D  15-16
         E2      Sheffield United       Wigan      0      2      A  15-16
         E2              Southend  Colchester      3      0      H  15-16
         E2               Walsall    Millwall      0      3      A  15-16
('06/02/16', 'I1')
                    home        away  hgoal  agoal result season
date     league                                                 
06/02/16 I1      Bologna  Fiorentina      1      1      D  15-16
         I1        Genoa       Lazio      0      0      D  15-16
('06/02/16', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
06/02/16 SP1     Ath Bilbao  Villarreal      0      0      D  15-16
         SP1     Ath Madrid       Eibar      3      1      H  15-16
         SP1       Sp Gijon   La Coruna      1      1      D  15-16
         SP1      Vallecano  Las Palmas      2      0      H  15-16
('06/02/16', 'T1')
                        home                away  hgoal  agoal result season
date     league                                                             
06/02/16 T1        Bursaspor          Buyuksehyr      3      3      D  15-16
         T1      Galatasaray           Konyaspor      0      0      D  15-16
         T1      Kayserispor  Mersin Idman Yurdu      0      1      A  15-16
('06/03/12', 'E2')
                               home              away  hgoal  agoal result  \
date     league                                                              
06/03/12 E2               Brentford            Exeter      2      0      H   
         E2                Carlisle          Rochdale      2      1      H   
         E2                Charlton        Colchester      0      2      A   
         E2            Huddersfield        Hartlepool      1      0      H   
         E2      Milton Keynes Dons            Yeovil      0      1      A   
         E2                  Oldham        Scunthorpe      1      2      A   
         E2                 Preston      Chesterfield      0      0      D   
         E2          Sheffield Weds              Bury      4      1      H   
         E2                Tranmere      Notts County      1      1      D   
         E2                 Walsall  Sheffield United      3      2      H   
         E2                 Wycombe     Leyton Orient      4      2      H   

                season  
date     league         
06/03/12 E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
('06/03/13', 'E2')
                         home           away  hgoal  agoal result season
date     league                                                         
06/03/13 E2      Notts County  Leyton Orient      1      1      D  12-13
('06/03/15', 'D1')
                      home    away  hgoal  agoal result season
date     league                                               
06/03/15 D1      Stuttgart  Hertha      0      0      D  14-15
('06/03/15', 'SP1')
                    home   away  hgoal  agoal result season
date     league                                            
06/03/15 SP1     Levante  Eibar      2      1      H  14-15
('06/03/15', 'T1')
                      home                  away  hgoal  agoal result season
date     league                                                             
06/03/15 T1      Kasimpasa  Akhisar Belediyespor      2      2      D  14-15
('06/03/16', 'D1')
                    home       away  hgoal  agoal result season
date     league                                                
06/03/16 D1      Hamburg     Hertha      2      0      H  15-16
         D1        Mainz  Darmstadt      0      0      D  15-16
('06/03/16', 'I1')
                      home      away  hgoal  agoal result season
date     league                                                 
06/03/16 I1       Atalanta  Juventus      0      2      A  15-16
         I1        Bologna     Carpi      0      0      D  15-16
         I1      Frosinone   Udinese      2      0      H  15-16
         I1          Genoa    Empoli      1      0      H  15-16
         I1          Inter   Palermo      3      1      H  15-16
         I1       Sassuolo     Milan      2      0      H  15-16
         I1         Torino     Lazio      1      1      D  15-16
('06/03/16', 'SP1')
                     home        away  hgoal  agoal result season
date     league                                                  
06/03/16 SP1        Betis     Granada      2      0      H  15-16
         SP1        Eibar   Barcelona      0      4      A  15-16
         SP1     Sociedad     Levante      1      1      D  15-16
         SP1     Sp Gijon  Ath Bilbao      0      2      A  15-16
         SP1     Valencia  Ath Madrid      1      3      A  15-16
('06/03/16', 'T1')
                                 home         away  hgoal  agoal result season
date     league                                                               
06/03/16 T1      Akhisar Belediyespor   Fenerbahce      0      3      A  15-16
         T1               Galatasaray   Buyuksehyr      3      3      D  15-16
         T1                 Kasimpasa  Antalyaspor      2      1      H  15-16
         T1                 Konyaspor  Trabzonspor      2      0      H  15-16
('06/04/12', 'E2')
                          home          away  hgoal  agoal result season
date     league                                                         
06/04/12 E2         Colchester    Hartlepool      1      1      D  11-12
         E2      Leyton Orient  Notts County      0      3      A  11-12
         E2         Scunthorpe        Exeter      1      0      H  11-12
         E2           Tranmere     Stevenage      3      0      H  11-12
         E2            Wycombe      Carlisle      1      1      D  11-12
('06/04/12', 'T1')
                        home      away  hgoal  agoal result season
date     league                                                   
06/04/12 T1      Karabukspor  Besiktas      1      1      D  11-12
('06/04/13', 'D1')
                          home            away  hgoal  agoal result season
date     league                                                           
06/04/13 D1           Dortmund        Augsburg      4      2      H  12-13
         D1      Ein Frankfurt   Bayern Munich      0      1      A  12-13
         D1            Hamburg        Freiburg      0      1      A  12-13
         D1         Leverkusen       Wolfsburg      1      1      D  12-13
         D1         M'gladbach  Greuther Furth      1      0      H  12-13
         D1      Werder Bremen      Schalke 04      0      2      A  12-13
('06/04/13', 'E2')
                               home              away  hgoal  agoal result  \
date     league                                                              
06/04/13 E2             Bournemouth      Notts County      3      1      H   
         E2              Colchester     Leyton Orient      2      1      H   
         E2                Coventry         Brentford      1      1      D   
         E2               Doncaster          Tranmere      1      0      H   
         E2              Hartlepool              Bury      2      0      H   
         E2      Milton Keynes Dons      Crawley Town      0      0      D   
         E2                  Oldham          Carlisle      1      2      A   
         E2              Portsmouth         Stevenage      0      0      D   
         E2                 Preston        Scunthorpe      3      0      H   
         E2                 Walsall  Sheffield United      1      1      D   
         E2                  Yeovil        Shrewsbury      2      1      H   

                season  
date     league         
06/04/13 E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
('06/04/13', 'I1')
                     home     away  hgoal  agoal result season
date     league                                               
06/04/13 I1       Bologna   Torino      2      2      D  12-13
         I1      Juventus  Pescara      2      1      H  12-13
('06/04/13', 'SP1')
                        home      away  hgoal  agoal result season
date     league                                                   
06/04/13 SP1       Barcelona  Mallorca      5      0      H  12-13
         SP1       La Coruna  Zaragoza      3      2      H  12-13
         SP1     Real Madrid   Levante      5      1      H  12-13
         SP1        Sociedad    Malaga      4      2      H  12-13
('06/04/13', 'T1')
                        home                away  hgoal  agoal result season
date     league                                                             
06/04/13 T1       Buyuksehyr         Karabukspor      2      2      D  12-13
         T1      Galatasaray  Mersin Idman Yurdu      3      1      H  12-13
         T1      Kayserispor          Elazigspor      4      1      H  12-13
('06/04/14', 'D1')
                         home        away  hgoal  agoal result season
date     league                                                      
06/04/14 D1      Braunschweig    Hannover      3      0      H  13-14
         D1            Hertha  Hoffenheim      1      1      D  13-14
('06/04/14', 'I1')
                       home       away  hgoal  agoal result season
date     league                                                   
06/04/14 I1        Atalanta   Sassuolo      0      2      A  13-14
         I1        Cagliari       Roma      1      3      A  13-14
         I1         Catania     Torino      1      2      A  13-14
         I1      Fiorentina    Udinese      2      1      H  13-14
         I1           Lazio  Sampdoria      2      0      H  13-14
         I1           Parma     Napoli      1      0      H  13-14
('06/04/14', 'SP1')
                       home      away  hgoal  agoal result season
date     league                                                  
06/04/14 SP1          Elche    Getafe      1      0      H  13-14
         SP1         Malaga   Granada      4      1      H  13-14
         SP1        Sevilla   Espanol      4      1      H  13-14
         SP1     Valladolid  Valencia      0      0      D  13-14
('06/04/14', 'T1')
                        home        away  hgoal  agoal result season
date     league                                                     
06/04/14 T1        Bursaspor   Sivasspor      4      3      H  13-14
         T1      Erciyesspor  Elazigspor      3      0      H  13-14
         T1      Galatasaray  Fenerbahce      1      0      H  13-14
('06/04/15', 'E2')
                           home        away  hgoal  agoal result season
date     league                                                        
06/04/15 E2            Bradford     Preston      0      3      A  14-15
         E2        Chesterfield       Crewe      1      0      H  14-15
         E2          Colchester    Barnsley      3      1      H  14-15
         E2        Crawley Town      Oldham      2      0      H  14-15
         E2      Fleetwood Town      Yeovil      4      0      H  14-15
         E2       Leyton Orient  Gillingham      3      3      D  14-15
         E2        Notts County    Coventry      0      0      D  14-15
         E2           Peterboro     Walsall      0      0      D  14-15
         E2            Rochdale   Port Vale      1      0      H  14-15
('06/04/15', 'SP1')
                    home   away  hgoal  agoal result season
date     league                                            
06/04/15 SP1     Espanol  Elche      1      1      D  14-15
('06/04/15', 'T1')
                     home        away  hgoal  agoal result season
date     league                                                  
06/04/15 T1      Besiktas  Buyuksehyr      0      0      D  14-15
('06/05/12', 'I1')
                     home      away  hgoal  agoal result season
date     league                                                
06/05/12 I1      Atalanta     Lazio      0      2      A  11-12
         I1       Bologna    Napoli      2      0      H  11-12
         I1      Cagliari  Juventus      0      2      A  11-12
         I1         Inter     Milan      4      2      H  11-12
         I1        Novara    Cesena      3      0      H  11-12
         I1       Palermo    Chievo      4      4      D  11-12
         I1         Siena     Parma      0      2      A  11-12
         I1       Udinese     Genoa      2      0      H  11-12
('06/05/13', 'SP1')
                   home      away  hgoal  agoal result season
date     league                                              
06/05/13 SP1     Getafe  Sociedad      2      1      H  12-13
('06/05/14', 'I1')
                       home      away  hgoal  agoal result season
date     league                                                  
06/05/14 I1      Fiorentina  Sassuolo      3      4      A  13-14
         I1          Napoli  Cagliari      3      0      H  13-14
('06/05/15', 'I1')
                   home    away  hgoal  agoal result season
date     league                                            
06/05/15 I1      Torino  Empoli      0      1      A  14-15
('06/08/11', 'D1')
                          home            away  hgoal  agoal result season
date     league                                                           
06/08/11 D1           Augsburg        Freiburg      2      2      D  11-12
         D1            FC Koln       Wolfsburg      0      3      A  11-12
         D1           Hannover      Hoffenheim      2      1      H  11-12
         D1             Hertha        Nurnberg      0      1      A  11-12
         D1          Stuttgart      Schalke 04      3      0      H  11-12
         D1      Werder Bremen  Kaiserslautern      2      0      H  11-12
('06/08/11', 'E2')
                               home              away  hgoal  agoal result  \
date     league                                                              
06/08/11 E2               Brentford            Yeovil      2      0      H   
         E2                Carlisle      Notts County      0      3      A   
         E2                Charlton       Bournemouth      3      0      H   
         E2            Huddersfield              Bury      1      1      D   
         E2      Milton Keynes Dons        Hartlepool      2      2      D   
         E2                  Oldham  Sheffield United      0      2      A   
         E2                 Preston        Colchester      2      4      A   
         E2          Sheffield Weds          Rochdale      2      0      H   
         E2               Stevenage            Exeter      0      0      D   
         E2                Tranmere      Chesterfield      1      0      H   
         E2                 Walsall     Leyton Orient      1      0      H   
         E2                 Wycombe        Scunthorpe      1      1      D   

                season  
date     league         
06/08/11 E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
('06/09/14', 'E2')
                         home            away  hgoal  agoal result season
date     league                                                          
06/09/14 E2          Bradford          Yeovil      1      3      A  14-15
         E2      Bristol City      Scunthorpe      2      0      H  14-15
         E2      Crawley Town        Rochdale      0      4      A  14-15
         E2            Oldham  Fleetwood Town      1      0      H  14-15
         E2         Peterboro       Port Vale      3      1      H  14-15
         E2           Walsall      Colchester      0      0      D  14-15
('06/09/15', 'E2')
                   home      away  hgoal  agoal result season
date     league                                              
06/09/15 E2      Burton  Coventry      1      2      A  15-16
('06/10/12', 'D1')
                           home                away  hgoal  agoal result  \
date     league                                                            
06/10/12 D1       Bayern Munich          Hoffenheim      2      0      H   
         D1            Freiburg            Nurnberg      3      0      H   
         D1      Greuther Furth             Hamburg      0      1      A   
         D1               Mainz  Fortuna Dusseldorf      1      0      H   
         D1          Schalke 04           Wolfsburg      3      0      H   

                season  
date     league         
06/10/12 D1      12-13  
         D1      12-13  
         D1      12-13  
         D1      12-13  
         D1      12-13  
('06/10/12', 'E2')
                               home              away  hgoal  agoal result  \
date     league                                                              
06/10/12 E2               Brentford      Crawley Town      2      1      H   
         E2                    Bury           Swindon      0      1      A   
         E2                Coventry       Bournemouth      1      0      H   
         E2                   Crewe        Hartlepool      2      1      H   
         E2               Doncaster        Shrewsbury      1      0      H   
         E2           Leyton Orient  Sheffield United      0      1      A   
         E2      Milton Keynes Dons        Portsmouth      2      2      D   
         E2            Notts County          Tranmere      0      1      A   
         E2                  Oldham           Preston      3      1      H   
         E2               Stevenage        Scunthorpe      1      0      H   
         E2                 Walsall          Carlisle      1      2      A   
         E2                  Yeovil        Colchester      3      1      H   

                season  
date     league         
06/10/12 E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
('06/10/12', 'I1')
                   home       away  hgoal  agoal result season
date     league                                               
06/10/12 I1      Chievo  Sampdoria      2      1      H  12-13
         I1       Genoa    Palermo      1      1      D  12-13
('06/10/12', 'SP1')
                       home       away  hgoal  agoal result season
date     league                                                   
06/10/12 SP1          Betis   Sociedad      2      0      H  12-13
         SP1     Valladolid    Espanol      1      1      D  12-13
         SP1      Vallecano  La Coruna      2      1      H  12-13
         SP1       Zaragoza     Getafe      0      1      A  12-13
('06/10/12', 'T1')
                        home                  away  hgoal  agoal result season
date     league                                                               
06/10/12 T1       Buyuksehyr        Genclerbirligi      0      2      A  12-13
         T1       Elazigspor  Akhisar Belediyespor      0      0      D  12-13
         T1      Galatasaray         Eskisehirspor      1      1      D  12-13
('06/10/13', 'D1')
                     home           away  hgoal  agoal result season
date     league                                                     
06/10/13 D1      Freiburg  Ein Frankfurt      1      1      D  13-14
         D1      Nurnberg        Hamburg      0      5      A  13-14
('06/10/13', 'I1')
                      home        away  hgoal  agoal result season
date     league                                                   
06/10/13 I1        Bologna      Verona      1      4      A  13-14
         I1        Catania       Genoa      1      1      D  13-14
         I1       Juventus       Milan      3      2      H  13-14
         I1          Lazio  Fiorentina      0      0      D  13-14
         I1         Napoli     Livorno      4      0      H  13-14
         I1          Parma    Sassuolo      3      1      H  13-14
         I1      Sampdoria      Torino      2      2      D  13-14
         I1        Udinese    Cagliari      2      0      H  13-14
('06/10/13', 'SP1')
                       home      away  hgoal  agoal result season
date     league                                                  
06/10/13 SP1     Ath Bilbao  Valencia      1      1      D  13-14
         SP1     Ath Madrid     Celta      2      1      H  13-14
         SP1         Getafe     Betis      3      1      H  13-14
         SP1        Sevilla   Almeria      2      1      H  13-14
('06/10/13', 'T1')
                                 home            away  hgoal  agoal result  \
date     league                                                              
06/10/13 T1      Akhisar Belediyespor     Galatasaray      2      1      H   
         T1                Fenerbahce     Trabzonspor      0      0      D   
         T1                 Kasimpasa      Elazigspor      4      0      H   
         T1                  Rizespor     Antalyaspor      1      2      A   
         T1                 Sivasspor  Genclerbirligi      2      0      H   

                season  
date     league         
06/10/13 T1      13-14  
         T1      13-14  
         T1      13-14  
         T1      13-14  
         T1      13-14  
('06/11/11', 'D1')
                     home           away  hgoal  agoal result season
date     league                                                     
06/11/11 D1      Augsburg  Bayern Munich      1      2      A  11-12
         D1      Hannover     Schalke 04      2      2      D  11-12
('06/11/11', 'I1')
                     home        away  hgoal  agoal result season
date     league                                                  
06/11/11 I1      Atalanta    Cagliari      1      0      H  11-12
         I1        Cesena       Lecce      0      1      A  11-12
         I1        Chievo  Fiorentina      1      0      H  11-12
         I1         Lazio       Parma      1      0      H  11-12
         I1         Milan     Catania      4      0      H  11-12
         I1       Udinese       Siena      2      1      H  11-12
('06/11/11', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
06/11/11 SP1      Ath Bilbao   Barcelona      2      2      D  11-12
         SP1         Espanol  Villarreal      0      0      D  11-12
         SP1          Getafe  Ath Madrid      3      2      H  11-12
         SP1         Granada   Santander      0      0      D  11-12
         SP1     Real Madrid     Osasuna      7      1      H  11-12
         SP1       Vallecano    Sociedad      4      0      H  11-12
         SP1        Zaragoza    Sp Gijon      2      2      D  11-12
('06/11/11', 'T1')
                           home         away  hgoal  agoal result season
date     league                                                         
06/11/11 T1          Buyuksehyr    Bursaspor      0      0      D  11-12
         T1      Genclerbirligi     Besiktas      4      2      H  11-12
         T1         Trabzonspor  Kayserispor      2      1      H  11-12
('06/11/12', 'E2')
                        home              away  hgoal  agoal result season
date     league                                                           
06/11/12 E2      Bournemouth        Shrewsbury      2      1      H  12-13
         E2       Colchester      Notts County      0      2      A  12-13
         E2         Coventry      Crawley Town      3      1      H  12-13
         E2        Doncaster             Crewe      0      2      A  12-13
         E2           Oldham              Bury      1      2      A  12-13
         E2       Portsmouth         Brentford      0      1      A  12-13
         E2          Preston          Carlisle      1      1      D  12-13
         E2          Swindon  Sheffield United      0      0      D  12-13
         E2          Walsall        Scunthorpe      1      4      A  12-13
         E2           Yeovil         Stevenage      1      3      A  12-13
('06/11/15', 'D1')
                     home    away  hgoal  agoal result season
date     league                                              
06/11/15 D1      Hannover  Hertha      1      3      A  15-16
('06/11/15', 'SP1')
                       home      away  hgoal  agoal result season
date     league                                                  
06/11/15 SP1     Las Palmas  Sociedad      2      0      H  15-16
('06/11/15', 'T1')
                           home                away  hgoal  agoal result  \
date     league                                                            
06/11/15 T1       Eskisehirspor         Osmanlispor      0      2      A   
         T1      Genclerbirligi  Mersin Idman Yurdu      1      1      D   

                season  
date     league         
06/11/15 T1      15-16  
         T1      15-16  
('06/12/13', 'D1')
                     home   away  hgoal  agoal result season
date     league                                             
06/12/13 D1      Nurnberg  Mainz      1      1      D  13-14
('06/12/13', 'I1')
                    home      away  hgoal  agoal result season
date     league                                               
06/12/13 I1      Bologna  Juventus      0      2      A  13-14
('06/12/13', 'T1')
                        home        away  hgoal  agoal result season
date     league                                                     
06/12/13 T1      Galatasaray  Elazigspor      2      0      H  13-14
('06/12/14', 'D1')
                          home        away  hgoal  agoal result season
date     league                                                       
06/12/14 D1      Bayern Munich  Leverkusen      1      0      H  14-15
         D1            FC Koln    Augsburg      1      2      A  14-15
         D1           Hannover   Wolfsburg      1      3      A  14-15
         D1         M'gladbach      Hertha      3      2      H  14-15
         D1          Paderborn    Freiburg      1      1      D  14-15
         D1          Stuttgart  Schalke 04      0      4      A  14-15
('06/12/14', 'I1')
                   home      away  hgoal  agoal result season
date     league                                              
06/12/14 I1        Roma  Sassuolo      2      2      D  14-15
         I1      Torino   Palermo      2      2      D  14-15
('06/12/14', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
06/12/14 SP1      Ath Bilbao     Cordoba      0      1      A  14-15
         SP1           Elche  Ath Madrid      0      2      A  14-15
         SP1       La Coruna      Malaga      0      1      A  14-15
         SP1     Real Madrid       Celta      3      0      H  14-15
('06/12/14', 'T1')
                           home                  away  hgoal  agoal result  \
date     league                                                              
06/12/14 T1       Balikesirspor            Fenerbahce      0      1      A   
         T1         Galatasaray  Akhisar Belediyespor      2      1      H   
         T1      Genclerbirligi         Gaziantepspor      2      0      H   
         T1           Konyaspor    Mersin Idman Yurdu      2      0      H   

                season  
date     league         
06/12/14 T1      14-15  
         T1      14-15  
         T1      14-15  
         T1      14-15  
('06/12/15', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
06/12/15 D1      Ein Frankfurt      Darmstadt      0      1      A  15-16
         D1          Stuttgart  Werder Bremen      1      1      D  15-16
('06/12/15', 'I1')
                       home      away  hgoal  agoal result season
date     league                                                  
06/12/15 I1        Atalanta   Palermo      3      0      H  15-16
         I1         Bologna    Napoli      3      2      H  15-16
         I1           Carpi     Milan      0      0      D  15-16
         I1      Fiorentina   Udinese      3      0      H  15-16
         I1       Frosinone    Chievo      0      2      A  15-16
         I1       Sampdoria  Sassuolo      1      3      A  15-16
         I1          Verona    Empoli      0      1      A  15-16
('06/12/15', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
06/12/15 SP1     Ath Bilbao      Malaga      0      0      D  15-16
         SP1       Sociedad       Eibar      2      1      H  15-16
         SP1       Sp Gijon  Las Palmas      3      1      H  15-16
         SP1     Villarreal   Vallecano      2      1      H  15-16
('06/12/15', 'T1')
                               home            away  hgoal  agoal result  \
date     league                                                            
06/12/15 T1              Buyuksehyr  Genclerbirligi      2      0      H   
         T1           Gaziantepspor      Fenerbahce      2      2      D   
         T1      Mersin Idman Yurdu        Rizespor      3      0      H   

                season  
date     league         
06/12/15 T1      15-16  
         T1      15-16  
         T1      15-16  
('07/01/12', 'E2')
                         home           away  hgoal  agoal result season
date     league                                                         
07/01/12 E2          Carlisle  Leyton Orient      4      1      H  11-12
         E2      Chesterfield         Exeter      0      2      A  11-12
         E2        Hartlepool       Rochdale      2      0      H  11-12
         E2          Tranmere      Brentford      2      2      D  11-12
         E2           Walsall    Bournemouth      2      2      D  11-12
('07/01/12', 'I1')
                  home   away  hgoal  agoal result season
date     league                                          
07/01/12 I1      Inter  Parma      5      0      H  11-12
         I1      Siena  Lazio      4      0      H  11-12
('07/01/12', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
07/01/12 SP1         Levante    Mallorca      0      0      D  11-12
         SP1          Malaga  Ath Madrid      0      0      D  11-12
         SP1     Real Madrid     Granada      5      1      H  11-12
         SP1       Santander    Zaragoza      1      0      H  11-12
         SP1        Sociedad     Osasuna      0      0      D  11-12
('07/01/12', 'T1')
                       home                away  hgoal  agoal result season
date     league                                                            
07/01/12 T1       Bursaspor  Mersin Idman Yurdu      1      0      H  11-12
         T1      Buyuksehyr         Trabzonspor      0      2      A  11-12
         T1      Samsunspor         Galatasaray      2      4      A  11-12
('07/01/13', 'SP1')
                      home    away  hgoal  agoal result season
date     league                                               
07/01/13 SP1     Vallecano  Getafe      3      1      H  12-13
('07/01/14', 'E2')
                       home           away  hgoal  agoal result season
date     league                                                       
07/01/14 E2      Shrewsbury  Leyton Orient      0      2      A  13-14
('07/01/16', 'E2')
                  home        away  hgoal  agoal result season
date     league                                               
07/01/16 E2      Wigan  Gillingham      3      2      H  15-16
('07/02/12', 'E2')
                        home    away  hgoal  agoal result season
date     league                                                 
07/02/12 E2      Bournemouth  Exeter      2      0      H  11-12
('07/02/14', 'D1')
                       home        away  hgoal  agoal result season
date     league                                                    
07/02/14 D1      M'gladbach  Leverkusen      0      1      A  13-14
('07/02/14', 'SP1')
                    home     away  hgoal  agoal result season
date     league                                              
07/02/14 SP1     Espanol  Granada      1      0      H  13-14
('07/02/14', 'T1')
                          home       away  hgoal  agoal result season
date     league                                                      
07/02/14 T1      Gaziantepspor   Besiktas      1      2      A  13-14
         T1          Kasimpasa  Konyaspor      1      3      A  13-14
('07/02/15', 'D1')
                      home           away  hgoal  agoal result season
date     league                                                      
07/02/15 D1        FC Koln      Paderborn      0      0      D  14-15
         D1       Freiburg       Dortmund      0      3      A  14-15
         D1        Hamburg       Hannover      2      1      H  14-15
         D1          Mainz         Hertha      0      2      A  14-15
         D1      Stuttgart  Bayern Munich      0      2      A  14-15
         D1      Wolfsburg     Hoffenheim      3      0      H  14-15
('07/02/15', 'E2')
                               home              away  hgoal  agoal result  \
date     league                                                              
07/02/15 E2              Colchester             Crewe      2      3      A   
         E2               Doncaster           Walsall      0      2      A   
         E2          Fleetwood Town         Peterboro      1      1      D   
         E2              Gillingham  Sheffield United      2      0      H   
         E2      Milton Keynes Dons      Bristol City      0      0      D   
         E2            Notts County      Chesterfield      0      1      A   
         E2               Port Vale          Bradford      2      2      D   
         E2                 Preston          Coventry      1      0      H   
         E2              Scunthorpe            Oldham      0      1      A   
         E2                 Swindon          Barnsley      2      0      H   
         E2                  Yeovil      Crawley Town      2      1      H   

                season  
date     league         
07/02/15 E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
('07/02/15', 'I1')
                     home    away  hgoal  agoal result season
date     league                                              
07/02/15 I1      Juventus   Milan      3      1      H  14-15
         I1        Verona  Torino      1      3      A  14-15
('07/02/15', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
07/02/15 SP1     Ath Madrid  Real Madrid      4      0      H  14-15
         SP1        Levante       Malaga      4      1      H  14-15
         SP1       Sociedad        Celta      1      1      D  14-15
         SP1     Villarreal      Granada      2      0      H  14-15
('07/02/15', 'T1')
                        home                  away  hgoal  agoal result season
date     league                                                               
07/02/15 T1      Erciyesspor         Gaziantepspor      0      1      A  14-15
         T1       Fenerbahce           Trabzonspor      0      0      D  14-15
         T1        Sivasspor  Akhisar Belediyespor      2      0      H  14-15
('07/02/16', 'D1')
                       home       away  hgoal  agoal result season
date     league                                                   
07/02/16 D1         Hamburg    FC Koln      1      1      D  15-16
         D1      Hoffenheim  Darmstadt      0      2      A  15-16
('07/02/16', 'E2')
                           home        away  hgoal  agoal result season
date     league                                                        
07/02/16 E2            Barnsley        Bury      3      0      H  15-16
         E2      Fleetwood Town  Shrewsbury      0      0      D  15-16
         E2           Port Vale    Coventry      1      1      D  15-16
('07/02/16', 'I1')
                      home       away  hgoal  agoal result season
date     league                                                  
07/02/16 I1       Atalanta     Empoli      0      0      D  15-16
         I1      Frosinone   Juventus      0      2      A  15-16
         I1          Milan    Udinese      1      1      D  15-16
         I1         Napoli      Carpi      1      0      H  15-16
         I1           Roma  Sampdoria      2      1      H  15-16
         I1       Sassuolo    Palermo      2      2      D  15-16
         I1         Torino     Chievo      1      2      A  15-16
         I1         Verona      Inter      3      3      D  15-16
('07/02/16', 'SP1')
                    home         away  hgoal  agoal result season
date     league                                                  
07/02/16 SP1       Betis     Valencia      1      0      H  15-16
         SP1       Celta      Sevilla      1      1      D  15-16
         SP1     Granada  Real Madrid      1      2      A  15-16
         SP1     Levante    Barcelona      0      2      A  15-16
('07/02/16', 'T1')
                                 home           away  hgoal  agoal result  \
date     league                                                             
07/02/16 T1      Akhisar Belediyespor    Trabzonspor      2      1      H   
         T1                  Besiktas  Gaziantepspor      4      0      H   
         T1                  Rizespor  Eskisehirspor      1      1      D   

                season  
date     league         
07/02/16 T1      15-16  
         T1      15-16  
         T1      15-16  
('07/03/12', 'I1')
                    home        away  hgoal  agoal result season
date     league                                                 
07/03/12 I1      Bologna    Juventus      1      1      D  11-12
         I1       Cesena     Catania      0      0      D  11-12
         I1        Parma  Fiorentina      2      2      D  11-12
('07/03/15', 'D1')
                       home           away  hgoal  agoal result season
date     league                                                       
07/03/15 D1        Augsburg      Wolfsburg      1      0      H  14-15
         D1        Freiburg  Werder Bremen      0      1      A  14-15
         D1         Hamburg       Dortmund      0      0      D  14-15
         D1        Hannover  Bayern Munich      1      3      A  14-15
         D1           Mainz     M'gladbach      2      2      D  14-15
         D1      Schalke 04     Hoffenheim      3      1      H  14-15
('07/03/15', 'E2')
                               home            away  hgoal  agoal result  \
date     league                                                            
07/03/15 E2                Barnsley         Walsall      3      0      H   
         E2                Coventry       Port Vale      2      3      A   
         E2            Crawley Town    Bristol City      1      2      A   
         E2                   Crewe      Scunthorpe      2      0      H   
         E2              Gillingham       Doncaster      1      1      D   
         E2      Milton Keynes Dons         Preston      0      2      A   
         E2               Peterboro   Leyton Orient      1      0      H   
         E2                Rochdale      Colchester      2      1      H   
         E2        Sheffield United  Fleetwood Town      1      2      A   
         E2                 Swindon    Notts County      3      0      H   
         E2                  Yeovil          Oldham      2      1      H   

                season  
date     league         
07/03/15 E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
('07/03/15', 'I1')
                      home      away  hgoal  agoal result season
date     league                                                 
07/03/15 I1          Milan    Verona      2      2      D  14-15
         I1      Sampdoria  Cagliari      2      0      H  14-15
('07/03/15', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
07/03/15 SP1     Ath Bilbao  Real Madrid      1      0      H  14-15
         SP1          Elche      Almeria      1      0      H  14-15
         SP1        Granada       Malaga      1      0      H  14-15
         SP1      La Coruna      Sevilla      3      4      A  14-15
('07/03/15', 'T1')
                          home            away  hgoal  agoal result season
date     league                                                           
07/03/15 T1      Balikesirspor        Rizespor      2      2      D  14-15
         T1        Erciyesspor  Genclerbirligi      2      4      A  14-15
         T1      Eskisehirspor       Bursaspor      0      0      D  14-15
('07/03/16', 'SP1')
                    home       away  hgoal  agoal result season
date     league                                                
07/03/16 SP1     Espanol  Vallecano      2      1      H  15-16
('07/03/16', 'T1')
                     home           away  hgoal  agoal result season
date     league                                                     
07/03/16 T1      Besiktas  Eskisehirspor      3      1      H  15-16
('07/04/12', 'D1')
                           home           away  hgoal  agoal result season
date     league                                                           
07/04/12 D1       Bayern Munich       Augsburg      2      1      H  11-12
         D1             FC Koln  Werder Bremen      1      1      D  11-12
         D1            Freiburg       Nurnberg      2      2      D  11-12
         D1      Kaiserslautern     Hoffenheim      1      2      A  11-12
         D1          M'gladbach         Hertha      0      0      D  11-12
         D1           Stuttgart          Mainz      4      1      H  11-12
         D1           Wolfsburg       Dortmund      1      3      A  11-12
('07/04/12', 'E2')
                             home                away  hgoal  agoal result  \
date     league                                                              
07/04/12 E2             Brentford                Bury      3      0      H   
         E2          Huddersfield      Sheffield Weds      0      2      A   
         E2                Oldham            Charlton      0      1      A   
         E2               Preston  Milton Keynes Dons      1      1      D   
         E2      Sheffield United         Bournemouth      2      1      H   
         E2               Walsall        Chesterfield      3      2      H   
         E2                Yeovil            Rochdale      3      1      H   

                season  
date     league         
07/04/12 E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
('07/04/12', 'I1')
                     home     away  hgoal  agoal result season
date     league                                               
07/04/12 I1      Atalanta    Siena      1      2      A  11-12
         I1      Cagliari    Inter      2      2      D  11-12
         I1        Cesena  Bologna      0      0      D  11-12
         I1        Chievo  Catania      3      2      H  11-12
         I1         Lazio   Napoli      3      1      H  11-12
         I1         Lecce     Roma      4      2      H  11-12
('07/04/12', 'SP1')
                      home        away  hgoal  agoal result season
date     league                                                   
07/04/12 SP1         Betis  Villarreal      3      1      H  11-12
         SP1       Espanol    Sociedad      2      2      D  11-12
         SP1        Getafe    Sp Gijon      2      0      H  11-12
         SP1     Vallecano     Osasuna      6      0      H  11-12
         SP1      Zaragoza   Barcelona      1      4      A  11-12
('07/04/12', 'T1')
                          home                away  hgoal  agoal result season
date     league                                                               
07/04/12 T1         Ankaragucu         Kayserispor      0      5      A  11-12
         T1          Bursaspor       Gaziantepspor      0      2      A  11-12
         T1         Buyuksehyr      Genclerbirligi      1      0      H  11-12
         T1      Eskisehirspor  Mersin Idman Yurdu      2      0      H  11-12
         T1         Fenerbahce         Antalyaspor      2      0      H  11-12
         T1         Samsunspor           Sivasspor      1      2      A  11-12
('07/04/13', 'D1')
                     home       away  hgoal  agoal result season
date     league                                                 
07/04/13 D1      Hannover  Stuttgart      0      0      D  12-13
         D1      Nurnberg      Mainz      2      1      H  12-13
('07/04/13', 'I1')
                       home      away  hgoal  agoal result season
date     league                                                  
07/04/13 I1         Catania  Cagliari      0      0      D  12-13
         I1      Fiorentina     Milan      2      2      D  12-13
         I1           Inter  Atalanta      3      4      A  12-13
         I1          Napoli     Genoa      2      0      H  12-13
('07/04/13', 'SP1')
                     home        away  hgoal  agoal result season
date     league                                                  
07/04/13 SP1        Celta   Vallecano      0      2      A  12-13
         SP1       Getafe  Ath Madrid      0      0      D  12-13
         SP1      Osasuna     Espanol      0      2      A  12-13
         SP1     Valencia  Valladolid      2      1      H  12-13
('07/04/13', 'T1')
                                 home           away  hgoal  agoal result  \
date     league                                                             
07/04/13 T1      Akhisar Belediyespor    Trabzonspor      1      0      H   
         T1             Eskisehirspor      Sivasspor      2      1      H   
         T1            Genclerbirligi  Gaziantepspor      2      2      D   
         T1                  Orduspor     Fenerbahce      0      2      A   

                season  
date     league         
07/04/13 T1      12-13  
         T1      12-13  
         T1      12-13  
         T1      12-13  
('07/04/14', 'I1')
                     home     away  hgoal  agoal result season
date     league                                               
07/04/14 I1         Genoa    Milan      1      2      A  13-14
         I1      Juventus  Livorno      2      0      H  13-14
('07/04/14', 'SP1')
                    home        away  hgoal  agoal result season
date     league                                                 
07/04/14 SP1     Levante  Ath Bilbao      1      2      A  13-14
('07/04/14', 'T1')
                        home            away  hgoal  agoal result season
date     league                                                         
07/04/14 T1      Trabzonspor  Genclerbirligi      3      0      H  13-14
('07/04/15', 'E2')
                               home        away  hgoal  agoal result season
date     league                                                            
07/04/15 E2            Bristol City     Swindon      3      0      H  14-15
         E2      Milton Keynes Dons  Scunthorpe      2      0      H  14-15
         E2        Sheffield United   Doncaster      3      2      H  14-15
('07/04/15', 'SP1')
                       home      away  hgoal  agoal result season
date     league                                                  
07/04/15 SP1     Ath Madrid  Sociedad      2      0      H  14-15
         SP1          Eibar    Malaga      1      0      H  14-15
         SP1        Levante   Sevilla      1      2      A  14-15
('07/05/13', 'I1')
                 home    away  hgoal  agoal result season
date     league                                          
07/05/13 I1      Roma  Chievo      0      1      A  12-13
('07/05/14', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
07/05/14 SP1     Valladolid  Real Madrid      1      1      D  13-14
('07/05/16', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
07/05/16 D1      Ein Frankfurt       Dortmund      1      0      H  15-16
         D1            FC Koln  Werder Bremen      0      0      D  15-16
         D1            Hamburg      Wolfsburg      0      1      A  15-16
         D1           Hannover     Hoffenheim      1      0      H  15-16
         D1             Hertha      Darmstadt      1      2      A  15-16
         D1         Ingolstadt  Bayern Munich      1      2      A  15-16
         D1         M'gladbach     Leverkusen      2      1      H  15-16
         D1         Schalke 04       Augsburg      1      1      D  15-16
         D1          Stuttgart          Mainz      1      3      A  15-16
('07/05/16', 'I1')
                    home    away  hgoal  agoal result season
date     league                                             
07/05/16 I1      Bologna   Milan      0      1      A  15-16
         I1        Inter  Empoli      2      1      H  15-16
('07/05/16', 'T1')
                          home            away  hgoal  agoal result season
date     league                                                           
07/05/16 T1      Gaziantepspor   Eskisehirspor      1      1      D  15-16
         T1        Osmanlispor       Bursaspor      3      3      D  15-16
         T1          Sivasspor  Genclerbirligi      2      1      H  15-16
('07/08/11', 'D1')
                          home        away  hgoal  agoal result season
date     league                                                       
07/08/11 D1      Bayern Munich  M'gladbach      0      1      A  11-12
         D1              Mainz  Leverkusen      2      0      H  11-12
('07/09/13', 'E2')
                               home              away  hgoal  agoal result  \
date     league                                                              
07/09/13 E2                Bradford         Brentford      4      0      H   
         E2                Carlisle         Port Vale      0      1      A   
         E2            Crawley Town        Gillingham      3      2      H   
         E2                   Crewe         Peterboro      2      2      D   
         E2      Milton Keynes Dons           Swindon      1      1      D   
         E2               Rotherham  Sheffield United      3      1      H   
         E2                Tranmere         Stevenage      0      0      D   

                season  
date     league         
07/09/13 E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
('07/10/12', 'D1')
                       home           away  hgoal  agoal result season
date     league                                                       
07/10/12 D1        Hannover       Dortmund      1      1      D  12-13
         D1      M'gladbach  Ein Frankfurt      2      0      H  12-13
         D1       Stuttgart     Leverkusen      2      2      D  12-13
('07/10/12', 'I1')
                       home      away  hgoal  agoal result season
date     league                                                  
07/10/12 I1         Catania     Parma      2      0      H  12-13
         I1      Fiorentina   Bologna      1      0      H  12-13
         I1           Milan     Inter      0      1      A  12-13
         I1          Napoli   Udinese      2      1      H  12-13
         I1         Pescara     Lazio      0      3      A  12-13
         I1            Roma  Atalanta      2      0      H  12-13
         I1           Siena  Juventus      1      2      A  12-13
         I1          Torino  Cagliari      0      1      A  12-13
('07/10/12', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
07/10/12 SP1     Ath Bilbao      Osasuna      1      0      H  12-13
         SP1     Ath Madrid       Malaga      2      1      H  12-13
         SP1      Barcelona  Real Madrid      2      2      D  12-13
         SP1        Levante     Valencia      1      0      H  12-13
         SP1       Mallorca      Granada      1      2      A  12-13
('07/10/12', 'T1')
                               home         away  hgoal  agoal result season
date     league                                                             
07/10/12 T1              Fenerbahce     Besiktas      3      0      H  12-13
         T1      Mersin Idman Yurdu  Kayserispor      1      2      A  12-13
         T1               Sivasspor    Bursaspor      2      2      D  12-13
('07/11/12', 'E2')
                               home           away  hgoal  agoal result season
date     league                                                               
07/11/12 E2              Hartlepool       Tranmere      0      2      A  12-13
         E2      Milton Keynes Dons  Leyton Orient      1      0      H  12-13
('07/11/14', 'D1')
                   home      away  hgoal  agoal result season
date     league                                              
07/11/14 D1      Hertha  Hannover      0      2      A  14-15
('07/11/14', 'SP1')
                    home       away  hgoal  agoal result season
date     league                                                
07/11/14 SP1     Cordoba  La Coruna      0      0      D  14-15
('07/11/14', 'T1')
                          home                  away  hgoal  agoal result  \
date     league                                                             
07/11/14 T1      Gaziantepspor  Akhisar Belediyespor      1      0      H   
         T1          Sivasspor         Eskisehirspor      1      1      D   

                season  
date     league         
07/11/14 T1      14-15  
         T1      14-15  
('07/11/15', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
07/11/15 D1      Bayern Munich      Stuttgart      4      0      H  15-16
         D1          Darmstadt        Hamburg      1      1      D  15-16
         D1         Hoffenheim  Ein Frankfurt      0      0      D  15-16
         D1         Leverkusen        FC Koln      1      2      A  15-16
         D1              Mainz      Wolfsburg      2      0      H  15-16
         D1         M'gladbach     Ingolstadt      0      0      D  15-16
('07/11/15', 'I1')
                   home      away  hgoal  agoal result season
date     league                                              
07/11/15 I1       Milan  Atalanta      0      0      D  15-16
         I1      Verona   Bologna      0      2      A  15-16
('07/11/15', 'SP1')
                      home       away  hgoal  agoal result season
date     league                                                  
07/11/15 SP1         Celta   Valencia      1      5      A  15-16
         SP1         Eibar     Getafe      3      1      H  15-16
         SP1       Levante  La Coruna      1      1      D  15-16
         SP1        Malaga      Betis      0      1      A  15-16
         SP1     Vallecano    Granada      2      1      H  15-16
('07/11/15', 'T1')
                        home                  away  hgoal  agoal result season
date     league                                                               
07/11/15 T1      Antalyaspor           Kayserispor      1      1      D  15-16
         T1       Buyuksehyr           Trabzonspor      1      0      H  15-16
         T1        Kasimpasa  Akhisar Belediyespor      2      1      H  15-16
         T1         Rizespor           Galatasaray      4      3      H  15-16
('07/12/11', 'SP1')
                    home      away  hgoal  agoal result season
date     league                                               
07/12/11 SP1     Granada  Mallorca      2      2      D  11-12
('07/12/11', 'T1')
                          home           away  hgoal  agoal result season
date     league                                                          
07/12/11 T1      Eskisehirspor    Antalyaspor      1      0      H  11-12
         T1        Galatasaray     Fenerbahce      3      1      H  11-12
         T1        Karabukspor  Gaziantepspor      0      0      D  11-12
('07/12/12', 'D1')
                    home        away  hgoal  agoal result season
date     league                                                 
07/12/12 D1      Hamburg  Hoffenheim      2      0      H  12-13
('07/12/12', 'SP1')
                    home     away  hgoal  agoal result season
date     league                                              
07/12/12 SP1     Espanol  Sevilla      2      2      D  12-13
('07/12/12', 'T1')
                       home                away  hgoal  agoal result season
date     league                                                            
07/12/12 T1        Besiktas       Eskisehirspor      2      2      D  12-13
         T1      Elazigspor  Mersin Idman Yurdu      1      0      H  12-13
('07/12/13', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
07/12/13 D1           Dortmund     Leverkusen      0      1      A  13-14
         D1      Ein Frankfurt     Hoffenheim      1      2      A  13-14
         D1            Hamburg       Augsburg      0      1      A  13-14
         D1         M'gladbach     Schalke 04      2      1      H  13-14
         D1          Stuttgart       Hannover      4      2      H  13-14
         D1      Werder Bremen  Bayern Munich      0      7      A  13-14
('07/12/13', 'E2')
                         home        away  hgoal  agoal result season
date     league                                                      
07/12/13 E2      Notts County  Gillingham      3      1      H  13-14
('07/12/13', 'I1')
                    home     away  hgoal  agoal result season
date     league                                              
07/12/13 I1      Livorno    Milan      2      2      D  13-14
         I1       Napoli  Udinese      3      3      D  13-14
('07/12/13', 'T1')
                        home        away  hgoal  agoal result season
date     league                                                     
07/12/13 T1      Antalyaspor   Kasimpasa      1      1      D  13-14
         T1         Rizespor  Fenerbahce      1      2      A  13-14
('07/12/14', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
07/12/14 D1      Ein Frankfurt  Werder Bremen      5      2      H  14-15
         D1            Hamburg          Mainz      2      1      H  14-15
('07/12/14', 'I1')
                     home     away  hgoal  agoal result season
date     league                                               
07/12/14 I1      Atalanta   Cesena      3      2      H  14-15
         I1         Genoa    Milan      1      0      H  14-15
         I1         Inter  Udinese      1      2      A  14-15
         I1        Napoli   Empoli      2      2      D  14-15
         I1         Parma    Lazio      1      2      A  14-15
('07/12/14', 'SP1')
                       home      away  hgoal  agoal result season
date     league                                                  
07/12/14 SP1      Barcelona   Espanol      5      1      H  14-15
         SP1        Granada  Valencia      1      1      D  14-15
         SP1      Vallecano   Sevilla      0      1      A  14-15
         SP1     Villarreal  Sociedad      4      0      H  14-15
('07/12/14', 'T1')
                          home         away  hgoal  agoal result season
date     league                                                        
07/12/14 T1           Besiktas  Trabzonspor      3      0      H  14-15
         T1          Bursaspor    Kasimpasa      5      1      H  14-15
         T1      Eskisehirspor   Buyuksehyr      0      1      A  14-15
         T1           Rizespor  Karabukspor      0      3      A  14-15
('07/12/15', 'SP1')
                    home     away  hgoal  agoal result season
date     league                                              
07/12/15 SP1     Espanol  Levante      1      1      D  15-16
('07/12/15', 'T1')
                                 home           away  hgoal  agoal result  \
date     league                                                             
07/12/15 T1      Akhisar Belediyespor      Sivasspor      1      0      H   
         T1               Trabzonspor  Eskisehirspor      3      1      H   

                season  
date     league         
07/12/15 T1      15-16  
         T1      15-16  
('08/01/12', 'I1')
                     home        away  hgoal  agoal result season
date     league                                                  
08/01/12 I1      Atalanta       Milan      0      2      A  11-12
         I1       Bologna     Catania      2      0      H  11-12
         I1      Cagliari       Genoa      3      0      H  11-12
         I1         Lecce    Juventus      0      1      A  11-12
         I1        Novara  Fiorentina      0      3      A  11-12
         I1       Palermo      Napoli      1      3      A  11-12
         I1          Roma      Chievo      2      0      H  11-12
         I1       Udinese      Cesena      4      1      H  11-12
('08/01/12', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
08/01/12 SP1          Betis    Sp Gijon      2      0      H  11-12
         SP1        Espanol   Barcelona      1      1      D  11-12
         SP1         Getafe  Ath Bilbao      0      0      D  11-12
         SP1      Vallecano     Sevilla      2      1      H  11-12
         SP1     Villarreal    Valencia      2      2      D  11-12
('08/01/12', 'T1')
                          home            away  hgoal  agoal result season
date     league                                                           
08/01/12 T1         Ankaragucu        Besiktas      0      0      D  11-12
         T1        Antalyaspor     Kayserispor      1      0      H  11-12
         T1      Eskisehirspor       Sivasspor      1      1      D  11-12
         T1        Karabukspor  Genclerbirligi      2      1      H  11-12
         T1         Manisaspor        Orduspor      0      0      D  11-12
('08/02/12', 'I1')
                    home  away  hgoal  agoal result season
date     league                                           
08/02/12 I1      Catania  Roma      1      1      D  11-12
('08/02/14', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
08/02/14 D1      Ein Frankfurt   Braunschweig      3      0      H  13-14
         D1           Freiburg     Hoffenheim      1      1      D  13-14
         D1            Hamburg         Hertha      0      3      A  13-14
         D1           Nurnberg  Bayern Munich      0      2      A  13-14
         D1      Werder Bremen       Dortmund      1      5      A  13-14
         D1          Wolfsburg          Mainz      3      0      H  13-14
('08/02/14', 'E2')
                             home                away  hgoal  agoal result  \
date     league                                                              
08/02/14 E2              Bradford               Crewe      3      3      D   
         E2              Carlisle          Gillingham      1      2      A   
         E2         Leyton Orient           Peterboro      1      2      A   
         E2          Notts County            Coventry      3      0      H   
         E2                Oldham        Bristol City      1      1      D   
         E2             Port Vale             Swindon      2      3      A   
         E2      Sheffield United          Shrewsbury      2      0      H   
         E2              Tranmere             Preston      1      2      A   
         E2               Walsall  Milton Keynes Dons      0      3      A   

                season  
date     league         
08/02/14 E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
('08/02/14', 'I1')
                       home      away  hgoal  agoal result season
date     league                                                  
08/02/14 I1      Fiorentina  Atalanta      2      0      H  13-14
         I1          Napoli     Milan      3      1      H  13-14
         I1         Udinese    Chievo      3      0      H  13-14
('08/02/14', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
08/02/14 SP1         Almeria  Ath Madrid      2      0      H  13-14
         SP1     Real Madrid  Villarreal      4      2      H  13-14
         SP1        Valencia       Betis      5      0      H  13-14
         SP1       Vallecano      Malaga      4      1      H  13-14
('08/02/14', 'T1')
                        home           away  hgoal  agoal result season
date     league                                                        
08/02/14 T1      Erciyesspor       Rizespor      1      1      D  13-14
         T1      Galatasaray  Eskisehirspor      3      0      H  13-14
('08/02/15', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
08/02/15 D1           Augsburg  Ein Frankfurt      2      2      D  14-15
         D1      Werder Bremen     Leverkusen      2      1      H  14-15
('08/02/15', 'I1')
                       home      away  hgoal  agoal result season
date     league                                                  
08/02/15 I1        Cagliari      Roma      1      2      A  14-15
         I1          Empoli    Cesena      2      0      H  14-15
         I1      Fiorentina  Atalanta      3      2      H  14-15
         I1           Inter   Palermo      3      0      H  14-15
         I1          Napoli   Udinese      3      1      H  14-15
         I1       Sampdoria  Sassuolo      1      1      D  14-15
('08/02/15', 'SP1')
                       home       away  hgoal  agoal result season
date     league                                                   
08/02/15 SP1     Ath Bilbao  Barcelona      2      5      A  14-15
         SP1        Cordoba    Almeria      1      2      A  14-15
         SP1        Espanol   Valencia      1      2      A  14-15
         SP1         Getafe    Sevilla      2      1      H  14-15
('08/02/15', 'T1')
                               home            away  hgoal  agoal result  \
date     league                                                            
08/02/15 T1           Balikesirspor       Konyaspor      0      1      A   
         T1               Bursaspor  Genclerbirligi      3      1      H   
         T1      Mersin Idman Yurdu       Kasimpasa      6      2      H   
         T1                Rizespor        Besiktas      1      2      A   

                season  
date     league         
08/02/15 T1      14-15  
         T1      14-15  
         T1      14-15  
         T1      14-15  
('08/02/16', 'SP1')
                    home      away  hgoal  agoal result season
date     league                                               
08/02/16 SP1     Espanol  Sociedad      0      5      A  15-16
('08/02/16', 'T1')
                      home            away  hgoal  agoal result season
date     league                                                       
08/02/16 T1      Kasimpasa  Genclerbirligi      0      1      A  15-16
('08/03/13', 'D1')
                     home      away  hgoal  agoal result season
date     league                                                
08/03/13 D1      Augsburg  Nurnberg      1      2      A  12-13
('08/03/13', 'I1')
                  home   away  hgoal  agoal result season
date     league                                          
08/03/13 I1      Genoa  Milan      0      2      A  12-13
('08/03/13', 'SP1')
                  home     away  hgoal  agoal result season
date     league                                            
08/03/13 SP1     Betis  Osasuna      2      1      H  12-13
('08/03/13', 'T1')
                        home            away  hgoal  agoal result season
date     league                                                         
08/03/13 T1      Galatasaray  Genclerbirligi      0      1      A  12-13
('08/03/14', 'D1')
                       home           away  hgoal  agoal result season
date     league                                                       
08/03/14 D1         Hamburg  Ein Frankfurt      1      1      D  13-14
         D1        Hannover     Leverkusen      1      1      D  13-14
         D1      M'gladbach       Augsburg      1      2      A  13-14
         D1        Nurnberg  Werder Bremen      0      2      A  13-14
         D1      Schalke 04     Hoffenheim      4      0      H  13-14
         D1       Stuttgart   Braunschweig      2      2      D  13-14
         D1       Wolfsburg  Bayern Munich      1      6      A  13-14
('08/03/14', 'E2')
                         home                away  hgoal  agoal result season
date     league                                                              
08/03/14 E2         Brentford            Bradford      2      0      H  13-14
         E2        Colchester            Coventry      2      1      H  13-14
         E2        Gillingham        Crawley Town      1      0      H  13-14
         E2      Notts County       Leyton Orient      0      0      D  13-14
         E2            Oldham             Preston      1      3      A  13-14
         E2         Peterboro               Crewe      4      2      H  13-14
         E2         Port Vale            Carlisle      2      1      H  13-14
         E2        Shrewsbury        Bristol City      2      3      A  13-14
         E2         Stevenage            Tranmere      3      1      H  13-14
         E2           Swindon  Milton Keynes Dons      1      2      A  13-14
         E2           Walsall              Wolves      0      3      A  13-14
('08/03/14', 'I1')
                    home      away  hgoal  agoal result season
date     league                                               
08/03/14 I1      Catania  Cagliari      1      1      D  13-14
         I1      Udinese     Milan      1      0      H  13-14
('08/03/14', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
08/03/14 SP1          Betis      Getafe      2      0      H  13-14
         SP1          Celta  Ath Madrid      0      2      A  13-14
         SP1        Granada  Villarreal      2      0      H  13-14
         SP1     Valladolid   Barcelona      1      0      H  13-14
('08/03/14', 'T1')
                        home                  away  hgoal  agoal result season
date     league                                                               
08/03/14 T1        Bursaspor           Karabukspor      1      0      H  13-14
         T1       Elazigspor             Kasimpasa      0      0      D  13-14
         T1      Erciyesspor             Konyaspor      1      0      H  13-14
         T1      Galatasaray  Akhisar Belediyespor      6      1      H  13-14
('08/03/15', 'D1')
                      home           away  hgoal  agoal result season
date     league                                                      
08/03/15 D1        FC Koln  Ein Frankfurt      4      2      H  14-15
         D1      Paderborn     Leverkusen      0      3      A  14-15
('08/03/15', 'I1')
                    home      away  hgoal  agoal result season
date     league                                               
08/03/15 I1       Cesena   Palermo      0      0      D  14-15
         I1       Chievo      Roma      0      0      D  14-15
         I1       Empoli     Genoa      1      1      D  14-15
         I1       Napoli     Inter      2      2      D  14-15
         I1        Parma  Atalanta      0      0      D  14-15
         I1      Udinese    Torino      3      2      H  14-15
('08/03/15', 'SP1')
                       home       away  hgoal  agoal result season
date     league                                                   
08/03/15 SP1     Ath Madrid   Valencia      1      1      D  14-15
         SP1      Barcelona  Vallecano      6      1      H  14-15
         SP1       Sociedad    Espanol      1      0      H  14-15
         SP1     Villarreal      Celta      4      1      H  14-15
('08/03/15', 'T1')
                        home           away  hgoal  agoal result season
date     league                                                        
08/03/15 T1       Buyuksehyr      Konyaspor      0      0      D  14-15
         T1       Fenerbahce    Galatasaray      1      0      H  14-15
         T1      Karabukspor  Gaziantepspor      0      0      D  14-15
         T1        Sivasspor       Besiktas      0      1      A  14-15
('08/03/16', 'E2')
                       home       away  hgoal  agoal result season
date     league                                                   
08/03/16 E2        Bradford     Burton      2      0      H  15-16
         E2      Scunthorpe  Doncaster      2      0      H  15-16
         E2      Shrewsbury   Coventry      2      1      H  15-16
('08/04/12', 'D1')
                       home        away  hgoal  agoal result season
date     league                                                    
08/04/12 D1         Hamburg  Leverkusen      1      1      D  11-12
         D1      Schalke 04    Hannover      3      0      H  11-12
('08/04/12', 'SP1')
                       home     away  hgoal  agoal result season
date     league                                                 
08/04/12 SP1     Ath Bilbao  Sevilla      1      0      H  11-12
('08/04/12', 'T1')
                       home         away  hgoal  agoal result season
date     league                                                     
08/04/12 T1      Manisaspor  Galatasaray      0      4      A  11-12
         T1        Orduspor  Trabzonspor      0      0      D  11-12
('08/04/13', 'SP1')
                    home        away  hgoal  agoal result season
date     league                                                 
08/04/13 SP1     Sevilla  Ath Bilbao      2      1      H  12-13
('08/04/13', 'T1')
                      home      away  hgoal  agoal result season
date     league                                                 
08/04/13 T1      Bursaspor  Besiktas      3      0      H  12-13
('08/04/14', 'E2')
                             home          away  hgoal  agoal result season
date     league                                                            
08/04/14 E2             Brentford  Crawley Town      1      0      H  13-14
         E2             Peterboro    Gillingham      2      0      H  13-14
         E2      Sheffield United     Rotherham      1      0      H  13-14
('08/04/15', 'I1')
                  home     away  hgoal  agoal result season
date     league                                            
08/04/15 I1      Parma  Udinese      1      0      H  14-15
('08/04/15', 'SP1')
                      home         away  hgoal  agoal result season
date     league                                                    
08/04/15 SP1     Barcelona      Almeria      4      0      H  14-15
         SP1       Granada        Celta      1      1      D  14-15
         SP1     La Coruna      Cordoba      1      1      D  14-15
         SP1     Vallecano  Real Madrid      0      2      A  14-15
('08/04/16', 'D1')
                   home      away  hgoal  agoal result season
date     league                                              
08/04/16 D1      Hertha  Hannover      2      2      D  15-16
('08/04/16', 'T1')
                          home       away  hgoal  agoal result season
date     league                                                      
08/04/16 T1      Gaziantepspor  Sivasspor      0      1      A  15-16
('08/05/13', 'I1')
                      home        away  hgoal  agoal result season
date     league                                                   
08/05/13 I1       Atalanta    Juventus      0      1      A  12-13
         I1        Bologna      Napoli      0      3      A  12-13
         I1       Cagliari       Parma      0      1      A  12-13
         I1          Inter       Lazio      1      3      A  12-13
         I1        Palermo     Udinese      2      3      A  12-13
         I1        Pescara       Milan      0      4      A  12-13
         I1      Sampdoria     Catania      1      1      D  12-13
         I1          Siena  Fiorentina      0      1      A  12-13
         I1         Torino       Genoa      0      0      D  12-13
('08/05/13', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
08/05/13 SP1           Celta  Ath Madrid      1      3      A  12-13
         SP1     Real Madrid      Malaga      6      2      H  12-13
('08/05/15', 'D1')
                    home      away  hgoal  agoal result season
date     league                                               
08/05/15 D1      Hamburg  Freiburg      1      1      D  14-15
('08/05/15', 'SP1')
                  home     away  hgoal  agoal result season
date     league                                            
08/05/15 SP1     Eibar  Espanol      0      2      A  14-15
('08/05/15', 'T1')
                          home                away  hgoal  agoal result season
date     league                                                               
08/05/15 T1        Erciyesspor  Mersin Idman Yurdu      2      2      D  14-15
         T1      Eskisehirspor           Kasimpasa      4      1      H  14-15
         T1        Galatasaray           Konyaspor      1      0      H  14-15
('08/05/16', 'E2')
                             home          away  hgoal  agoal result season
date     league                                                            
08/05/16 E2              Bradford  Chesterfield      2      0      H  15-16
         E2                  Bury      Southend      3      2      H  15-16
         E2            Colchester      Rochdale      1      2      A  15-16
         E2             Doncaster        Burton      0      0      D  15-16
         E2        Fleetwood Town         Crewe      2      0      H  15-16
         E2            Gillingham      Millwall      1      2      A  15-16
         E2                Oldham      Coventry      0      2      A  15-16
         E2             Peterboro     Blackpool      5      1      H  15-16
         E2             Port Vale       Walsall      0      5      A  15-16
         E2      Sheffield United    Scunthorpe      0      2      A  15-16
         E2               Swindon    Shrewsbury      3      0      H  15-16
         E2                 Wigan      Barnsley      1      4      A  15-16
('08/05/16', 'I1')
                       home      away  hgoal  agoal result season
date     league                                                  
08/05/16 I1        Atalanta   Udinese      1      1      D  15-16
         I1           Carpi     Lazio      1      3      A  15-16
         I1      Fiorentina   Palermo      0      0      D  15-16
         I1       Frosinone  Sassuolo      0      1      A  15-16
         I1            Roma    Chievo      3      0      H  15-16
         I1       Sampdoria     Genoa      0      3      A  15-16
         I1          Torino    Napoli      1      2      A  15-16
         I1          Verona  Juventus      2      1      H  15-16
('08/05/16', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
08/05/16 SP1       Barcelona     Espanol      5      0      H  15-16
         SP1           Celta      Malaga      1      0      H  15-16
         SP1           Eibar       Betis      1      1      D  15-16
         SP1          Getafe    Sp Gijon      1      1      D  15-16
         SP1      Las Palmas  Ath Bilbao      0      0      D  15-16
         SP1         Levante  Ath Madrid      2      1      H  15-16
         SP1     Real Madrid    Valencia      3      2      H  15-16
         SP1         Sevilla     Granada      1      4      A  15-16
         SP1        Sociedad   Vallecano      2      1      H  15-16
         SP1      Villarreal   La Coruna      0      2      A  15-16
('08/05/16', 'T1')
                                 home         away  hgoal  agoal result season
date     league                                                               
08/05/16 T1      Akhisar Belediyespor  Kayserispor      1      1      D  15-16
         T1               Galatasaray     Besiktas      0      1      A  15-16
         T1        Mersin Idman Yurdu  Antalyaspor      0      1      A  15-16
         T1               Trabzonspor     Rizespor      6      0      H  15-16
('08/08/15', 'E2')
                           home              away  hgoal  agoal result season
date     league                                                              
08/08/15 E2              Burton        Scunthorpe      2      1      H  15-16
         E2        Chesterfield          Barnsley      3      1      H  15-16
         E2          Colchester         Blackpool      2      2      D  15-16
         E2            Coventry             Wigan      2      0      H  15-16
         E2               Crewe         Port Vale      0      0      D  15-16
         E2           Doncaster              Bury      1      1      D  15-16
         E2      Fleetwood Town          Southend      1      1      D  15-16
         E2          Gillingham  Sheffield United      4      0      H  15-16
         E2            Rochdale         Peterboro      2      0      H  15-16
         E2          Shrewsbury          Millwall      1      2      A  15-16
         E2             Swindon          Bradford      4      1      H  15-16
         E2             Walsall            Oldham      1      1      D  15-16
('08/09/12', 'E2')
                         home                away  hgoal  agoal result season
date     league                                                              
08/09/12 E2         Brentford          Colchester      1      0      H  12-13
         E2              Bury             Preston      1      2      A  12-13
         E2             Crewe            Tranmere      0      0      D  12-13
         E2        Hartlepool            Carlisle      1      2      A  12-13
         E2      Notts County          Shrewsbury      3      2      H  12-13
         E2        Scunthorpe    Sheffield United      1      1      D  12-13
         E2           Swindon       Leyton Orient      0      1      A  12-13
         E2           Walsall  Milton Keynes Dons      1      0      H  12-13
         E2            Yeovil         Bournemouth      0      1      A  12-13
('08/09/13', 'E2')
                     home        away  hgoal  agoal result season
date     league                                                  
08/09/13 E2      Coventry  Colchester      2      0      H  13-14
('08/10/11', 'E2')
                           home           away  hgoal  agoal result season
date     league                                                           
08/10/11 E2         Bournemouth       Rochdale      1      1      D  11-12
         E2                Bury         Exeter      2      0      H  11-12
         E2            Carlisle      Brentford      2      2      D  11-12
         E2            Charlton       Tranmere      1      1      D  11-12
         E2          Colchester         Yeovil      2      2      D  11-12
         E2        Huddersfield      Stevenage      2      1      H  11-12
         E2          Scunthorpe  Leyton Orient      2      3      A  11-12
         E2      Sheffield Weds   Chesterfield      3      1      H  11-12
         E2             Wycombe        Walsall      1      1      D  11-12
('08/11/13', 'D1')
                     home          away  hgoal  agoal result season
date     league                                                    
08/11/13 D1      Hannover  Braunschweig      0      0      D  13-14
('08/11/13', 'SP1')
                    home     away  hgoal  agoal result season
date     league                                              
08/11/13 SP1     Granada   Malaga      3      1      H  13-14
         SP1     Osasuna  Almeria      0      1      A  13-14
('08/11/13', 'T1')
                          home                  away  hgoal  agoal result  \
date     league                                                             
08/11/13 T1         Elazigspor           Erciyesspor      0      1      A   
         T1      Eskisehirspor  Akhisar Belediyespor      2      0      H   

                season  
date     league         
08/11/13 T1      13-14  
         T1      13-14  
('08/11/14', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
08/11/14 D1           Augsburg      Paderborn      3      0      H  14-15
         D1      Ein Frankfurt  Bayern Munich      0      4      A  14-15
         D1           Freiburg     Schalke 04      2      0      H  14-15
         D1         Hoffenheim        FC Koln      3      4      A  14-15
         D1         Leverkusen          Mainz      0      0      D  14-15
         D1      Werder Bremen      Stuttgart      2      0      H  14-15
('08/11/14', 'I1')
                      home      away  hgoal  agoal result season
date     league                                                 
08/11/14 I1      Sampdoria     Milan      2      2      D  14-15
         I1       Sassuolo  Atalanta      0      0      D  14-15
('08/11/14', 'SP1')
                        home       away  hgoal  agoal result season
date     league                                                    
08/11/14 SP1         Almeria  Barcelona      1      2      A  14-15
         SP1           Celta    Granada      0      0      D  14-15
         SP1          Getafe      Elche      0      0      D  14-15
         SP1          Malaga      Eibar      2      1      H  14-15
         SP1     Real Madrid  Vallecano      5      1      H  14-15
('08/11/14', 'T1')
                               home           away  hgoal  agoal result season
date     league                                                               
08/11/14 T1              Fenerbahce       Rizespor      2      1      H  14-15
         T1             Karabukspor    Galatasaray      1      2      A  14-15
         T1      Mersin Idman Yurdu  Balikesirspor      2      1      H  14-15
('08/11/15', 'D1')
                     home           away  hgoal  agoal result season
date     league                                                     
08/11/15 D1      Augsburg  Werder Bremen      1      2      A  15-16
         D1      Dortmund     Schalke 04      3      2      H  15-16
('08/11/15', 'I1')
                      home        away  hgoal  agoal result season
date     league                                                   
08/11/15 I1         Empoli    Juventus      1      3      A  15-16
         I1      Frosinone       Genoa      2      2      D  15-16
         I1         Napoli     Udinese      1      0      H  15-16
         I1        Palermo      Chievo      1      0      H  15-16
         I1           Roma       Lazio      2      0      H  15-16
         I1      Sampdoria  Fiorentina      0      2      A  15-16
         I1       Sassuolo       Carpi      1      0      H  15-16
         I1         Torino       Inter      0      1      A  15-16
('08/11/15', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
08/11/15 SP1     Ath Bilbao      Espanol      2      1      H  15-16
         SP1     Ath Madrid     Sp Gijon      1      0      H  15-16
         SP1      Barcelona   Villarreal      3      0      H  15-16
         SP1        Sevilla  Real Madrid      3      2      H  15-16
('08/11/15', 'T1')
                       home           away  hgoal  agoal result season
date     league                                                       
08/11/15 T1       Bursaspor       Besiktas      0      1      A  15-16
         T1      Fenerbahce      Konyaspor      1      0      H  15-16
         T1       Sivasspor  Gaziantepspor      3      0      H  15-16
('08/12/11', 'T1')
                       home                away  hgoal  agoal result season
date     league                                                            
08/12/11 T1      Ankaragucu           Bursaspor      0      0      D  11-12
         T1      Buyuksehyr  Mersin Idman Yurdu      0      0      D  11-12
         T1      Manisaspor            Besiktas      1      4      A  11-12
         T1        Orduspor           Sivasspor      1      2      A  11-12
         T1      Samsunspor         Kayserispor      0      1      A  11-12
('08/12/12', 'D1')
                          home                away  hgoal  agoal result season
date     league                                                               
08/12/12 D1           Augsburg       Bayern Munich      0      2      A  12-13
         D1           Dortmund           Wolfsburg      2      3      A  12-13
         D1      Ein Frankfurt       Werder Bremen      4      1      H  12-13
         D1           Freiburg      Greuther Furth      1      0      H  12-13
         D1           Nurnberg  Fortuna Dusseldorf      2      0      H  12-13
         D1          Stuttgart          Schalke 04      3      1      H  12-13
('08/12/12', 'E2')
                         home                away  hgoal  agoal result season
date     league                                                              
08/12/12 E2         Brentford  Milton Keynes Dons      3      2      H  12-13
         E2              Bury       Leyton Orient      0      2      A  12-13
         E2          Carlisle    Sheffield United      1      3      A  12-13
         E2        Colchester              Oldham      0      2      A  12-13
         E2          Coventry             Walsall      5      1      H  12-13
         E2      Crawley Town          Shrewsbury      2      2      D  12-13
         E2        Hartlepool           Stevenage      0      2      A  12-13
         E2           Preston               Crewe      1      3      A  12-13
         E2        Scunthorpe         Bournemouth      1      2      A  12-13
         E2           Swindon           Doncaster      1      1      D  12-13
         E2          Tranmere          Portsmouth      2      2      D  12-13
         E2            Yeovil        Notts County      0      0      D  12-13
('08/12/12', 'I1')
                     home        away  hgoal  agoal result season
date     league                                                  
08/12/12 I1      Atalanta       Parma      2      1      H  12-13
         I1          Roma  Fiorentina      4      2      H  12-13
('08/12/12', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
08/12/12 SP1         Malaga      Granada      4      0      H  12-13
         SP1        Osasuna     Valencia      0      1      A  12-13
         SP1       Sociedad       Getafe      1      1      D  12-13
         SP1     Valladolid  Real Madrid      2      3      A  12-13
('08/12/12', 'T1')
                          home            away  hgoal  agoal result season
date     league                                                           
08/12/12 T1          Bursaspor        Orduspor      1      0      H  12-13
         T1      Gaziantepspor     Karabukspor      0      2      A  12-13
         T1          Kasimpasa  Genclerbirligi      2      2      D  12-13
         T1          Sivasspor     Galatasaray      1      3      A  12-13
('08/12/13', 'D1')
                         home       away  hgoal  agoal result season
date     league                                                     
08/12/13 D1      Braunschweig     Hertha      0      2      A  13-14
         D1          Freiburg  Wolfsburg      0      3      A  13-14
('08/12/13', 'I1')
                      home        away  hgoal  agoal result season
date     league                                                   
08/12/13 I1       Cagliari       Genoa      2      1      H  13-14
         I1          Inter       Parma      3      3      D  13-14
         I1           Roma  Fiorentina      2      1      H  13-14
         I1      Sampdoria     Catania      2      0      H  13-14
         I1       Sassuolo      Chievo      0      1      A  13-14
         I1         Torino       Lazio      1      0      H  13-14
         I1         Verona    Atalanta      2      1      H  13-14
('08/12/13', 'T1')
                                 home            away  hgoal  agoal result  \
date     league                                                              
08/12/13 T1      Akhisar Belediyespor       Konyaspor      2      1      H   
         T1                 Bursaspor  Genclerbirligi      0      0      D   
         T1             Gaziantepspor     Trabzonspor      3      2      H   
         T1               Karabukspor     Kayserispor      1      0      H   

                season  
date     league         
08/12/13 T1      13-14  
         T1      13-14  
         T1      13-14  
         T1      13-14  
('08/12/14', 'I1')
                     home       away  hgoal  agoal result season
date     league                                                 
08/12/14 I1      Cagliari     Chievo      0      2      A  14-15
         I1        Verona  Sampdoria      1      3      A  14-15
('08/12/14', 'SP1')
                    home     away  hgoal  agoal result season
date     league                                              
08/12/14 SP1       Eibar  Almeria      5      2      H  14-15
         SP1     Levante   Getafe      1      1      D  14-15
('08/12/14', 'T1')
                      home         away  hgoal  agoal result season
date     league                                                    
08/12/14 T1      Sivasspor  Erciyesspor      1      1      D  14-15
('09/01/12', 'T1')
                       home           away  hgoal  agoal result season
date     league                                                       
09/01/12 T1      Fenerbahce  Gaziantepspor      3      1      H  11-12
('09/01/13', 'T1')
                                 home         away  hgoal  agoal result season
date     league                                                               
09/01/13 T1      Akhisar Belediyespor  Antalyaspor      1      0      H  12-13
('09/01/15', 'SP1')
                    home       away  hgoal  agoal result season
date     league                                                
09/01/15 SP1     Levante  La Coruna      0      0      D  14-15
('09/01/16', 'E2')
                      home          away  hgoal  agoal result season
date     league                                                     
09/01/16 E2      Blackpool     Port Vale      0      1      A  15-16
         E2         Oldham      Millwall      1      2      A  15-16
         E2       Rochdale  Chesterfield      2      3      A  15-16
         E2        Swindon      Southend      4      2      H  15-16
('09/01/16', 'I1')
                       home     away  hgoal  agoal result season
date     league                                                 
09/01/16 I1           Carpi  Udinese      2      1      H  15-16
         I1      Fiorentina    Lazio      1      3      A  15-16
         I1            Roma    Milan      1      1      D  15-16
('09/01/16', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
09/01/16 SP1       Barcelona     Granada      4      0      H  15-16
         SP1          Getafe       Betis      1      0      H  15-16
         SP1         Levante   Vallecano      2      1      H  15-16
         SP1     Real Madrid   La Coruna      5      0      H  15-16
         SP1         Sevilla  Ath Bilbao      2      0      H  15-16
('09/02/12', 'I1')
                  home    away  hgoal  agoal result season
date     league                                           
09/02/12 I1      Lazio  Cesena      3      2      H  11-12
('09/02/12', 'T1')
                       home         away  hgoal  agoal result season
date     league                                                     
09/02/12 T1      Buyuksehyr  Karabukspor      2      2      D  11-12
         T1       Sivasspor     Besiktas      1      1      D  11-12
('09/02/13', 'D1')
                           home           away  hgoal  agoal result season
date     league                                                           
09/02/13 D1       Bayern Munich     Schalke 04      4      0      H  12-13
         D1            Dortmund        Hamburg      1      4      A  12-13
         D1       Ein Frankfurt       Nurnberg      0      0      D  12-13
         D1      Greuther Furth      Wolfsburg      0      1      A  12-13
         D1            Hannover     Hoffenheim      1      0      H  12-13
         D1          M'gladbach     Leverkusen      3      3      D  12-13
         D1           Stuttgart  Werder Bremen      1      4      A  12-13
('09/02/13', 'E2')
                          home                away  hgoal  agoal result season
date     league                                                               
09/02/13 E2        Bournemouth          Portsmouth      2      0      H  12-13
         E2          Brentford                Bury      2      2      D  12-13
         E2           Carlisle           Stevenage      2      1      H  12-13
         E2         Colchester             Preston      1      0      H  12-13
         E2           Coventry              Yeovil      0      1      A  12-13
         E2          Doncaster             Walsall      1      2      A  12-13
         E2      Leyton Orient            Tranmere      2      1      H  12-13
         E2       Notts County               Crewe      1      1      D  12-13
         E2             Oldham  Milton Keynes Dons      3      1      H  12-13
         E2         Scunthorpe        Crawley Town      2      1      H  12-13
         E2         Shrewsbury    Sheffield United      1      2      A  12-13
         E2            Swindon          Hartlepool      1      1      D  12-13
('09/02/13', 'I1')
                     home        away  hgoal  agoal result season
date     league                                                  
09/02/13 I1      Juventus  Fiorentina      2      0      H  12-13
         I1         Lazio      Napoli      1      1      D  12-13
('09/02/13', 'SP1')
                        home      away  hgoal  agoal result season
date     league                                                   
09/02/13 SP1           Celta  Valencia      0      1      A  12-13
         SP1       La Coruna   Granada      0      3      A  12-13
         SP1         Levante    Malaga      1      2      A  12-13
         SP1        Mallorca   Osasuna      1      1      D  12-13
         SP1     Real Madrid   Sevilla      4      1      H  12-13
('09/02/13', 'T1')
                           home                  away  hgoal  agoal result  \
date     league                                                              
09/02/13 T1          Buyuksehyr  Akhisar Belediyespor      0      2      A   
         T1          Elazigspor              Besiktas      1      3      A   
         T1      Genclerbirligi         Eskisehirspor      0      2      A   
         T1         Karabukspor             Bursaspor      0      3      A   

                season  
date     league         
09/02/13 T1      12-13  
         T1      12-13  
         T1      12-13  
         T1      12-13  
('09/02/14', 'D1')
                       home      away  hgoal  agoal result season
date     league                                                  
09/02/14 D1      Schalke 04  Hannover      2      0      H  13-14
         D1       Stuttgart  Augsburg      1      4      A  13-14
('09/02/14', 'I1')
                      home      away  hgoal  agoal result season
date     league                                                 
09/02/14 I1          Inter  Sassuolo      1      0      H  13-14
         I1          Lazio      Roma      0      0      D  13-14
         I1        Livorno     Genoa      0      1      A  13-14
         I1          Parma   Catania      0      0      D  13-14
         I1      Sampdoria  Cagliari      1      0      H  13-14
         I1         Torino   Bologna      1      2      A  13-14
         I1         Verona  Juventus      2      2      D  13-14
('09/02/14', 'SP1')
                       home       away  hgoal  agoal result season
date     league                                                   
09/02/14 SP1        Osasuna     Getafe      2      0      H  13-14
         SP1        Sevilla  Barcelona      1      4      A  13-14
         SP1       Sociedad    Levante      0      0      D  13-14
         SP1     Valladolid      Elche      2      2      D  13-14
('09/02/14', 'T1')
                        home                  away  hgoal  agoal result season
date     league                                                               
09/02/14 T1        Bursaspor           Antalyaspor      1      1      D  13-14
         T1       Elazigspor           Kayserispor      3      0      H  13-14
         T1        Sivasspor            Fenerbahce      2      0      H  13-14
         T1      Trabzonspor  Akhisar Belediyespor      2      4      A  13-14
('09/02/15', 'E2')
                     home                away  hgoal  agoal result season
date     league                                                          
09/02/15 E2      Bradford  Milton Keynes Dons      2      1      H  14-15
('09/02/15', 'I1')
                  home   away  hgoal  agoal result season
date     league                                          
09/02/15 I1      Lazio  Genoa      0      1      A  14-15
('09/02/15', 'SP1')
                  home       away  hgoal  agoal result season
date     league                                              
09/02/15 SP1     Elche  Vallecano      2      0      H  14-15
('09/02/15', 'T1')
                          home         away  hgoal  agoal result season
date     league                                                        
09/02/15 T1      Eskisehirspor  Galatasaray      1      2      A  14-15
('09/03/12', 'D1')
                      home            away  hgoal  agoal result season
date     league                                                       
09/03/12 D1      Stuttgart  Kaiserslautern      0      0      D  11-12
('09/03/12', 'I1')
                   home      away  hgoal  agoal result season
date     league                                              
09/03/12 I1      Chievo     Inter      0      2      A  11-12
         I1      Napoli  Cagliari      6      3      H  11-12
('09/03/12', 'T1')
                       home        away  hgoal  agoal result season
date     league                                                    
09/03/12 T1      Ankaragucu  Fenerbahce      0      2      A  11-12
('09/03/13', 'D1')
                           home                away  hgoal  agoal result  \
date     league                                                            
09/03/13 D1       Bayern Munich  Fortuna Dusseldorf      3      2      H   
         D1            Freiburg           Wolfsburg      2      5      A   
         D1      Greuther Furth          Hoffenheim      0      3      A   
         D1               Mainz          Leverkusen      1      0      H   
         D1          M'gladbach       Werder Bremen      1      1      D   
         D1          Schalke 04            Dortmund      2      1      H   

                season  
date     league         
09/03/13 D1      12-13  
         D1      12-13  
         D1      12-13  
         D1      12-13  
         D1      12-13  
         D1      12-13  
('09/03/13', 'E2')
                             home                away  hgoal  agoal result  \
date     league                                                              
09/03/13 E2           Bournemouth           Doncaster      1      2      A   
         E2              Carlisle           Brentford      2      0      H   
         E2            Colchester               Crewe      1      2      A   
         E2          Crawley Town        Notts County      0      0      D   
         E2            Hartlepool              Yeovil      0      0      D   
         E2            Portsmouth                Bury      2      0      H   
         E2               Preston           Stevenage      2      0      H   
         E2            Scunthorpe            Coventry      1      2      A   
         E2      Sheffield United  Milton Keynes Dons      0      0      D   
         E2            Shrewsbury       Leyton Orient      0      2      A   
         E2               Swindon             Walsall      2      2      D   
         E2              Tranmere              Oldham      1      0      H   

                season  
date     league         
09/03/13 E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
('09/03/13', 'I1')
                    home  away  hgoal  agoal result season
date     league                                           
09/03/13 I1      Udinese  Roma      1      1      D  12-13
('09/03/13', 'SP1')
                       home       away  hgoal  agoal result season
date     league                                                   
09/03/13 SP1      Barcelona  La Coruna      2      0      H  12-13
         SP1       Mallorca    Sevilla      2      1      H  12-13
         SP1     Valladolid     Malaga      1      1      D  12-13
         SP1      Vallecano    Espanol      2      0      H  12-13
('09/03/13', 'T1')
                          home                  away  hgoal  agoal result  \
date     league                                                             
09/03/13 T1         Buyuksehyr           Kayserispor      0      0      D   
         T1      Gaziantepspor  Akhisar Belediyespor      2      2      D   
         T1        Trabzonspor              Besiktas      0      0      D   

                season  
date     league         
09/03/13 T1      12-13  
         T1      12-13  
         T1      12-13  
('09/03/14', 'D1')
                     home      away  hgoal  agoal result season
date     league                                                
09/03/14 D1      Freiburg  Dortmund      0      1      A  13-14
         D1         Mainz    Hertha      1      1      D  13-14
('09/03/14', 'I1')
                      home        away  hgoal  agoal result season
date     league                                                   
09/03/14 I1        Bologna    Sassuolo      0      0      D  13-14
         I1         Chievo       Genoa      2      1      H  13-14
         I1          Inter      Torino      1      0      H  13-14
         I1       Juventus  Fiorentina      1      0      H  13-14
         I1          Lazio    Atalanta      0      1      A  13-14
         I1         Napoli        Roma      1      0      H  13-14
         I1          Parma      Verona      2      0      H  13-14
         I1      Sampdoria     Livorno      4      2      H  13-14
('09/03/14', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
09/03/14 SP1         Almeria     Sevilla      1      3      A  13-14
         SP1         Espanol       Elche      3      1      H  13-14
         SP1     Real Madrid     Levante      3      0      H  13-14
         SP1        Valencia  Ath Bilbao      1      1      D  13-14
('09/03/14', 'T1')
                           home           away  hgoal  agoal result season
date     league                                                           
09/03/14 T1         Antalyaspor       Rizespor      1      2      A  13-14
         T1            Besiktas  Eskisehirspor      1      0      H  13-14
         T1       Gaziantepspor    Kayserispor      2      1      H  13-14
         T1      Genclerbirligi      Sivasspor      2      1      H  13-14
('09/03/15', 'I1')
                     home        away  hgoal  agoal result season
date     league                                                  
09/03/15 I1      Juventus    Sassuolo      1      0      H  14-15
         I1         Lazio  Fiorentina      4      0      H  14-15
('09/03/15', 'SP1')
                    home    away  hgoal  agoal result season
date     league                                             
09/03/15 SP1     Cordoba  Getafe      1      2      A  14-15
('09/03/15', 'T1')
                               home         away  hgoal  agoal result season
date     league                                                             
09/03/15 T1      Mersin Idman Yurdu  Trabzonspor      1      5      A  14-15
('09/04/12', 'E2')
                               home           away  hgoal  agoal result season
date     league                                                               
09/04/12 E2             Bournemouth   Huddersfield      2      0      H  11-12
         E2                    Bury     Colchester      4      1      H  11-12
         E2                Carlisle     Scunthorpe      0      0      D  11-12
         E2                Charlton        Walsall      1      0      H  11-12
         E2            Chesterfield        Wycombe      4      0      H  11-12
         E2                  Exeter  Leyton Orient      3      0      H  11-12
         E2              Hartlepool      Brentford      0      0      D  11-12
         E2      Milton Keynes Dons       Tranmere      3      0      H  11-12
         E2            Notts County         Yeovil      3      1      H  11-12
         E2          Sheffield Weds         Oldham      3      0      H  11-12
         E2               Stevenage        Preston      1      1      D  11-12
('09/04/13', 'E2')
                               home          away  hgoal  agoal result season
date     league                                                              
09/04/13 E2               Doncaster      Carlisle      0      2      A  12-13
         E2      Milton Keynes Dons       Swindon      2      0      H  12-13
         E2                 Preston        Oldham      2      0      H  12-13
         E2        Sheffield United  Crawley Town      0      2      A  12-13
('09/04/15', 'SP1')
                       home      away  hgoal  agoal result season
date     league                                                  
09/04/15 SP1     Ath Bilbao  Valencia      1      1      D  14-15
         SP1          Elche    Getafe      0      1      A  14-15
         SP1     Villarreal   Espanol      0      3      A  14-15
('09/04/16', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
09/04/16 D1      Ein Frankfurt     Hoffenheim      0      2      A  15-16
         D1            Hamburg      Darmstadt      1      2      A  15-16
         D1         Ingolstadt     M'gladbach      1      0      H  15-16
         D1          Stuttgart  Bayern Munich      1      3      A  15-16
         D1      Werder Bremen       Augsburg      1      2      A  15-16
         D1          Wolfsburg          Mainz      1      1      D  15-16
('09/04/16', 'E2')
                             home            away  hgoal  agoal result season
date     league                                                              
09/04/16 E2              Barnsley    Chesterfield      1      2      A  15-16
         E2             Blackpool      Colchester      0      1      A  15-16
         E2              Bradford         Swindon      1      0      H  15-16
         E2                  Bury       Doncaster      1      0      H  15-16
         E2              Millwall      Shrewsbury      3      1      H  15-16
         E2                Oldham         Walsall      1      0      H  15-16
         E2             Peterboro        Rochdale      1      2      A  15-16
         E2             Port Vale           Crewe      3      0      H  15-16
         E2            Scunthorpe          Burton      1      0      H  15-16
         E2      Sheffield United      Gillingham      0      0      D  15-16
         E2              Southend  Fleetwood Town      2      2      D  15-16
         E2                 Wigan        Coventry      1      0      H  15-16
('09/04/16', 'I1')
                      home      away  hgoal  agoal result season
date     league                                                 
09/04/16 I1      Frosinone     Inter      0      1      A  15-16
         I1          Milan  Juventus      1      2      A  15-16
         I1       Sassuolo     Genoa      0      1      A  15-16
('09/04/16', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
09/04/16 SP1           Betis     Levante      1      0      H  15-16
         SP1         Espanol  Ath Madrid      1      3      A  15-16
         SP1     Real Madrid       Eibar      4      0      H  15-16
         SP1        Sociedad   Barcelona      1      0      H  15-16
('09/04/16', 'T1')
                        home           away  hgoal  agoal result season
date     league                                                        
09/04/16 T1      Galatasaray       Rizespor      1      1      D  15-16
         T1      Kayserispor    Antalyaspor      0      0      D  15-16
         T1      Osmanlispor  Eskisehirspor      0      0      D  15-16
('09/05/14', 'T1')
                       home         away  hgoal  agoal result season
date     league                                                     
09/05/14 T1      Fenerbahce  Karabukspor      4      0      H  13-14
('09/05/15', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
09/05/15 D1      Bayern Munich       Augsburg      0      1      A  14-15
         D1           Dortmund         Hertha      2      0      H  14-15
         D1      Ein Frankfurt     Hoffenheim      3      1      H  14-15
         D1           Hannover  Werder Bremen      1      1      D  14-15
         D1         M'gladbach     Leverkusen      3      0      H  14-15
         D1          Stuttgart          Mainz      2      0      H  14-15
('09/05/15', 'I1')
                     home      away  hgoal  agoal result season
date     league                                                
09/05/15 I1      Juventus  Cagliari      1      1      D  14-15
         I1         Milan      Roma      2      1      H  14-15
('09/05/15', 'SP1')
                        home       away  hgoal  agoal result season
date     league                                                    
09/05/15 SP1      Ath Bilbao  La Coruna      1      1      D  14-15
         SP1       Barcelona   Sociedad      2      0      H  14-15
         SP1         Granada    Cordoba      2      0      H  14-15
         SP1     Real Madrid   Valencia      2      2      D  14-15
('09/05/15', 'T1')
                           home                  away  hgoal  agoal result  \
date     league                                                              
09/05/15 T1       Balikesirspor            Buyuksehyr      1      2      A   
         T1           Bursaspor           Karabukspor      7      1      H   
         T1      Genclerbirligi  Akhisar Belediyespor      0      0      D   
         T1           Sivasspor            Fenerbahce      2      3      A   

                season  
date     league         
09/05/15 T1      14-15  
         T1      14-15  
         T1      14-15  
         T1      14-15  
('09/05/16', 'T1')
                       home        away  hgoal  agoal result season
date     league                                                    
09/05/16 T1      Buyuksehyr  Fenerbahce      2      1      H  15-16
         T1       Konyaspor   Kasimpasa      2      0      H  15-16
('09/08/13', 'D1')
                          home        away  hgoal  agoal result season
date     league                                                       
09/08/13 D1      Bayern Munich  M'gladbach      3      1      H  13-14
('09/08/14', 'E2')
                               home          away  hgoal  agoal result season
date     league                                                              
09/08/14 E2                Barnsley  Crawley Town      0      1      A  14-15
         E2                Bradford      Coventry      3      2      H  14-15
         E2              Colchester        Oldham      2      2      D  14-15
         E2          Fleetwood Town         Crewe      2      1      H  14-15
         E2           Leyton Orient  Chesterfield      1      2      A  14-15
         E2      Milton Keynes Dons    Gillingham      4      2      H  14-15
         E2               Port Vale       Walsall      1      1      D  14-15
         E2                 Preston  Notts County      1      1      D  14-15
         E2                Rochdale     Peterboro      0      1      A  14-15
         E2        Sheffield United  Bristol City      1      2      A  14-15
         E2                 Swindon    Scunthorpe      3      1      H  14-15
         E2                  Yeovil     Doncaster      0      3      A  14-15
('09/09/11', 'D1')
                     home        away  hgoal  agoal result season
date     league                                                  
09/09/11 D1      Augsburg  Leverkusen      1      4      A  11-12
('09/09/11', 'E2')
                    home    away  hgoal  agoal result season
date     league                                             
09/09/11 E2      Preston  Yeovil      4      3      H  11-12
('09/09/11', 'I1')
                  home   away  hgoal  agoal result season
date     league                                          
09/09/11 I1      Milan  Lazio      2      2      D  11-12
('09/09/12', 'E2')
                         home        away  hgoal  agoal result season
date     league                                                      
09/09/12 E2          Coventry   Stevenage      1      2      A  12-13
         E2      Crawley Town  Portsmouth      0      3      A  12-13
('09/09/13', 'E2')
                    home    away  hgoal  agoal result season
date     league                                             
09/09/13 E2      Preston  Oldham      2      1      H  13-14
('09/10/11', 'E2')
                         home        away  hgoal  agoal result season
date     league                                                      
09/10/11 E2      Notts County  Hartlepool      3      0      H  11-12
('09/11/12', 'D1')
                  home      away  hgoal  agoal result season
date     league                                             
09/11/12 D1      Mainz  Nurnberg      2      1      H  12-13
('09/11/12', 'SP1')
                  home     away  hgoal  agoal result season
date     league                                            
09/11/12 SP1     Betis  Granada      1      2      A  12-13
('09/11/12', 'T1')
                      home           away  hgoal  agoal result season
date     league                                                      
09/11/12 T1       Besiktas      Bursaspor      3      3      D  12-13
         T1      Sivasspor  Eskisehirspor      1      0      H  12-13
('09/11/13', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
09/11/13 D1      Bayern Munich       Augsburg      3      0      H  13-14
         D1         Hoffenheim         Hertha      2      3      A  13-14
         D1         Leverkusen        Hamburg      5      3      H  13-14
         D1         M'gladbach       Nurnberg      3      1      H  13-14
         D1         Schalke 04  Werder Bremen      3      1      H  13-14
         D1          Wolfsburg       Dortmund      2      1      H  13-14
('09/11/13', 'I1')
                    home     away  hgoal  agoal result season
date     league                                              
09/11/13 I1      Catania  Udinese      1      0      H  13-14
         I1        Inter  Livorno      2      0      H  13-14
('09/11/13', 'SP1')
                        home       away  hgoal  agoal result season
date     league                                                    
09/11/13 SP1      Ath Bilbao    Levante      2      1      H  13-14
         SP1           Celta  Vallecano      0      2      A  13-14
         SP1          Getafe      Elche      1      1      D  13-14
         SP1     Real Madrid   Sociedad      5      1      H  13-14
('09/11/13', 'T1')
                        home           away  hgoal  agoal result season
date     league                                                        
09/11/13 T1      Karabukspor       Rizespor      2      1      H  13-14
         T1        Kasimpasa  Gaziantepspor      3      0      H  13-14
         T1      Kayserispor       Besiktas      0      3      A  13-14
         T1        Sivasspor      Bursaspor      2      1      H  13-14
('09/11/14', 'D1')
                      home        away  hgoal  agoal result season
date     league                                                   
09/11/14 D1       Dortmund  M'gladbach      1      0      H  14-15
         D1      Wolfsburg     Hamburg      2      0      H  14-15
('09/11/14', 'I1')
                       home     away  hgoal  agoal result season
date     league                                                 
09/11/14 I1        Cagliari    Genoa      1      1      D  14-15
         I1          Chievo   Cesena      2      1      H  14-15
         I1          Empoli    Lazio      2      1      H  14-15
         I1      Fiorentina   Napoli      0      1      A  14-15
         I1           Inter   Verona      2      2      D  14-15
         I1        Juventus    Parma      7      0      H  14-15
         I1         Palermo  Udinese      1      1      D  14-15
         I1            Roma   Torino      3      0      H  14-15
('09/11/14', 'SP1')
                     home        away  hgoal  agoal result season
date     league                                                  
09/11/14 SP1      Espanol  Villarreal      1      1      D  14-15
         SP1      Sevilla     Levante      1      1      D  14-15
         SP1     Sociedad  Ath Madrid      2      1      H  14-15
         SP1     Valencia  Ath Bilbao      0      0      D  14-15
('09/11/14', 'T1')
                        home            away  hgoal  agoal result season
date     league                                                         
09/11/14 T1       Buyuksehyr        Besiktas      1      2      A  14-15
         T1      Erciyesspor       Bursaspor      1      1      D  14-15
         T1        Kasimpasa  Genclerbirligi      2      2      D  14-15
         T1      Trabzonspor       Konyaspor      3      2      H  14-15
('09/12/11', 'D1')
                   home        away  hgoal  agoal result season
date     league                                                
09/12/11 D1      Hertha  Schalke 04      1      2      A  11-12
('09/12/12', 'D1')
                       home        away  hgoal  agoal result season
date     league                                                    
09/12/12 D1        Hannover  Leverkusen      3      2      H  12-13
         D1      M'gladbach       Mainz      2      0      H  12-13
('09/12/12', 'I1')
                     home      away  hgoal  agoal result season
date     league                                                
09/12/12 I1      Cagliari    Chievo      0      2      A  12-13
         I1         Inter    Napoli      2      1      H  12-13
         I1       Palermo  Juventus      0      1      A  12-13
         I1       Pescara     Genoa      2      0      H  12-13
         I1         Siena   Catania      1      3      A  12-13
         I1        Torino     Milan      2      4      A  12-13
('09/12/12', 'SP1')
                       home       away  hgoal  agoal result season
date     league                                                   
09/12/12 SP1     Ath Bilbao      Celta      1      0      H  12-13
         SP1     Ath Madrid  La Coruna      6      0      H  12-13
         SP1          Betis  Barcelona      1      2      A  12-13
         SP1        Levante   Mallorca      4      0      H  12-13
('09/12/12', 'T1')
                        home         away  hgoal  agoal result season
date     league                                                      
09/12/12 T1       Fenerbahce   Buyuksehyr      2      1      H  12-13
         T1      Trabzonspor  Kayserispor      1      1      D  12-13
('09/12/13', 'T1')
                        home           away  hgoal  agoal result season
date     league                                                        
09/12/13 T1         Besiktas      Sivasspor      1      1      D  13-14
         T1      Erciyesspor  Eskisehirspor      0      2      A  13-14
('10/01/12', 'E2')
                             home    away  hgoal  agoal result season
date     league                                                      
10/01/12 E2      Sheffield United  Yeovil      4      0      H  11-12
('10/01/14', 'SP1')
                    home        away  hgoal  agoal result season
date     league                                                 
10/01/14 SP1     Granada  Valladolid      4      0      H  13-14
('10/01/15', 'E2')
                             home                away  hgoal  agoal result  \
date     league                                                              
10/01/15 E2              Barnsley              Yeovil      2      0      H   
         E2              Bradford            Rochdale      1      2      A   
         E2          Bristol City        Notts County      4      0      H   
         E2          Chesterfield           Port Vale      3      0      H   
         E2          Crawley Town  Milton Keynes Dons      2      2      D   
         E2                 Crewe          Gillingham      3      1      H   
         E2         Leyton Orient      Fleetwood Town      0      1      A   
         E2                Oldham           Doncaster      2      2      D   
         E2             Peterboro          Colchester      0      2      A   
         E2      Sheffield United             Preston      2      1      H   
         E2               Walsall          Scunthorpe      1      4      A   

                season  
date     league         
10/01/15 E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
('10/01/15', 'I1')
                     home     away  hgoal  agoal result season
date     league                                               
10/01/15 I1      Sassuolo  Udinese      1      1      D  14-15
         I1        Torino    Milan      1      1      D  14-15
('10/01/15', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
10/01/15 SP1           Celta    Valencia      1      1      D  14-15
         SP1           Eibar      Getafe      2      1      H  14-15
         SP1          Malaga  Villarreal      1      1      D  14-15
         SP1     Real Madrid     Espanol      3      0      H  14-15
('10/01/16', 'I1')
                      home      away  hgoal  agoal result season
date     league                                                 
10/01/16 I1       Atalanta     Genoa      0      2      A  15-16
         I1        Bologna    Chievo      0      1      A  15-16
         I1      Frosinone    Napoli      1      5      A  15-16
         I1          Inter  Sassuolo      0      1      A  15-16
         I1      Sampdoria  Juventus      1      2      A  15-16
         I1         Torino    Empoli      0      1      A  15-16
         I1         Verona   Palermo      0      1      A  15-16
('10/01/16', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
10/01/16 SP1          Celta  Ath Madrid      0      2      A  15-16
         SP1          Eibar     Espanol      2      1      H  15-16
         SP1     Las Palmas      Malaga      1      1      D  15-16
         SP1       Sociedad    Valencia      2      0      H  15-16
         SP1     Villarreal    Sp Gijon      2      0      H  15-16
('10/02/12', 'D1')
                      home      away  hgoal  agoal result season
date     league                                                 
10/02/12 D1      Wolfsburg  Freiburg      3      2      H  11-12
('10/02/12', 'T1')
                        home           away  hgoal  agoal result season
date     league                                                        
10/02/12 T1      Trabzonspor  Gaziantepspor      4      1      H  11-12
('10/02/13', 'D1')
                     home                away  hgoal  agoal result season
date     league                                                          
10/02/13 D1      Augsburg               Mainz      1      1      D  12-13
         D1      Freiburg  Fortuna Dusseldorf      1      0      H  12-13
('10/02/13', 'I1')
                      home     away  hgoal  agoal result season
date     league                                                
10/02/13 I1       Atalanta  Catania      0      0      D  12-13
         I1        Bologna    Siena      1      1      D  12-13
         I1       Cagliari    Milan      1      1      D  12-13
         I1          Inter   Chievo      3      1      H  12-13
         I1        Palermo  Pescara      1      1      D  12-13
         I1          Parma    Genoa      0      0      D  12-13
         I1      Sampdoria     Roma      3      1      H  12-13
         I1        Udinese   Torino      1      0      H  12-13
('10/02/13', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
10/02/13 SP1     Ath Bilbao     Espanol      0      4      A  12-13
         SP1      Barcelona      Getafe      6      1      H  12-13
         SP1      Vallecano  Ath Madrid      2      1      H  12-13
         SP1       Zaragoza    Sociedad      1      2      A  12-13
('10/02/13', 'T1')
                               home         away  hgoal  agoal result season
date     league                                                             
10/02/13 T1             Galatasaray  Antalyaspor      2      0      H  12-13
         T1             Kayserispor     Orduspor      0      0      D  12-13
         T1      Mersin Idman Yurdu   Fenerbahce      0      1      A  12-13
         T1               Sivasspor  Trabzonspor      2      0      H  12-13
('10/02/14', 'SP1')
                  home        away  hgoal  agoal result season
date     league                                               
10/02/14 SP1     Celta  Ath Bilbao      0      0      D  13-14
('10/02/14', 'T1')
                           home         away  hgoal  agoal result season
date     league                                                         
10/02/14 T1      Genclerbirligi  Karabukspor      1      2      A  13-14
('10/02/15', 'E2')
                             home            away  hgoal  agoal result season
date     league                                                              
10/02/15 E2              Barnsley  Fleetwood Town      1      2      A  14-15
         E2          Bristol City       Port Vale      3      1      H  14-15
         E2          Chesterfield         Preston      0      2      A  14-15
         E2              Coventry      Scunthorpe      1      1      D  14-15
         E2          Crawley Town       Doncaster      0      5      A  14-15
         E2                 Crewe          Yeovil      1      0      H  14-15
         E2         Leyton Orient    Notts County      0      1      A  14-15
         E2                Oldham         Swindon      2      1      H  14-15
         E2             Peterboro      Gillingham      1      2      A  14-15
         E2      Sheffield United      Colchester      4      1      H  14-15
         E2               Walsall        Rochdale      3      2      H  14-15
('10/03/12', 'D1')
                          home        away  hgoal  agoal result season
date     league                                                       
10/03/12 D1           Augsburg    Dortmund      0      0      D  11-12
         D1      Bayern Munich  Hoffenheim      7      1      H  11-12
         D1            FC Koln      Hertha      1      0      H  11-12
         D1              Mainz    Nurnberg      2      1      H  11-12
         D1         M'gladbach    Freiburg      0      0      D  11-12
         D1          Wolfsburg  Leverkusen      3      2      H  11-12
('10/03/12', 'E2')
                               home              away  hgoal  agoal result  \
date     league                                                              
10/03/12 E2               Brentford  Sheffield United      0      2      A   
         E2                Carlisle              Bury      4      1      H   
         E2                Charlton      Notts County      2      4      A   
         E2            Huddersfield          Rochdale      2      2      D   
         E2      Milton Keynes Dons            Exeter      3      0      H   
         E2                  Oldham            Yeovil      1      2      A   
         E2                 Preston        Scunthorpe      0      0      D   
         E2          Sheffield Weds       Bournemouth      3      0      H   
         E2               Stevenage      Chesterfield      2      2      D   
         E2                Tranmere     Leyton Orient      2      0      H   
         E2                 Walsall        Hartlepool      0      0      D   
         E2                 Wycombe        Colchester      0      0      D   

                season  
date     league         
10/03/12 E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
('10/03/12', 'I1')
                    home  away  hgoal  agoal result season
date     league                                           
10/03/12 I1      Palermo  Roma      0      1      A  11-12
('10/03/12', 'SP1')
                     home         away  hgoal  agoal result season
date     league                                                   
10/03/12 SP1        Betis  Real Madrid      2      3      A  11-12
         SP1       Malaga      Levante      1      0      H  11-12
         SP1     Sociedad     Zaragoza      3      0      H  11-12
         SP1     Sp Gijon      Sevilla      1      0      H  11-12
('10/03/12', 'T1')
                        home            away  hgoal  agoal result season
date     league                                                         
10/03/12 T1       Buyuksehyr     Kayserispor      1      0      H  11-12
         T1      Galatasaray  Genclerbirligi      2      0      H  11-12
('10/03/13', 'D1')
                      home           away  hgoal  agoal result season
date     league                                                      
10/03/13 D1       Hannover  Ein Frankfurt      0      0      D  12-13
         D1      Stuttgart        Hamburg      0      1      A  12-13
('10/03/13', 'I1')
                     home        away  hgoal  agoal result season
date     league                                                  
10/03/13 I1      Atalanta     Pescara      2      1      H  12-13
         I1      Cagliari   Sampdoria      3      1      H  12-13
         I1        Chievo      Napoli      2      0      H  12-13
         I1         Inter     Bologna      0      1      A  12-13
         I1      Juventus     Catania      1      0      H  12-13
         I1         Lazio  Fiorentina      0      2      A  12-13
         I1       Palermo       Siena      1      2      A  12-13
         I1         Parma      Torino      4      1      H  12-13
('10/03/13', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
10/03/13 SP1     Ath Bilbao     Valencia      1      0      H  12-13
         SP1     Ath Madrid     Sociedad      0      1      A  12-13
         SP1          Celta  Real Madrid      1      2      A  12-13
         SP1        Levante       Getafe      0      0      D  12-13
('10/03/13', 'T1')
                        home           away  hgoal  agoal result season
date     league                                                        
10/03/13 T1       Elazigspor       Orduspor      1      0      H  12-13
         T1       Fenerbahce      Bursaspor      4      1      H  12-13
         T1      Karabukspor  Eskisehirspor      0      0      D  12-13
         T1        Sivasspor    Antalyaspor      2      1      H  12-13
('10/03/14', 'SP1')
                     home       away  hgoal  agoal result season
date     league                                                 
10/03/14 SP1      Osasuna     Malaga      0      2      A  13-14
         SP1     Sociedad  Vallecano      2      3      A  13-14
('10/03/14', 'T1')
                        home        away  hgoal  agoal result season
date     league                                                     
10/03/14 T1      Trabzonspor  Fenerbahce      0      3      A  13-14
('10/03/15', 'E2')
                     home          away  hgoal  agoal result season
date     league                                                    
10/03/15 E2      Coventry      Bradford      1      1      D  14-15
         E2        Yeovil  Bristol City      0      3      A  14-15
('10/04/12', 'D1')
                          home        away  hgoal  agoal result season
date     league                                                       
10/04/12 D1           Augsburg   Stuttgart      1      3      A  11-12
         D1             Hertha    Freiburg      1      2      A  11-12
         D1              Mainz     FC Koln      4      0      H  11-12
         D1      Werder Bremen  M'gladbach      2      2      D  11-12
('10/04/12', 'E2')
                     home              away  hgoal  agoal result season
date     league                                                        
10/04/12 E2      Rochdale  Sheffield United      2      5      A  11-12
('10/04/12', 'SP1')
                     home     away  hgoal  agoal result season
date     league                                               
10/04/12 SP1      Osasuna  Espanol      2      0      H  11-12
         SP1     Sociedad    Betis      1      1      D  11-12
('10/04/13', 'E2')
                  home       away  hgoal  agoal result season
date     league                                              
10/04/13 E2      Crewe  Brentford      0      2      A  12-13
('10/04/15', 'D1')
                     home    away  hgoal  agoal result season
date     league                                              
10/04/15 D1      Hannover  Hertha      1      1      D  14-15
('10/04/16', 'D1')
                       home        away  hgoal  agoal result season
date     league                                                    
10/04/16 D1         FC Koln  Leverkusen      0      2      A  15-16
         D1      Schalke 04    Dortmund      2      2      D  15-16
('10/04/16', 'I1')
                      home        away  hgoal  agoal result season
date     league                                                   
10/04/16 I1         Empoli  Fiorentina      2      0      H  15-16
         I1         Napoli      Verona      3      0      H  15-16
         I1        Palermo       Lazio      0      3      A  15-16
         I1      Sampdoria     Udinese      2      0      H  15-16
         I1         Torino    Atalanta      2      1      H  15-16
('10/04/16', 'SP1')
                       home       away  hgoal  agoal result season
date     league                                                   
10/04/16 SP1     Ath Bilbao  Vallecano      1      0      H  15-16
         SP1       Sp Gijon      Celta      0      1      A  15-16
         SP1       Valencia    Sevilla      2      1      H  15-16
         SP1     Villarreal     Getafe      2      0      H  15-16
('10/04/16', 'T1')
                               home            away  hgoal  agoal result  \
date     league                                                            
10/04/16 T1               Konyaspor      Fenerbahce      2      1      H   
         T1      Mersin Idman Yurdu  Genclerbirligi      1      3      A   
         T1             Trabzonspor      Buyuksehyr      1      1      D   

                season  
date     league         
10/04/16 T1      15-16  
         T1      15-16  
         T1      15-16  
('10/05/13', 'SP1')
                    home      away  hgoal  agoal result season
date     league                                               
10/05/13 SP1     Levante  Zaragoza      0      0      D  12-13
('10/05/13', 'T1')
                          home         away  hgoal  agoal result season
date     league                                                        
10/05/13 T1      Gaziantepspor   Elazigspor      1      1      D  12-13
         T1          Kasimpasa  Kayserispor      1      2      A  12-13
('10/05/14', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
10/05/14 D1           Augsburg  Ein Frankfurt      2      1      H  13-14
         D1      Bayern Munich      Stuttgart      1      0      H  13-14
         D1           Hannover       Freiburg      3      2      H  13-14
         D1             Hertha       Dortmund      0      4      A  13-14
         D1         Hoffenheim   Braunschweig      3      1      H  13-14
         D1         Leverkusen  Werder Bremen      2      1      H  13-14
         D1              Mainz        Hamburg      3      2      H  13-14
         D1         Schalke 04       Nurnberg      4      1      H  13-14
         D1          Wolfsburg     M'gladbach      3      1      H  13-14
('10/05/14', 'I1')
                   home     away  hgoal  agoal result season
date     league                                             
10/05/14 I1       Inter    Lazio      4      1      H  13-14
         I1      Verona  Udinese      2      2      D  13-14
('10/05/14', 'SP1')
                       home       away  hgoal  agoal result season
date     league                                                   
10/05/14 SP1        Levante   Valencia      2      0      H  13-14
         SP1     Villarreal  Vallecano      4      0      H  13-14
('10/05/14', 'T1')
                           home         away  hgoal  agoal result season
date     league                                                         
10/05/14 T1      Genclerbirligi  Antalyaspor      1      2      A  13-14
('10/05/15', 'D1')
                      home        away  hgoal  agoal result season
date     league                                                   
10/05/15 D1        FC Koln  Schalke 04      2      0      H  14-15
         D1      Paderborn   Wolfsburg      1      3      A  14-15
('10/05/15', 'I1')
                    home        away  hgoal  agoal result season
date     league                                                 
10/05/15 I1       Cesena    Sassuolo      2      3      A  14-15
         I1       Chievo      Verona      2      2      D  14-15
         I1       Empoli  Fiorentina      2      3      A  14-15
         I1        Lazio       Inter      1      2      A  14-15
         I1      Palermo    Atalanta      2      3      A  14-15
         I1        Parma      Napoli      2      2      D  14-15
         I1      Udinese   Sampdoria      1      4      A  14-15
('10/05/15', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
10/05/15 SP1        Almeria      Malaga      1      2      A  14-15
         SP1          Celta     Sevilla      1      1      D  14-15
         SP1        Levante  Ath Madrid      2      2      D  14-15
         SP1     Villarreal       Elche      1      0      H  14-15
('10/05/15', 'T1')
                     home           away  hgoal  agoal result season
date     league                                                     
10/05/15 T1      Besiktas  Gaziantepspor      1      1      D  14-15
         T1      Rizespor    Trabzonspor      0      2      A  14-15
('10/08/13', 'D1')
                         home           away  hgoal  agoal result season
date     league                                                         
10/08/13 D1          Augsburg       Dortmund      0      4      A  13-14
         D1      Braunschweig  Werder Bremen      0      1      A  13-14
         D1          Hannover      Wolfsburg      2      0      H  13-14
         D1            Hertha  Ein Frankfurt      6      1      H  13-14
         D1        Hoffenheim       Nurnberg      2      2      D  13-14
         D1        Leverkusen       Freiburg      3      1      H  13-14
('10/08/13', 'E2')
                               home              away  hgoal  agoal result  \
date     league                                                              
10/08/13 E2                Bradford          Carlisle      4      0      H   
         E2               Brentford  Sheffield United      3      1      H   
         E2              Colchester         Port Vale      1      0      H   
         E2           Leyton Orient        Shrewsbury      3      0      H   
         E2      Milton Keynes Dons             Crewe      1      0      H   
         E2            Notts County         Peterboro      2      4      A   
         E2                  Oldham           Walsall      0      1      A   
         E2               Rotherham           Preston      0      0      D   
         E2                 Swindon         Stevenage      1      0      H   
         E2                Tranmere      Crawley Town      3      3      D   
         E2                  Wolves        Gillingham      4      0      H   

                season  
date     league         
10/08/13 E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
('10/09/11', 'D1')
                          home            away  hgoal  agoal result season
date     league                                                           
10/09/11 D1      Bayern Munich        Freiburg      7      0      H  11-12
         D1           Dortmund          Hertha      1      2      A  11-12
         D1              Mainz      Hoffenheim      0      4      A  11-12
         D1         M'gladbach  Kaiserslautern      1      0      H  11-12
         D1          Stuttgart        Hannover      3      0      H  11-12
         D1      Werder Bremen         Hamburg      2      0      H  11-12
('10/09/11', 'E2')
                           home                away  hgoal  agoal result  \
date     league                                                            
10/09/11 E2         Bournemouth        Chesterfield      0      3      A   
         E2                Bury            Rochdale      2      4      A   
         E2            Carlisle          Hartlepool      1      2      A   
         E2            Charlton              Exeter      2      0      H   
         E2          Colchester       Leyton Orient      1      1      D   
         E2        Huddersfield            Tranmere      2      0      H   
         E2        Notts County             Walsall      2      1      H   
         E2              Oldham           Stevenage      1      1      D   
         E2          Scunthorpe    Sheffield United      1      1      D   
         E2      Sheffield Weds  Milton Keynes Dons      3      1      H   
         E2             Wycombe           Brentford      0      1      A   

                season  
date     league         
10/09/11 E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
('10/09/11', 'I1')
                   home    away  hgoal  agoal result season
date     league                                            
10/09/11 I1      Cesena  Napoli      1      3      A  11-12
('10/09/11', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
10/09/11 SP1     Real Madrid      Getafe      4      2      H  11-12
         SP1        Sociedad   Barcelona      2      2      D  11-12
         SP1        Valencia  Ath Madrid      1      0      H  11-12
         SP1      Villarreal     Sevilla      2      2      D  11-12
('10/09/11', 'T1')
                          home                away  hgoal  agoal result season
date     league                                                               
10/09/11 T1         Ankaragucu  Mersin Idman Yurdu      1      2      A  11-12
         T1      Eskisehirspor            Besiktas      2      1      H  11-12
         T1         Manisaspor         Trabzonspor      1      1      D  11-12
         T1         Samsunspor      Genclerbirligi      3      2      H  11-12
('10/10/11', 'E2')
                   home                away  hgoal  agoal result season
date     league                                                        
10/10/11 E2      Oldham  Milton Keynes Dons      2      1      H  11-12
('10/10/15', 'E2')
                             home        away  hgoal  agoal result season
date     league                                                          
10/10/15 E2              Barnsley       Crewe      1      2      A  15-16
         E2                  Bury       Wigan      2      2      D  15-16
         E2          Chesterfield  Gillingham      1      3      A  15-16
         E2        Fleetwood Town    Coventry      0      1      A  15-16
         E2                Oldham  Scunthorpe      2      4      A  15-16
         E2      Sheffield United    Rochdale      3      2      H  15-16
         E2            Shrewsbury  Colchester      4      2      H  15-16
         E2              Southend   Port Vale      1      0      H  15-16
         E2               Swindon   Peterboro      1      2      A  15-16
         E2               Walsall      Burton      2      0      H  15-16
('10/11/12', 'D1')
                               home           away  hgoal  agoal result season
date     league                                                               
10/11/12 D1                Augsburg       Dortmund      1      3      A  12-13
         D1           Bayern Munich  Ein Frankfurt      2      0      H  12-13
         D1      Fortuna Dusseldorf     Hoffenheim      1      1      D  12-13
         D1                Freiburg        Hamburg      0      0      D  12-13
         D1              Schalke 04  Werder Bremen      2      1      H  12-13
('10/11/12', 'E2')
                               home              away  hgoal  agoal result  \
date     league                                                              
10/11/12 E2               Brentford          Carlisle      2      1      H   
         E2                    Bury        Portsmouth      2      0      H   
         E2                Coventry        Scunthorpe      1      2      A   
         E2                   Crewe        Colchester      3      2      H   
         E2               Doncaster       Bournemouth      0      1      A   
         E2           Leyton Orient        Shrewsbury      2      1      H   
         E2      Milton Keynes Dons  Sheffield United      1      0      H   
         E2            Notts County      Crawley Town      1      1      D   
         E2                  Oldham          Tranmere      0      1      A   
         E2               Stevenage           Preston      1      4      A   
         E2                 Walsall           Swindon      0      2      A   
         E2                  Yeovil        Hartlepool      1      0      H   

                season  
date     league         
10/11/12 E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
('10/11/12', 'I1')
                     home      away  hgoal  agoal result season
date     league                                                
10/11/12 I1      Cagliari   Catania      0      0      D  12-13
         I1       Pescara  Juventus      1      6      A  12-13
('10/11/12', 'SP1')
                      home       away  hgoal  agoal result season
date     league                                                  
10/11/12 SP1       Espanol    Osasuna      0      3      A  12-13
         SP1        Malaga   Sociedad      1      2      A  12-13
         SP1     Vallecano      Celta      3      2      H  12-13
         SP1      Zaragoza  La Coruna      5      3      H  12-13
('10/11/12', 'T1')
                        home                  away  hgoal  agoal result season
date     league                                                               
10/11/12 T1      Karabukspor            Buyuksehyr      3      1      H  12-13
         T1        Kasimpasa           Antalyaspor      1      1      D  12-13
         T1      Trabzonspor  Akhisar Belediyespor      3      1      H  12-13
('10/11/13', 'D1')
                     home           away  hgoal  agoal result season
date     league                                                     
10/11/13 D1      Freiburg      Stuttgart      1      3      A  13-14
         D1         Mainz  Ein Frankfurt      1      0      H  13-14
('10/11/13', 'I1')
                       home       away  hgoal  agoal result season
date     league                                                   
10/11/13 I1        Atalanta    Bologna      2      1      H  13-14
         I1        Cagliari     Torino      2      1      H  13-14
         I1          Chievo      Milan      0      0      D  13-14
         I1      Fiorentina  Sampdoria      2      1      H  13-14
         I1           Genoa     Verona      2      0      H  13-14
         I1        Juventus     Napoli      3      0      H  13-14
         I1           Parma      Lazio      1      1      D  13-14
         I1            Roma   Sassuolo      1      1      D  13-14
('10/11/13', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
10/11/13 SP1          Betis   Barcelona      1      4      A  13-14
         SP1        Espanol     Sevilla      1      3      A  13-14
         SP1       Valencia  Valladolid      2      2      D  13-14
         SP1     Villarreal  Ath Madrid      1      1      D  13-14
('10/11/13', 'T1')
                           home         away  hgoal  agoal result season
date     league                                                         
10/11/13 T1          Fenerbahce  Galatasaray      2      0      H  13-14
         T1      Genclerbirligi  Trabzonspor      3      2      H  13-14
         T1           Konyaspor  Antalyaspor      2      0      H  13-14
('10/12/11', 'D1')
                          home        away  hgoal  agoal result season
date     league                                                       
10/12/11 D1           Augsburg  M'gladbach      1      0      H  11-12
         D1            FC Koln    Freiburg      4      0      H  11-12
         D1           Hannover  Leverkusen      0      0      D  11-12
         D1              Mainz     Hamburg      0      0      D  11-12
         D1           Nurnberg  Hoffenheim      0      2      A  11-12
         D1      Werder Bremen   Wolfsburg      4      1      H  11-12
('10/12/11', 'E2')
                             home                away  hgoal  agoal result  \
date     league                                                              
10/12/11 E2             Brentford          Hartlepool      2      1      H   
         E2            Colchester                Bury      4      1      H   
         E2          Huddersfield         Bournemouth      0      1      A   
         E2         Leyton Orient              Exeter      3      0      H   
         E2                Oldham      Sheffield Weds      0      2      A   
         E2               Preston           Stevenage      0      0      D   
         E2            Scunthorpe            Carlisle      1      2      A   
         E2      Sheffield United            Rochdale      3      0      H   
         E2              Tranmere  Milton Keynes Dons      0      2      A   
         E2               Walsall            Charlton      1      1      D   
         E2               Wycombe        Chesterfield      3      2      H   
         E2                Yeovil        Notts County      1      0      H   

                season  
date     league         
10/12/11 E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
('10/12/11', 'I1')
                    home        away  hgoal  agoal result season
date     league                                                 
10/12/11 I1        Inter  Fiorentina      2      0      H  11-12
         I1        Lecce       Lazio      2      3      A  11-12
         I1      Palermo      Cesena      0      1      A  11-12
         I1        Siena       Genoa      0      2      A  11-12
('10/12/11', 'SP1')
                        home       away  hgoal  agoal result season
date     league                                                    
10/12/11 SP1           Betis   Valencia      2      1      H  11-12
         SP1         Levante    Sevilla      1      0      H  11-12
         SP1     Real Madrid  Barcelona      1      3      A  11-12
('10/12/11', 'T1')
                          home           away  hgoal  agoal result season
date     league                                                          
10/12/11 T1      Gaziantepspor  Eskisehirspor      0      1      A  11-12
('10/12/12', 'I1')
                      home     away  hgoal  agoal result season
date     league                                                
10/12/12 I1        Bologna    Lazio      0      0      D  12-13
         I1      Sampdoria  Udinese      0      2      A  12-13
('10/12/12', 'SP1')
                      home      away  hgoal  agoal result season
date     league                                                 
10/12/12 SP1     Vallecano  Zaragoza      0      2      A  12-13
('11/01/13', 'SP1')
                       home       away  hgoal  agoal result season
date     league                                                   
11/01/13 SP1     Ath Bilbao  Vallecano      1      2      A  12-13
('11/01/14', 'E2')
                               home              away  hgoal  agoal result  \
date     league                                                              
11/01/14 E2                Bradford      Bristol City      1      1      D   
         E2               Brentford         Port Vale      2      0      H   
         E2              Colchester        Gillingham      3      0      H   
         E2           Leyton Orient          Carlisle      4      0      H   
         E2      Milton Keynes Dons        Shrewsbury      3      2      H   
         E2            Notts County  Sheffield United      2      1      H   
         E2                  Oldham         Stevenage      1      0      H   
         E2               Rotherham             Crewe      4      2      H   
         E2                 Swindon         Peterboro      2      1      H   
         E2                Tranmere           Walsall      1      1      D   
         E2                  Wolves           Preston      2      0      H   

                season  
date     league         
11/01/14 E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
('11/01/14', 'I1')
                    home   away  hgoal  agoal result season
date     league                                            
11/01/14 I1      Bologna  Lazio      0      0      D  13-14
         I1      Livorno  Parma      0      3      A  13-14
('11/01/14', 'SP1')
                       home       away  hgoal  agoal result season
date     league                                                   
11/01/14 SP1     Ath Bilbao    Almeria      6      1      H  13-14
         SP1     Ath Madrid  Barcelona      0      0      D  13-14
         SP1          Celta   Valencia      2      1      H  13-14
         SP1          Elche    Sevilla      1      1      D  13-14
('11/01/15', 'I1')
                       home      away  hgoal  agoal result season
date     league                                                  
11/01/15 I1        Atalanta    Chievo      1      1      D  14-15
         I1        Cagliari    Cesena      2      1      H  14-15
         I1      Fiorentina   Palermo      4      3      H  14-15
         I1           Inter     Genoa      3      1      H  14-15
         I1          Napoli  Juventus      1      3      A  14-15
         I1            Roma     Lazio      2      2      D  14-15
         I1       Sampdoria    Empoli      1      0      H  14-15
         I1          Verona     Parma      3      1      H  14-15
('11/01/15', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
11/01/15 SP1        Almeria     Sevilla      0      2      A  14-15
         SP1     Ath Bilbao       Elche      1      2      A  14-15
         SP1      Barcelona  Ath Madrid      3      1      H  14-15
         SP1        Granada    Sociedad      1      1      D  14-15
('11/02/12', 'D1')
                          home            away  hgoal  agoal result season
date     league                                                           
11/02/12 D1      Bayern Munich  Kaiserslautern      2      0      H  11-12
         D1           Dortmund      Leverkusen      1      0      H  11-12
         D1              Mainz        Hannover      1      1      D  11-12
         D1         M'gladbach      Schalke 04      3      0      H  11-12
         D1          Stuttgart          Hertha      5      0      H  11-12
         D1      Werder Bremen      Hoffenheim      1      1      D  11-12
('11/02/12', 'E2')
                             home            away  hgoal  agoal result season
date     league                                                              
11/02/12 E2                Exeter  Sheffield Weds      2      1      H  11-12
         E2            Hartlepool     Bournemouth      0      0      D  11-12
         E2      Sheffield United         Wycombe      3      0      H  11-12
('11/02/12', 'I1')
                     home     away  hgoal  agoal result season
date     league                                               
11/02/12 I1      Cagliari  Palermo      2      1      H  11-12
         I1       Udinese    Milan      1      2      A  11-12
('11/02/12', 'SP1')
                      home        away  hgoal  agoal result season
date     league                                                   
11/02/12 SP1         Betis  Ath Bilbao      2      1      H  11-12
         SP1       Osasuna   Barcelona      3      2      H  11-12
         SP1     Santander  Ath Madrid      0      0      D  11-12
('11/02/12', 'T1')
                           home                away  hgoal  agoal result  \
date     league                                                            
11/02/12 T1         Galatasaray         Kayserispor      1      0      H   
         T1      Genclerbirligi  Mersin Idman Yurdu      1      2      A   

                season  
date     league         
11/02/12 T1      11-12  
         T1      11-12  
('11/02/13', 'SP1')
                  home        away  hgoal  agoal result season
date     league                                               
11/02/13 SP1     Betis  Valladolid      0      0      D  12-13
('11/02/13', 'T1')
                          home       away  hgoal  agoal result season
date     league                                                      
11/02/13 T1      Gaziantepspor  Kasimpasa      2      1      H  12-13
('11/02/14', 'E2')
                          home          away  hgoal  agoal result season
date     league                                                         
11/02/14 E2           Carlisle      Bradford      1      0      H  13-14
         E2      Leyton Orient  Bristol City      1      3      A  13-14
         E2          Port Vale    Colchester      2      0      H  13-14
('11/02/14', 'T1')
                      home      away  hgoal  agoal result season
date     league                                                 
11/02/14 T1      Kasimpasa  Besiktas      0      3      A  13-14
('11/02/15', 'I1')
                  home    away  hgoal  agoal result season
date     league                                           
11/02/15 I1      Parma  Chievo      0      1      A  14-15
('11/02/16', 'I1')
                  home    away  hgoal  agoal result season
date     league                                           
11/02/16 I1      Lazio  Verona      5      2      H  15-16
('11/03/12', 'D1')
                          home      away  hgoal  agoal result season
date     league                                                     
11/03/12 D1         Schalke 04   Hamburg      3      1      H  11-12
         D1      Werder Bremen  Hannover      3      0      H  11-12
('11/03/12', 'I1')
                     home        away  hgoal  agoal result season
date     league                                                  
11/03/12 I1      Atalanta       Parma      1      1      D  11-12
         I1       Catania  Fiorentina      1      0      H  11-12
         I1        Cesena       Siena      0      2      A  11-12
         I1         Genoa    Juventus      0      0      D  11-12
         I1         Lazio     Bologna      1      3      A  11-12
         I1         Milan       Lecce      2      0      H  11-12
         I1        Novara     Udinese      1      0      H  11-12
('11/03/12', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
11/03/12 SP1     Ath Madrid     Granada      2      0      H  11-12
         SP1        Espanol   Vallecano      5      1      H  11-12
         SP1        Osasuna  Ath Bilbao      2      1      H  11-12
         SP1      Santander   Barcelona      0      2      A  11-12
         SP1       Valencia    Mallorca      2      2      D  11-12
('11/03/12', 'T1')
                          home                away  hgoal  agoal result season
date     league                                                               
11/03/12 T1      Eskisehirspor           Bursaspor      1      1      D  11-12
         T1        Karabukspor         Antalyaspor      2      1      H  11-12
         T1         Manisaspor  Mersin Idman Yurdu      2      0      H  11-12
         T1           Orduspor            Besiktas      1      1      D  11-12
         T1         Samsunspor       Gaziantepspor      0      0      D  11-12
('11/03/13', 'SP1')
                     home     away  hgoal  agoal result season
date     league                                               
11/03/13 SP1     Zaragoza  Granada      0      0      D  12-13
('11/03/13', 'T1')
                               home       away  hgoal  agoal result season
date     league                                                           
11/03/13 T1      Mersin Idman Yurdu  Kasimpasa      1      1      D  12-13
('11/03/14', 'E2')
                         home                away  hgoal  agoal result season
date     league                                                              
11/03/14 E2         Brentford            Tranmere      2      0      H  13-14
         E2        Colchester            Bradford      0      2      A  13-14
         E2        Gillingham            Coventry      4      2      H  13-14
         E2      Notts County  Milton Keynes Dons      1      3      A  13-14
         E2            Oldham           Rotherham      0      2      A  13-14
         E2         Peterboro        Bristol City      1      2      A  13-14
         E2         Port Vale       Leyton Orient      0      2      A  13-14
         E2        Shrewsbury        Crawley Town      1      1      D  13-14
         E2         Stevenage             Preston      1      1      D  13-14
         E2           Swindon              Wolves      1      4      A  13-14
         E2           Walsall               Crewe      1      1      D  13-14
('11/03/16', 'D1')
                   home        away  hgoal  agoal result season
date     league                                                
11/03/16 D1      Hertha  Schalke 04      2      0      H  15-16
('11/03/16', 'I1')
                     home      away  hgoal  agoal result season
date     league                                                
11/03/16 I1      Juventus  Sassuolo      1      0      H  15-16
('11/03/16', 'SP1')
                   home      away  hgoal  agoal result season
date     league                                              
11/03/16 SP1     Malaga  Sp Gijon      1      0      H  15-16
('11/03/16', 'T1')
                        home                away  hgoal  agoal result season
date     league                                                             
11/03/16 T1      Trabzonspor  Mersin Idman Yurdu      1      0      H  15-16
('11/04/12', 'D1')
                       home            away  hgoal  agoal result season
date     league                                                        
11/04/12 D1        Dortmund   Bayern Munich      1      0      H  11-12
         D1        Hannover       Wolfsburg      2      0      H  11-12
         D1      Hoffenheim         Hamburg      4      0      H  11-12
         D1      Leverkusen  Kaiserslautern      3      1      H  11-12
         D1        Nurnberg      Schalke 04      4      1      H  11-12
('11/04/12', 'I1')
                       home      away  hgoal  agoal result season
date     league                                                  
11/04/12 I1         Catania     Lecce      1      2      A  11-12
         I1      Fiorentina   Palermo      0      0      D  11-12
         I1           Genoa    Cesena      1      1      D  11-12
         I1           Inter     Siena      2      1      H  11-12
         I1        Juventus     Lazio      2      1      H  11-12
         I1          Napoli  Atalanta      1      3      A  11-12
         I1           Parma    Novara      2      0      H  11-12
         I1            Roma   Udinese      3      1      H  11-12
('11/04/12', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
11/04/12 SP1     Ath Madrid  Real Madrid      1      4      A  11-12
         SP1        Granada   Ath Bilbao      2      2      D  11-12
         SP1       Sp Gijon      Levante      3      2      H  11-12
         SP1       Valencia    Vallecano      4      1      H  11-12
('11/04/14', 'D1')
                       home           away  hgoal  agoal result season
date     league                                                       
11/04/14 D1      Schalke 04  Ein Frankfurt      2      0      H  13-14
('11/04/14', 'E2')
                      home      away  hgoal  agoal result season
date     league                                                 
11/04/14 E2      Rotherham  Bradford      0      0      D  13-14
('11/04/14', 'SP1')
                    home        away  hgoal  agoal result season
date     league                                                 
11/04/14 SP1     Osasuna  Valladolid      0      0      D  13-14
('11/04/14', 'T1')
                      home      away  hgoal  agoal result season
date     league                                                 
11/04/14 T1      Konyaspor  Besiktas      1      1      D  13-14
('11/04/15', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
11/04/15 D1      Bayern Munich  Ein Frankfurt      3      0      H  14-15
         D1            Hamburg      Wolfsburg      0      2      A  14-15
         D1              Mainz     Leverkusen      2      3      A  14-15
         D1         M'gladbach       Dortmund      3      1      H  14-15
         D1          Paderborn       Augsburg      2      1      H  14-15
         D1         Schalke 04       Freiburg      0      0      D  14-15
('11/04/15', 'E2')
                       home                away  hgoal  agoal result season
date     league                                                            
11/04/15 E2        Barnsley        Chesterfield      1      1      D  14-15
         E2        Coventry          Colchester      1      0      H  14-15
         E2           Crewe       Leyton Orient      1      1      D  14-15
         E2       Doncaster            Rochdale      1      1      D  14-15
         E2      Gillingham            Bradford      1      0      H  14-15
         E2          Oldham    Sheffield United      2      2      D  14-15
         E2       Port Vale  Milton Keynes Dons      0      0      D  14-15
         E2         Preston        Bristol City      1      1      D  14-15
         E2      Scunthorpe        Crawley Town      2      1      H  14-15
         E2         Swindon           Peterboro      1      0      H  14-15
         E2         Walsall      Fleetwood Town      1      0      H  14-15
         E2          Yeovil        Notts County      1      1      D  14-15
('11/04/15', 'I1')
                   home      away  hgoal  agoal result season
date     league                                              
11/04/15 I1       Genoa  Cagliari      2      0      H  14-15
         I1       Parma  Juventus      1      0      H  14-15
         I1      Verona     Inter      0      3      A  14-15
('11/04/15', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
11/04/15 SP1         Almeria     Granada      3      0      H  14-15
         SP1           Celta   Vallecano      6      1      H  14-15
         SP1          Malaga  Ath Madrid      2      2      D  14-15
         SP1     Real Madrid       Eibar      3      0      H  14-15
         SP1         Sevilla   Barcelona      2      2      D  14-15
('11/04/16', 'I1')
                 home     away  hgoal  agoal result season
date     league                                           
11/04/16 I1      Roma  Bologna      1      1      D  15-16
('11/04/16', 'SP1')
                      home        away  hgoal  agoal result season
date     league                                                   
11/04/16 SP1     La Coruna  Las Palmas      1      3      A  15-16
('11/04/16', 'T1')
                                 home       away  hgoal  agoal result season
date     league                                                             
11/04/16 T1      Akhisar Belediyespor  Kasimpasa      0      1      A  15-16
         T1                  Besiktas  Bursaspor      3      2      H  15-16
('11/05/13', 'D1')
                               home           away  hgoal  agoal result season
date     league                                                               
11/05/13 D1           Bayern Munich       Augsburg      3      0      H  12-13
         D1      Fortuna Dusseldorf       Nurnberg      1      2      A  12-13
         D1          Greuther Furth       Freiburg      1      2      A  12-13
         D1              Hoffenheim        Hamburg      1      4      A  12-13
         D1              Leverkusen       Hannover      3      1      H  12-13
         D1                   Mainz     M'gladbach      2      4      A  12-13
         D1              Schalke 04      Stuttgart      1      2      A  12-13
         D1           Werder Bremen  Ein Frankfurt      1      1      D  12-13
         D1               Wolfsburg       Dortmund      3      3      D  12-13
('11/05/13', 'I1')
                     home      away  hgoal  agoal result season
date     league                                                
11/05/13 I1       Catania   Pescara      1      0      H  12-13
         I1      Juventus  Cagliari      1      1      D  12-13
('11/05/13', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
11/05/13 SP1     Ath Bilbao     Mallorca      2      1      H  12-13
         SP1        Espanol  Real Madrid      1      1      D  12-13
         SP1        Osasuna       Getafe      1      0      H  12-13
         SP1     Valladolid    La Coruna      1      0      H  12-13
('11/05/13', 'T1')
                        home            away  hgoal  agoal result season
date     league                                                         
11/05/13 T1      Antalyaspor        Orduspor      1      0      H  12-13
         T1         Besiktas  Genclerbirligi      3      0      H  12-13
('11/05/14', 'I1')
                      home        away  hgoal  agoal result season
date     league                                                   
11/05/14 I1       Atalanta       Milan      2      1      H  13-14
         I1        Bologna     Catania      1      2      A  13-14
         I1       Cagliari      Chievo      0      1      A  13-14
         I1        Livorno  Fiorentina      0      1      A  13-14
         I1           Roma    Juventus      0      1      A  13-14
         I1      Sampdoria      Napoli      2      5      A  13-14
         I1       Sassuolo       Genoa      4      2      H  13-14
         I1         Torino       Parma      1      1      D  13-14
('11/05/14', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
11/05/14 SP1     Ath Bilbao     Sociedad      1      1      D  13-14
         SP1     Ath Madrid       Malaga      1      1      D  13-14
         SP1          Betis   Valladolid      4      3      H  13-14
         SP1          Celta  Real Madrid      2      0      H  13-14
         SP1          Elche    Barcelona      0      0      D  13-14
         SP1        Espanol      Osasuna      1      1      D  13-14
         SP1         Getafe      Sevilla      1      0      H  13-14
         SP1        Granada      Almeria      0      2      A  13-14
('11/05/14', 'T1')
                          home                  away  hgoal  agoal result  \
date     league                                                             
11/05/14 T1         Elazigspor              Besiktas      0      1      A   
         T1        Erciyesspor             Bursaspor      1      1      D   
         T1      Gaziantepspor         Eskisehirspor      1      1      D   
         T1          Kasimpasa              Rizespor      1      1      D   
         T1          Konyaspor           Kayserispor      3      0      H   
         T1          Sivasspor  Akhisar Belediyespor      3      1      H   
         T1        Trabzonspor           Galatasaray      1      4      A   

                season  
date     league         
11/05/14 T1      13-14  
         T1      13-14  
         T1      13-14  
         T1      13-14  
         T1      13-14  
         T1      13-14  
         T1      13-14  
('11/05/15', 'I1')
                  home    away  hgoal  agoal result season
date     league                                           
11/05/15 I1      Genoa  Torino      5      1      H  14-15
('11/05/15', 'SP1')
                      home    away  hgoal  agoal result season
date     league                                               
11/05/15 SP1     Vallecano  Getafe      2      0      H  14-15
('11/08/13', 'D1')
                       home       away  hgoal  agoal result season
date     league                                                   
11/08/13 D1           Mainz  Stuttgart      3      2      H  13-14
         D1      Schalke 04    Hamburg      3      3      D  13-14
('11/08/13', 'E2')
                     home          away  hgoal  agoal result season
date     league                                                    
11/08/13 E2      Coventry  Bristol City      5      4      H  13-14
('11/09/11', 'D1')
                      home        away  hgoal  agoal result season
date     league                                                   
11/09/11 D1        FC Koln    Nurnberg      1      2      A  11-12
         D1      Wolfsburg  Schalke 04      2      1      H  11-12
('11/09/11', 'I1')
                       home      away  hgoal  agoal result season
date     league                                                  
11/09/11 I1         Catania     Siena      0      0      D  11-12
         I1          Chievo    Novara      2      2      D  11-12
         I1      Fiorentina   Bologna      2      0      H  11-12
         I1           Genoa  Atalanta      2      2      D  11-12
         I1        Juventus     Parma      4      1      H  11-12
         I1           Lecce   Udinese      0      2      A  11-12
         I1         Palermo     Inter      4      3      H  11-12
         I1            Roma  Cagliari      1      2      A  11-12
('11/09/11', 'SP1')
                      home        away  hgoal  agoal result season
date     league                                                   
11/09/11 SP1         Betis    Mallorca      1      0      H  11-12
         SP1       Espanol  Ath Bilbao      2      1      H  11-12
         SP1       Osasuna    Sp Gijon      2      1      H  11-12
         SP1     Santander     Levante      0      0      D  11-12
         SP1     Vallecano    Zaragoza      0      0      D  11-12
('11/09/11', 'T1')
                        home           away  hgoal  agoal result season
date     league                                                        
11/09/11 T1      Antalyaspor  Gaziantepspor      1      0      H  11-12
         T1        Bursaspor    Kayserispor      3      0      H  11-12
         T1       Buyuksehyr    Galatasaray      2      0      H  11-12
         T1      Karabukspor      Sivasspor      2      1      H  11-12
('11/09/15', 'D1')
                       home     away  hgoal  agoal result season
date     league                                                 
11/09/15 D1      M'gladbach  Hamburg      0      3      A  15-16
('11/09/15', 'SP1')
                    home     away  hgoal  agoal result season
date     league                                              
11/09/15 SP1     Levante  Sevilla      1      1      D  15-16
('11/10/14', 'E2')
                             home            away  hgoal  agoal result season
date     league                                                              
11/10/14 E2          Bristol City    Chesterfield      3      2      H  14-15
         E2            Colchester  Fleetwood Town      2      1      H  14-15
         E2          Crawley Town       Peterboro      1      4      A  14-15
         E2                 Crewe        Coventry      2      1      H  14-15
         E2            Gillingham      Scunthorpe      0      3      A  14-15
         E2                Oldham         Walsall      2      1      H  14-15
         E2             Port Vale          Yeovil      4      1      H  14-15
         E2      Sheffield United   Leyton Orient      2      2      D  14-15
('11/11/12', 'D1')
                           home        away  hgoal  agoal result season
date     league                                                        
11/11/12 D1      Greuther Furth  M'gladbach      2      4      A  12-13
         D1           Stuttgart    Hannover      2      4      A  12-13
         D1           Wolfsburg  Leverkusen      3      1      H  12-13
('11/11/12', 'I1')
                     home        away  hgoal  agoal result season
date     league                                                  
11/11/12 I1      Atalanta       Inter      3      2      H  12-13
         I1        Chievo     Udinese      2      2      D  12-13
         I1         Genoa      Napoli      2      4      A  12-13
         I1         Lazio        Roma      3      2      H  12-13
         I1         Milan  Fiorentina      1      3      A  12-13
         I1       Palermo   Sampdoria      2      0      H  12-13
         I1         Parma       Siena      0      0      D  12-13
         I1        Torino     Bologna      1      0      H  12-13
('11/11/12', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
11/11/12 SP1     Ath Bilbao      Sevilla      2      1      H  12-13
         SP1     Ath Madrid       Getafe      2      0      H  12-13
         SP1        Levante  Real Madrid      1      2      A  12-13
         SP1       Mallorca    Barcelona      2      4      A  12-13
         SP1     Valladolid     Valencia      1      1      D  12-13
('11/11/12', 'T1')
                               home            away  hgoal  agoal result  \
date     league                                                            
11/11/12 T1              Elazigspor     Kayserispor      0      4      A   
         T1              Fenerbahce        Orduspor      2      1      H   
         T1           Gaziantepspor  Genclerbirligi      2      3      A   
         T1      Mersin Idman Yurdu     Galatasaray      1      1      D   

                season  
date     league         
11/11/12 T1      12-13  
         T1      12-13  
         T1      12-13  
         T1      12-13  
('11/12/11', 'D1')
                      home            away  hgoal  agoal result season
date     league                                                       
11/12/11 D1       Dortmund  Kaiserslautern      1      1      D  11-12
         D1      Stuttgart   Bayern Munich      1      2      A  11-12
('11/12/11', 'I1')
                     home     away  hgoal  agoal result season
date     league                                               
11/12/11 I1      Atalanta  Catania      1      1      D  11-12
         I1       Bologna    Milan      2      2      D  11-12
         I1      Cagliari    Parma      0      0      D  11-12
         I1        Novara   Napoli      1      1      D  11-12
         I1       Udinese   Chievo      2      1      H  11-12
('11/12/11', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
11/12/11 SP1     Ath Bilbao   Santander      1      1      D  11-12
         SP1        Espanol  Ath Madrid      4      2      H  11-12
         SP1         Getafe     Granada      1      0      H  11-12
         SP1         Malaga     Osasuna      1      1      D  11-12
         SP1      Vallecano    Sp Gijon      1      3      A  11-12
         SP1     Villarreal    Sociedad      1      1      D  11-12
         SP1       Zaragoza    Mallorca      0      1      A  11-12
('11/12/11', 'T1')
                               home         away  hgoal  agoal result season
date     league                                                             
11/12/11 T1             Antalyaspor   Ankaragucu      1      0      H  11-12
         T1                Besiktas   Buyuksehyr      1      1      D  11-12
         T1          Genclerbirligi     Orduspor      3      1      H  11-12
         T1      Mersin Idman Yurdu   Samsunspor      1      0      H  11-12
         T1             Trabzonspor  Galatasaray      0      3      A  11-12
('11/12/15', 'D1')
                  home       away  hgoal  agoal result season
date     league                                              
11/12/15 D1      Mainz  Stuttgart      0      0      D  15-16
('11/12/15', 'SP1')
                   home      away  hgoal  agoal result season
date     league                                              
11/12/15 SP1     Getafe  Sociedad      1      1      D  15-16
('11/12/15', 'T1')
                      home         away  hgoal  agoal result season
date     league                                                    
11/12/15 T1      Bursaspor  Osmanlispor      0      4      A  15-16
('12/01/13', 'E2')
                               home          away  hgoal  agoal result season
date     league                                                              
12/01/13 E2      Milton Keynes Dons          Bury      1      1      D  12-13
         E2                  Oldham     Brentford      0      2      A  12-13
         E2        Sheffield United        Yeovil      0      2      A  12-13
         E2              Shrewsbury    Hartlepool      1      1      D  12-13
         E2               Stevenage     Doncaster      1      2      A  12-13
         E2                Tranmere  Crawley Town      2      0      H  12-13
('12/01/13', 'I1')
                    home     away  hgoal  agoal result season
date     league                                              
12/01/13 I1      Bologna   Chievo      4      0      H  12-13
         I1        Inter  Pescara      2      0      H  12-13
('12/01/13', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
12/01/13 SP1        Espanol        Celta      1      0      H  12-13
         SP1        Osasuna  Real Madrid      0      0      D  12-13
         SP1       Valencia      Sevilla      2      0      H  12-13
         SP1     Valladolid     Mallorca      3      1      H  12-13
('12/01/14', 'E2')
                     home          away  hgoal  agoal result season
date     league                                                    
12/01/14 E2      Coventry  Crawley Town      2      2      D  13-14
('12/01/14', 'I1')
                     home        away  hgoal  agoal result season
date     league                                                  
12/01/14 I1      Atalanta     Catania      2      1      H  13-14
         I1      Cagliari    Juventus      1      4      A  13-14
         I1          Roma       Genoa      4      0      H  13-14
         I1      Sassuolo       Milan      4      3      H  13-14
         I1        Torino  Fiorentina      0      0      D  13-14
         I1        Verona      Napoli      0      3      A  13-14
('12/01/14', 'SP1')
                    home         away  hgoal  agoal result season
date     league                                                  
12/01/14 SP1       Betis      Osasuna      1      2      A  13-14
         SP1     Espanol  Real Madrid      0      1      A  13-14
         SP1      Getafe    Vallecano      0      1      A  13-14
         SP1     Levante       Malaga      1      0      H  13-14
('12/01/15', 'E2')
                     home     away  hgoal  agoal result season
date     league                                               
12/01/15 E2      Coventry  Swindon      0      3      A  14-15
('12/01/15', 'SP1')
                      home     away  hgoal  agoal result season
date     league                                                
12/01/15 SP1     Vallecano  Cordoba      0      1      A  14-15
('12/01/16', 'E2')
                     home              away  hgoal  agoal result season
date     league                                                        
12/01/16 E2      Coventry           Walsall      1      1      D  15-16
         E2         Wigan  Sheffield United      3      3      D  15-16
('12/02/12', 'D1')
                     home      away  hgoal  agoal result season
date     league                                                
12/02/12 D1      Augsburg  Nurnberg      0      0      D  11-12
         D1       FC Koln   Hamburg      0      1      A  11-12
('12/02/12', 'I1')
                     home    away  hgoal  agoal result season
date     league                                              
12/02/12 I1      Atalanta   Lecce      0      0      D  11-12
         I1       Catania   Genoa      4      0      H  11-12
         I1         Inter  Novara      0      1      A  11-12
('12/02/12', 'SP1')
                        home      away  hgoal  agoal result season
date     league                                                   
12/02/12 SP1         Espanol  Zaragoza      0      2      A  11-12
         SP1          Malaga  Mallorca      3      1      H  11-12
         SP1     Real Madrid   Levante      4      2      H  11-12
         SP1        Valencia  Sp Gijon      4      0      H  11-12
         SP1       Vallecano    Getafe      2      0      H  11-12
         SP1      Villarreal   Granada      3      1      H  11-12
('12/02/12', 'T1')
                        home           away  hgoal  agoal result season
date     league                                                        
12/02/12 T1       Buyuksehyr     Ankaragucu      3      0      H  11-12
         T1      Karabukspor     Fenerbahce      2      1      H  11-12
         T1       Manisaspor      Bursaspor      1      3      A  11-12
         T1         Orduspor    Antalyaspor      3      2      H  11-12
         T1       Samsunspor  Eskisehirspor      3      1      H  11-12
('12/02/13', 'E2')
                       home                away  hgoal  agoal result season
date     league                                                            
12/02/13 E2       Brentford           Stevenage      2      0      H  12-13
         E2            Bury    Sheffield United      0      2      A  12-13
         E2           Crewe         Bournemouth      1      2      A  12-13
         E2       Doncaster  Milton Keynes Dons      0      0      D  12-13
         E2      Hartlepool          Portsmouth      0      0      D  12-13
         E2      Scunthorpe            Carlisle      3      1      H  12-13
         E2          Yeovil             Preston      3      1      H  12-13
('12/02/16', 'D1')
                  home        away  hgoal  agoal result season
date     league                                               
12/02/16 D1      Mainz  Schalke 04      2      1      H  15-16
('12/02/16', 'E2')
                   home          away  hgoal  agoal result season
date     league                                                  
12/02/16 E2      Burton  Chesterfield      1      0      H  15-16
('12/02/16', 'I1')
                  home  away  hgoal  agoal result season
date     league                                         
12/02/16 I1      Carpi  Roma      1      3      A  15-16
('12/02/16', 'SP1')
                     home       away  hgoal  agoal result season
date     league                                                 
12/02/16 SP1     Sp Gijon  Vallecano      2      2      D  15-16
('12/02/16', 'T1')
                       home       away  hgoal  agoal result season
date     league                                                   
12/02/16 T1      Fenerbahce  Kasimpasa      3      1      H  15-16
('12/03/12', 'SP1')
                       home    away  hgoal  agoal result season
date     league                                                
12/03/12 SP1     Villarreal  Getafe      1      2      A  11-12
('12/03/12', 'T1')
                        home       away  hgoal  agoal result season
date     league                                                    
12/03/12 T1      Trabzonspor  Sivasspor      2      1      H  11-12
('12/03/13', 'E2')
                               home          away  hgoal  agoal result season
date     league                                                              
12/03/13 E2               Brentford       Swindon      2      1      H  12-13
         E2                Coventry    Colchester      2      2      D  12-13
         E2           Leyton Orient    Portsmouth      1      0      H  12-13
         E2      Milton Keynes Dons    Shrewsbury      2      3      A  12-13
         E2            Notts County       Preston      0      1      A  12-13
         E2               Stevenage   Bournemouth      0      1      A  12-13
         E2                 Walsall      Tranmere      2      0      H  12-13
         E2                  Yeovil  Crawley Town      2      2      D  12-13
('12/03/14', 'E2')
                             home      away  hgoal  agoal result season
date     league                                                        
12/03/14 E2      Sheffield United  Carlisle      1      0      H  13-14
('12/03/16', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
12/03/16 D1      Bayern Munich  Werder Bremen      5      0      H  15-16
         D1          Darmstadt       Augsburg      2      2      D  15-16
         D1           Hannover        FC Koln      0      2      A  15-16
         D1         Hoffenheim      Wolfsburg      1      0      H  15-16
         D1         Ingolstadt      Stuttgart      3      3      D  15-16
         D1         M'gladbach  Ein Frankfurt      3      0      H  15-16
('12/03/16', 'E2')
                             home            away  hgoal  agoal result season
date     league                                                              
12/03/16 E2              Barnsley        Southend      0      2      A  15-16
         E2             Blackpool        Coventry      0      1      A  15-16
         E2              Bradford       Doncaster      2      1      H  15-16
         E2                Burton  Fleetwood Town      2      1      H  15-16
         E2          Chesterfield         Walsall      1      4      A  15-16
         E2            Colchester           Wigan      3      3      D  15-16
         E2            Gillingham           Crewe      3      0      H  15-16
         E2             Peterboro       Port Vale      2      3      A  15-16
         E2              Rochdale            Bury      3      0      H  15-16
         E2      Sheffield United          Oldham      3      0      H  15-16
         E2            Shrewsbury      Scunthorpe      2      2      D  15-16
         E2               Swindon        Millwall      2      2      D  15-16
('12/03/16', 'I1')
                   home       away  hgoal  agoal result season
date     league                                               
12/03/16 I1      Empoli  Sampdoria      1      1      D  15-16
         I1       Inter    Bologna      2      1      H  15-16
('12/03/16', 'SP1')
                       home       away  hgoal  agoal result season
date     league                                                   
12/03/16 SP1     Ath Madrid  La Coruna      3      0      H  15-16
         SP1      Barcelona     Getafe      6      0      H  15-16
         SP1          Celta   Sociedad      1      0      H  15-16
         SP1      Vallecano      Eibar      1      1      D  15-16
('12/03/16', 'T1')
                          home         away  hgoal  agoal result season
date     league                                                        
12/03/16 T1         Buyuksehyr  Osmanlispor      2      3      A  15-16
         T1      Gaziantepspor    Konyaspor      0      1      A  15-16
         T1           Rizespor     Besiktas      1      2      A  15-16
('12/04/12', 'I1')
                    home      away  hgoal  agoal result season
date     league                                               
12/04/12 I1      Bologna  Cagliari      1      0      H  11-12
('12/04/12', 'SP1')
                       home      away  hgoal  agoal result season
date     league                                                  
12/04/12 SP1      Santander  Mallorca      0      3      A  11-12
         SP1        Sevilla  Zaragoza      3      0      H  11-12
         SP1     Villarreal    Malaga      2      1      H  11-12
('12/04/13', 'D1')
                     home      away  hgoal  agoal result season
date     league                                                
12/04/13 D1      Freiburg  Hannover      3      1      H  12-13
('12/04/13', 'SP1')
                  home     away  hgoal  agoal result season
date     league                                            
12/04/13 SP1     Betis  Sevilla      3      3      D  12-13
('12/04/13', 'T1')
                        home            away  hgoal  agoal result season
date     league                                                         
12/04/13 T1        Sivasspor  Genclerbirligi      1      1      D  12-13
         T1      Trabzonspor        Orduspor      1      0      H  12-13
('12/04/14', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
12/04/14 D1      Bayern Munich       Dortmund      0      3      A  13-14
         D1           Freiburg   Braunschweig      2      0      H  13-14
         D1           Hannover        Hamburg      2      1      H  13-14
         D1              Mainz  Werder Bremen      3      0      H  13-14
         D1         M'gladbach      Stuttgart      1      1      D  13-14
         D1          Wolfsburg       Nurnberg      4      1      H  13-14
('12/04/14', 'E2')
                               home          away  hgoal  agoal result season
date     league                                                              
12/04/14 E2                   Crewe        Wolves      0      2      A  13-14
         E2           Leyton Orient    Gillingham      5      1      H  13-14
         E2      Milton Keynes Dons  Crawley Town      0      2      A  13-14
         E2            Notts County     Port Vale      4      2      H  13-14
         E2               Peterboro      Coventry      1      0      H  13-14
         E2                 Preston      Carlisle      6      1      H  13-14
         E2               Stevenage    Colchester      2      3      A  13-14
         E2                 Swindon     Brentford      1      0      H  13-14
         E2                Tranmere    Shrewsbury      2      1      H  13-14
         E2                 Walsall  Bristol City      0      1      A  13-14
('12/04/14', 'I1')
                     home      away  hgoal  agoal result season
date     league                                                
12/04/14 I1          Roma  Atalanta      3      1      H  13-14
         I1      Sassuolo  Cagliari      1      1      D  13-14
('12/04/14', 'SP1')
                        home       away  hgoal  agoal result season
date     league                                                    
12/04/14 SP1           Celta   Sociedad      2      2      D  13-14
         SP1         Granada  Barcelona      1      0      H  13-14
         SP1     Real Madrid    Almeria      4      0      H  13-14
         SP1      Villarreal    Levante      1      0      H  13-14
('12/04/14', 'T1')
                        home                  away  hgoal  agoal result season
date     league                                                               
12/04/14 T1      Karabukspor  Akhisar Belediyespor      0      2      A  13-14
         T1        Kasimpasa             Bursaspor      1      1      D  13-14
         T1      Kayserispor              Rizespor      0      2      A  13-14
         T1        Sivasspor           Galatasaray      2      1      H  13-14
('12/04/15', 'D1')
                      home           away  hgoal  agoal result season
date     league                                                      
12/04/15 D1        FC Koln     Hoffenheim      3      2      H  14-15
         D1      Stuttgart  Werder Bremen      3      2      H  14-15
('12/04/15', 'I1')
                     home        away  hgoal  agoal result season
date     league                                                  
12/04/15 I1      Atalanta    Sassuolo      2      1      H  14-15
         I1        Cesena      Chievo      0      1      A  14-15
         I1         Lazio      Empoli      4      0      H  14-15
         I1         Milan   Sampdoria      1      1      D  14-15
         I1        Napoli  Fiorentina      3      0      H  14-15
         I1        Torino        Roma      1      1      D  14-15
         I1       Udinese     Palermo      1      3      A  14-15
('12/04/15', 'SP1')
                    home   away  hgoal  agoal result season
date     league                                            
12/04/15 SP1     Cordoba  Elche      0      2      A  14-15
('12/04/16', 'E2')
                       home     away  hgoal  agoal result season
date     league                                                 
12/04/16 E2        Barnsley   Oldham      2      1      H  15-16
         E2      Gillingham  Walsall      1      2      A  15-16
('12/05/12', 'SP1')
                     home       away  hgoal  agoal result season
date     league                                                 
12/05/12 SP1        Betis  Barcelona      2      2      D  11-12
         SP1     Sociedad   Valencia      1      0      H  11-12
('12/05/13', 'I1')
                       home       away  hgoal  agoal result season
date     league                                                   
12/05/13 I1          Chievo     Torino      1      1      D  12-13
         I1      Fiorentina    Palermo      1      0      H  12-13
         I1           Genoa      Inter      0      0      D  12-13
         I1           Lazio  Sampdoria      2      0      H  12-13
         I1           Milan       Roma      0      0      D  12-13
         I1          Napoli      Siena      2      1      H  12-13
         I1           Parma    Bologna      0      2      A  12-13
         I1         Udinese   Atalanta      2      1      H  12-13
('12/05/13', 'SP1')
                       home       away  hgoal  agoal result season
date     league                                                   
12/05/13 SP1     Ath Madrid  Barcelona      1      2      A  12-13
         SP1          Betis      Celta      1      0      H  12-13
         SP1         Malaga    Sevilla      0      0      D  12-13
         SP1      Vallecano   Valencia      0      4      A  12-13
('12/05/13', 'T1')
                       home         away  hgoal  agoal result season
date     league                                                     
12/05/13 T1      Fenerbahce  Galatasaray      2      1      H  12-13
('12/05/15', 'T1')
                               home            away  hgoal  agoal result  \
date     league                                                            
12/05/15 T1              Buyuksehyr       Sivasspor      2      1      H   
         T1             Karabukspor   Eskisehirspor      2      2      D   
         T1               Kasimpasa   Balikesirspor      2      3      A   
         T1               Konyaspor  Genclerbirligi      1      0      H   
         T1      Mersin Idman Yurdu     Galatasaray      0      1      A   

                season  
date     league         
12/05/15 T1      14-15  
         T1      14-15  
         T1      14-15  
         T1      14-15  
         T1      14-15  
('12/09/11', 'SP1')
                   home     away  hgoal  agoal result season
date     league                                             
12/09/11 SP1     Malaga  Granada      4      0      H  11-12
('12/09/11', 'T1')
                       home      away  hgoal  agoal result season
date     league                                                  
12/09/11 T1      Fenerbahce  Orduspor      1      0      H  11-12
('12/09/14', 'D1')
                       home           away  hgoal  agoal result season
date     league                                                       
12/09/14 D1      Leverkusen  Werder Bremen      3      3      D  14-15
('12/09/14', 'SP1')
                    home     away  hgoal  agoal result season
date     league                                              
12/09/14 SP1     Almeria  Cordoba      1      1      D  14-15
('12/09/15', 'D1')
                          home       away  hgoal  agoal result season
date     league                                                      
12/09/15 D1      Bayern Munich   Augsburg      2      1      H  15-16
         D1      Ein Frankfurt    FC Koln      6      2      H  15-16
         D1           Hannover   Dortmund      2      4      A  15-16
         D1             Hertha  Stuttgart      2      1      H  15-16
         D1         Ingolstadt  Wolfsburg      0      0      D  15-16
         D1         Leverkusen  Darmstadt      0      1      A  15-16
('12/09/15', 'E2')
                             home        away  hgoal  agoal result season
date     league                                                          
12/09/15 E2              Barnsley     Swindon      4      1      H  15-16
         E2                Burton    Rochdale      1      0      H  15-16
         E2          Chesterfield  Colchester      3      3      D  15-16
         E2                 Crewe    Millwall      1      3      A  15-16
         E2        Fleetwood Town    Bradford      1      1      D  15-16
         E2            Gillingham   Blackpool      2      1      H  15-16
         E2                Oldham   Peterboro      1      5      A  15-16
         E2             Port Vale       Wigan      3      2      H  15-16
         E2            Scunthorpe    Coventry      1      0      H  15-16
         E2      Sheffield United        Bury      1      3      A  15-16
         E2              Southend  Shrewsbury      0      1      A  15-16
         E2               Walsall   Doncaster      2      0      H  15-16
('12/09/15', 'I1')
                       home    away  hgoal  agoal result season
date     league                                                
12/09/15 I1      Fiorentina   Genoa      1      0      H  15-16
         I1       Frosinone    Roma      0      2      A  15-16
         I1        Juventus  Chievo      1      1      D  15-16
('12/09/15', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
12/09/15 SP1     Ath Madrid    Barcelona      1      2      A  15-16
         SP1          Betis     Sociedad      1      0      H  15-16
         SP1        Espanol  Real Madrid      0      6      A  15-16
         SP1       Sp Gijon     Valencia      0      1      A  15-16
('12/09/15', 'T1')
                                 home                away  hgoal  agoal  \
date     league                                                           
12/09/15 T1      Akhisar Belediyespor       Gaziantepspor      0      0   
         T1               Antalyaspor       Eskisehirspor      2      0   
         T1                 Bursaspor      Genclerbirligi      3      2   
         T1               Galatasaray  Mersin Idman Yurdu      1      1   

                result season  
date     league                
12/09/15 T1          D  15-16  
         T1          H  15-16  
         T1          H  15-16  
         T1          D  15-16  
('12/10/13', 'E2')
                          home                away  hgoal  agoal result season
date     league                                                               
12/10/13 E2         Colchester             Walsall      1      1      D  13-14
         E2      Leyton Orient  Milton Keynes Dons      2      1      H  13-14
         E2          Port Vale           Peterboro      0      1      A  13-14
         E2            Preston               Crewe      0      2      A  13-14
         E2          Rotherham             Swindon      0      4      A  13-14
         E2         Shrewsbury          Gillingham      2      0      H  13-14
         E2          Stevenage           Brentford      2      1      H  13-14
('12/10/14', 'E2')
                     home      away  hgoal  agoal result season
date     league                                                
12/10/14 E2      Barnsley  Bradford      3      1      H  14-15
('12/12/11', 'I1')
                 home      away  hgoal  agoal result season
date     league                                            
12/12/11 I1      Roma  Juventus      1      1      D  11-12
('12/12/11', 'T1')
                        home         away  hgoal  agoal result season
date     league                                                      
12/12/11 T1        Bursaspor   Fenerbahce      0      2      A  11-12
         T1      Kayserispor  Karabukspor      2      0      H  11-12
         T1        Sivasspor   Manisaspor      2      2      D  11-12
('12/12/14', 'D1')
                       home           away  hgoal  agoal result season
date     league                                                       
12/12/14 D1      Hoffenheim  Ein Frankfurt      3      2      H  14-15
('12/12/14', 'SP1')
                    home         away  hgoal  agoal result season
date     league                                                  
12/12/14 SP1     Almeria  Real Madrid      1      4      A  14-15
('12/12/14', 'T1')
                       home       away  hgoal  agoal result season
date     league                                                   
12/12/14 T1      Fenerbahce  Sivasspor      4      1      H  14-15
('12/12/15', 'D1')
                          home        away  hgoal  agoal result season
date     league                                                       
12/12/15 D1      Bayern Munich  Ingolstadt      2      0      H  15-16
         D1          Darmstadt      Hertha      0      4      A  15-16
         D1         Hoffenheim    Hannover      1      0      H  15-16
         D1         Leverkusen  M'gladbach      5      0      H  15-16
         D1      Werder Bremen     FC Koln      1      1      D  15-16
         D1          Wolfsburg     Hamburg      1      1      D  15-16
('12/12/15', 'E2')
                       home          away  hgoal  agoal result season
date     league                                                      
12/12/15 E2            Bury  Chesterfield      1      0      H  15-16
         E2      Colchester      Barnsley      2      3      A  15-16
         E2       Doncaster         Crewe      3      2      H  15-16
         E2      Gillingham        Burton      0      3      A  15-16
         E2       Peterboro    Shrewsbury      1      1      D  15-16
         E2       Port Vale    Scunthorpe      1      1      D  15-16
         E2         Swindon      Rochdale      2      1      H  15-16
         E2           Wigan     Blackpool      0      1      A  15-16
('12/12/15', 'I1')
                    home       away  hgoal  agoal result season
date     league                                                
12/12/15 I1        Genoa    Bologna      0      1      A  15-16
         I1      Palermo  Frosinone      4      1      H  15-16
         I1      Udinese      Inter      0      4      A  15-16
('12/12/15', 'SP1')
                       home       away  hgoal  agoal result season
date     league                                                   
12/12/15 SP1      Barcelona  La Coruna      2      2      D  15-16
         SP1          Celta    Espanol      1      0      H  15-16
         SP1     Las Palmas      Betis      1      0      H  15-16
         SP1        Levante    Granada      1      2      A  15-16
         SP1        Sevilla   Sp Gijon      2      0      H  15-16
('12/12/15', 'T1')
                          home                away  hgoal  agoal result season
date     league                                                               
12/12/15 T1        Antalyaspor  Mersin Idman Yurdu      3      2      H  15-16
         T1      Eskisehirspor       Gaziantepspor      1      2      A  15-16
         T1          Kasimpasa           Konyaspor      2      1      H  15-16
         T1           Rizespor         Trabzonspor      3      0      H  15-16
('13/01/13', 'E2')
                     home      away  hgoal  agoal result season
date     league                                                
13/01/13 E2      Carlisle  Coventry      1      0      H  12-13
         E2       Preston   Walsall      1      3      A  12-13
('13/01/13', 'I1')
                      home        away  hgoal  agoal result season
date     league                                                   
13/01/13 I1       Cagliari       Genoa      2      1      H  12-13
         I1        Catania        Roma      1      0      H  12-13
         I1          Lazio    Atalanta      2      0      H  12-13
         I1         Napoli     Palermo      3      0      H  12-13
         I1          Parma    Juventus      1      1      D  12-13
         I1      Sampdoria       Milan      0      0      D  12-13
         I1         Torino       Siena      3      2      H  12-13
         I1        Udinese  Fiorentina      3      1      H  12-13
('13/01/13', 'SP1')
                       home       away  hgoal  agoal result season
date     league                                                   
13/01/13 SP1     Ath Madrid   Zaragoza      2      0      H  12-13
         SP1          Betis    Levante      2      0      H  12-13
         SP1         Malaga  Barcelona      1      3      A  12-13
         SP1       Sociedad  La Coruna      1      1      D  12-13
('13/01/14', 'I1')
                      home     away  hgoal  agoal result season
date     league                                                
13/01/14 I1          Inter   Chievo      1      1      D  13-14
         I1      Sampdoria  Udinese      3      0      H  13-14
('13/01/14', 'SP1')
                       home      away  hgoal  agoal result season
date     league                                                  
13/01/14 SP1     Villarreal  Sociedad      5      1      H  13-14
('13/02/12', 'I1')
                   home    away  hgoal  agoal result season
date     league                                            
13/02/12 I1      Napoli  Chievo      2      0      H  11-12
         I1       Siena    Roma      1      0      H  11-12
('13/02/12', 'SP1')
                     home     away  hgoal  agoal result season
date     league                                               
13/02/12 SP1     Sociedad  Sevilla      2      0      H  11-12
('13/02/15', 'D1')
                     home   away  hgoal  agoal result season
date     league                                             
13/02/15 D1      Dortmund  Mainz      4      2      H  14-15
('13/02/15', 'SP1')
                    home      away  hgoal  agoal result season
date     league                                               
13/02/15 SP1     Almeria  Sociedad      2      2      D  14-15
('13/02/16', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
13/02/16 D1          Darmstadt     Leverkusen      1      2      A  15-16
         D1           Dortmund       Hannover      1      0      H  15-16
         D1            FC Koln  Ein Frankfurt      3      1      H  15-16
         D1          Stuttgart         Hertha      2      0      H  15-16
         D1      Werder Bremen     Hoffenheim      1      1      D  15-16
         D1          Wolfsburg     Ingolstadt      2      0      H  15-16
('13/02/16', 'E2')
                       home              away  hgoal  agoal result season
date     league                                                          
13/02/16 E2       Blackpool        Shrewsbury      2      3      A  15-16
         E2      Colchester           Swindon      1      4      A  15-16
         E2        Coventry              Bury      6      0      H  15-16
         E2           Crewe           Walsall      1      1      D  15-16
         E2       Doncaster  Sheffield United      0      1      A  15-16
         E2      Gillingham          Barnsley      2      1      H  15-16
         E2       Peterboro          Bradford      0      4      A  15-16
         E2       Port Vale    Fleetwood Town      0      0      D  15-16
         E2        Rochdale          Millwall      0      1      A  15-16
         E2      Scunthorpe          Southend      1      0      H  15-16
         E2           Wigan            Oldham      0      0      D  15-16
('13/02/16', 'I1')
                     home       away  hgoal  agoal result season
date     league                                                 
13/02/16 I1        Chievo   Sassuolo      1      1      D  15-16
         I1        Empoli  Frosinone      1      2      A  15-16
         I1      Juventus     Napoli      1      0      H  15-16
('13/02/16', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
13/02/16 SP1       La Coruna       Betis      2      2      D  15-16
         SP1     Real Madrid  Ath Bilbao      4      2      H  15-16
         SP1        Valencia     Espanol      2      1      H  15-16
         SP1      Villarreal      Malaga      1      0      H  15-16
('13/02/16', 'T1')
                               home         away  hgoal  agoal result season
date     league                                                             
13/02/16 T1          Genclerbirligi    Bursaspor      2      0      H  15-16
         T1               Konyaspor  Osmanlispor      1      1      D  15-16
         T1      Mersin Idman Yurdu  Galatasaray      2      1      H  15-16
('13/03/12', 'E2')
                       home              away  hgoal  agoal result season
date     league                                                          
13/03/12 E2      Colchester  Sheffield United      1      1      D  11-12
         E2       Stevenage            Oldham      1      0      H  11-12
         E2        Tranmere           Preston      2      1      H  11-12
         E2          Yeovil        Scunthorpe      2      2      D  11-12
('13/03/15', 'D1')
                       home       away  hgoal  agoal result season
date     league                                                   
13/03/15 D1      Leverkusen  Stuttgart      4      0      H  14-15
('13/03/15', 'SP1')
                     home       away  hgoal  agoal result season
date     league                                                 
13/03/15 SP1     Valencia  La Coruna      2      0      H  14-15
('13/03/15', 'T1')
                      home           away  hgoal  agoal result season
date     league                                                      
13/03/15 T1      Bursaspor  Balikesirspor      4      2      H  14-15
         T1      Konyaspor      Kasimpasa      2      1      H  14-15
('13/03/16', 'D1')
                       home     away  hgoal  agoal result season
date     league                                                 
13/03/16 D1        Dortmund    Mainz      2      0      H  15-16
         D1      Leverkusen  Hamburg      1      0      H  15-16
('13/03/16', 'I1')
                       home       away  hgoal  agoal result season
date     league                                                   
13/03/16 I1           Carpi  Frosinone      2      1      H  15-16
         I1          Chievo      Milan      0      0      D  15-16
         I1      Fiorentina     Verona      1      1      D  15-16
         I1           Genoa     Torino      3      2      H  15-16
         I1           Lazio   Atalanta      2      0      H  15-16
         I1         Palermo     Napoli      0      1      A  15-16
         I1         Udinese       Roma      1      2      A  15-16
('13/03/16', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
13/03/16 SP1     Ath Bilbao        Betis      3      1      H  15-16
         SP1     Las Palmas  Real Madrid      1      2      A  15-16
         SP1        Levante     Valencia      1      0      H  15-16
         SP1        Sevilla   Villarreal      4      2      H  15-16
('13/03/16', 'T1')
                           home                  away  hgoal  agoal result  \
date     league                                                              
13/03/16 T1       Eskisehirspor  Akhisar Belediyespor      3      3      D   
         T1          Fenerbahce           Kayserispor      1      0      H   
         T1      Genclerbirligi           Galatasaray      1      1      D   

                season  
date     league         
13/03/16 T1      15-16  
         T1      15-16  
         T1      15-16  
('13/04/12', 'D1')
                      home           away  hgoal  agoal result season
date     league                                                      
13/04/12 D1      Stuttgart  Werder Bremen      4      1      H  11-12
('13/04/13', 'D1')
                               home           away  hgoal  agoal result season
date     league                                                               
13/04/13 D1           Bayern Munich       Nurnberg      4      0      H  12-13
         D1      Fortuna Dusseldorf  Werder Bremen      2      2      D  12-13
         D1          Greuther Furth       Dortmund      1      6      A  12-13
         D1                   Mainz        Hamburg      1      2      A  12-13
         D1              Schalke 04     Leverkusen      2      2      D  12-13
         D1               Wolfsburg     Hoffenheim      2      2      D  12-13
('13/04/13', 'E2')
                             home                away  hgoal  agoal result  \
date     league                                                              
13/04/13 E2             Brentford          Portsmouth      3      2      H   
         E2                  Bury              Oldham      0      1      A   
         E2              Carlisle             Preston      1      1      D   
         E2          Crawley Town            Coventry      2      0      H   
         E2                 Crewe           Doncaster      1      2      A   
         E2         Leyton Orient  Milton Keynes Dons      2      0      H   
         E2          Notts County          Colchester      3      1      H   
         E2            Scunthorpe             Walsall      1      1      D   
         E2      Sheffield United             Swindon      2      0      H   
         E2            Shrewsbury         Bournemouth      0      3      A   
         E2             Stevenage              Yeovil      0      2      A   
         E2              Tranmere          Hartlepool      0      1      A   

                season  
date     league         
13/04/13 E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
('13/04/13', 'I1')
                    home   away  hgoal  agoal result season
date     league                                            
13/04/13 I1      Pescara  Siena      2      3      A  12-13
('13/04/13', 'SP1')
                       home       away  hgoal  agoal result season
date     league                                                   
13/04/13 SP1        Espanol   Valencia      3      3      D  12-13
         SP1        Levante  La Coruna      0      4      A  12-13
         SP1         Malaga    Osasuna      1      0      H  12-13
         SP1     Valladolid     Getafe      2      1      H  12-13
('13/04/13', 'T1')
                               home         away  hgoal  agoal result season
date     league                                                             
13/04/13 T1             Karabukspor  Galatasaray      0      1      A  12-13
         T1      Mersin Idman Yurdu    Bursaspor      0      1      A  12-13
('13/04/14', 'D1')
                       home      away  hgoal  agoal result season
date     league                                                  
13/04/14 D1      Hoffenheim  Augsburg      2      0      H  13-14
         D1      Leverkusen    Hertha      2      1      H  13-14
('13/04/14', 'I1')
                      home        away  hgoal  agoal result season
date     league                                                   
13/04/14 I1        Bologna       Parma      1      1      D  13-14
         I1        Livorno      Chievo      2      4      A  13-14
         I1          Milan     Catania      1      0      H  13-14
         I1         Napoli       Lazio      4      2      H  13-14
         I1      Sampdoria       Inter      0      4      A  13-14
         I1         Torino       Genoa      2      1      H  13-14
         I1         Verona  Fiorentina      3      5      A  13-14
('13/04/14', 'SP1')
                     home        away  hgoal  agoal result season
date     league                                                  
13/04/14 SP1        Betis     Sevilla      0      2      A  13-14
         SP1      Espanol   Vallecano      2      2      D  13-14
         SP1       Getafe  Ath Madrid      0      2      A  13-14
         SP1     Valencia       Elche      2      1      H  13-14
('13/04/14', 'T1')
                           home         away  hgoal  agoal result season
date     league                                                         
13/04/14 T1       Eskisehirspor  Trabzonspor      2      2      D  13-14
         T1          Fenerbahce  Antalyaspor      4      1      H  13-14
         T1      Genclerbirligi  Erciyesspor      0      0      D  13-14
('13/04/16', 'T1')
                        home        away  hgoal  agoal result season
date     league                                                     
13/04/16 T1      Galatasaray  Fenerbahce      0      0      D  15-16
('13/05/12', 'I1')
                       home      away  hgoal  agoal result season
date     league                                                  
13/05/12 I1         Catania   Udinese      0      2      A  11-12
         I1          Cesena      Roma      2      3      A  11-12
         I1          Chievo     Lecce      1      0      H  11-12
         I1      Fiorentina  Cagliari      0      0      D  11-12
         I1           Genoa   Palermo      2      0      H  11-12
         I1        Juventus  Atalanta      3      1      H  11-12
         I1           Lazio     Inter      3      1      H  11-12
         I1           Milan    Novara      2      1      H  11-12
         I1          Napoli     Siena      2      1      H  11-12
         I1           Parma   Bologna      1      0      H  11-12
('13/05/12', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
13/05/12 SP1         Espanol     Sevilla      1      1      D  11-12
         SP1          Getafe    Zaragoza      0      2      A  11-12
         SP1         Levante  Ath Bilbao      3      0      H  11-12
         SP1          Malaga    Sp Gijon      1      0      H  11-12
         SP1     Real Madrid    Mallorca      4      1      H  11-12
         SP1       Santander     Osasuna      2      4      A  11-12
         SP1       Vallecano     Granada      1      0      H  11-12
         SP1      Villarreal  Ath Madrid      0      1      A  11-12
('13/05/13', 'SP1')
                     home     away  hgoal  agoal result season
date     league                                               
13/05/13 SP1     Sociedad  Granada      2      2      D  12-13
('13/05/13', 'T1')
                                 home                away  hgoal  agoal  \
date     league                                                           
13/05/13 T1      Akhisar Belediyespor  Mersin Idman Yurdu      1      0   
         T1                 Bursaspor       Eskisehirspor      0      0   
         T1                 Sivasspor         Karabukspor      2      1   
         T1               Trabzonspor          Buyuksehyr      4      3   

                result season  
date     league                
13/05/13 T1          H  12-13  
         T1          D  12-13  
         T1          H  12-13  
         T1          H  12-13  
('13/05/15', 'T1')
                          home         away  hgoal  agoal result season
date     league                                                        
13/05/15 T1         Fenerbahce  Erciyesspor      1      1      D  14-15
         T1      Gaziantepspor     Rizespor      1      2      A  14-15
         T1        Trabzonspor    Bursaspor      1      0      H  14-15
('13/05/16', 'SP1')
                     home      away  hgoal  agoal result season
date     league                                                
13/05/16 SP1     Valencia  Sociedad      0      1      A  15-16
('13/05/16', 'T1')
                        home         away  hgoal  agoal result season
date     league                                                      
13/05/16 T1      Antalyaspor  Trabzonspor      7      0      H  15-16
('13/08/11', 'D1')
                       home           away  hgoal  agoal result season
date     league                                                       
13/08/11 D1        Freiburg          Mainz      1      2      A  11-12
         D1         Hamburg         Hertha      2      2      D  11-12
         D1      Hoffenheim       Dortmund      1      0      H  11-12
         D1      M'gladbach      Stuttgart      1      1      D  11-12
         D1        Nurnberg       Hannover      1      2      A  11-12
         D1      Schalke 04        FC Koln      5      1      H  11-12
         D1       Wolfsburg  Bayern Munich      0      1      A  11-12
('13/08/11', 'E2')
                             home                away  hgoal  agoal result  \
date     league                                                              
13/08/11 E2           Bournemouth      Sheffield Weds      2      0      H   
         E2                  Bury            Carlisle      0      2      A   
         E2          Chesterfield           Stevenage      1      1      D   
         E2            Colchester             Wycombe      1      1      D   
         E2                Exeter  Milton Keynes Dons      0      2      A   
         E2            Hartlepool             Walsall      1      1      D   
         E2         Leyton Orient            Tranmere      0      1      A   
         E2          Notts County            Charlton      1      2      A   
         E2              Rochdale        Huddersfield      2      2      D   
         E2            Scunthorpe             Preston      1      1      D   
         E2      Sheffield United           Brentford      2      0      H   
         E2                Yeovil              Oldham      3      1      H   

                season  
date     league         
13/08/11 E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
('13/09/11', 'E2')
                             home            away  hgoal  agoal result season
date     league                                                              
13/09/11 E2             Brentford      Colchester      1      1      D  11-12
         E2          Chesterfield            Bury      1      0      H  11-12
         E2                Exeter    Notts County      1      1      D  11-12
         E2         Leyton Orient     Bournemouth      1      3      A  11-12
         E2              Rochdale      Scunthorpe      1      0      H  11-12
         E2      Sheffield United    Huddersfield      0      3      A  11-12
         E2             Stevenage  Sheffield Weds      5      1      H  11-12
         E2              Tranmere        Carlisle      1      2      A  11-12
         E2               Walsall          Oldham      0      1      A  11-12
         E2                Yeovil         Wycombe      1      0      H  11-12
('13/09/12', 'E2')
                          home       away  hgoal  agoal result season
date     league                                                      
13/09/12 E2      Leyton Orient  Brentford      1      0      H  12-13
('13/09/13', 'D1')
                   home       away  hgoal  agoal result season
date     league                                               
13/09/13 D1      Hertha  Stuttgart      0      1      A  13-14
('13/09/13', 'T1')
                        home         away  hgoal  agoal result season
date     league                                                      
13/09/13 T1      Galatasaray  Antalyaspor      1      1      D  13-14
('13/09/14', 'D1')
                          home        away  hgoal  agoal result season
date     league                                                       
13/09/14 D1      Bayern Munich   Stuttgart      2      0      H  14-15
         D1           Dortmund    Freiburg      3      1      H  14-15
         D1             Hertha       Mainz      1      3      A  14-15
         D1         Hoffenheim   Wolfsburg      1      1      D  14-15
         D1         M'gladbach  Schalke 04      4      1      H  14-15
         D1          Paderborn     FC Koln      0      0      D  14-15
('13/09/14', 'E2')
                             home                away  hgoal  agoal result  \
date     league                                                              
13/09/14 E2              Barnsley  Milton Keynes Dons      3      5      A   
         E2              Bradford             Swindon      1      2      A   
         E2          Bristol City           Doncaster      3      0      H   
         E2          Chesterfield          Scunthorpe      4      1      H   
         E2              Coventry              Yeovil      2      1      H   
         E2          Crawley Town      Fleetwood Town      1      0      H   
         E2                 Crewe           Port Vale      2      1      H   
         E2         Leyton Orient          Colchester      0      2      A   
         E2                Oldham          Gillingham      0      0      D   
         E2             Peterboro        Notts County      0      0      D   
         E2      Sheffield United            Rochdale      1      0      H   
         E2               Walsall             Preston      3      1      H   

                season  
date     league         
13/09/14 E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
('13/09/14', 'I1')
                     home     away  hgoal  agoal result season
date     league                                               
13/09/14 I1        Empoli     Roma      0      1      A  14-15
         I1      Juventus  Udinese      2      0      H  14-15
('13/09/14', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
13/09/14 SP1       Barcelona  Ath Bilbao      2      0      H  14-15
         SP1           Celta    Sociedad      2      2      D  14-15
         SP1          Malaga     Levante      0      0      D  14-15
         SP1     Real Madrid  Ath Madrid      1      2      A  14-15
('13/09/14', 'T1')
                           home           away  hgoal  agoal result season
date     league                                                           
13/09/14 T1         Galatasaray  Eskisehirspor      0      0      D  14-15
         T1      Genclerbirligi      Bursaspor      1      2      A  14-15
         T1         Karabukspor     Buyuksehyr      0      0      D  14-15
         T1           Konyaspor  Balikesirspor      2      0      H  14-15
('13/09/15', 'D1')
                       home           away  hgoal  agoal result season
date     league                                                       
13/09/15 D1      Hoffenheim  Werder Bremen      1      3      A  15-16
         D1      Schalke 04          Mainz      2      1      H  15-16
('13/09/15', 'I1')
                     home      away  hgoal  agoal result season
date     league                                                
13/09/15 I1        Empoli    Napoli      2      2      D  15-16
         I1         Inter     Milan      1      0      H  15-16
         I1         Lazio   Udinese      2      0      H  15-16
         I1       Palermo     Carpi      2      2      D  15-16
         I1      Sassuolo  Atalanta      2      2      D  15-16
         I1        Verona    Torino      2      2      D  15-16
('13/09/15', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
13/09/15 SP1     Ath Bilbao      Getafe      3      1      H  15-16
         SP1          Celta  Las Palmas      3      3      D  15-16
         SP1        Granada  Villarreal      1      3      A  15-16
         SP1         Malaga       Eibar      0      0      D  15-16
('13/09/15', 'T1')
                        home        away  hgoal  agoal result season
date     league                                                     
13/09/15 T1         Besiktas  Buyuksehyr      2      0      H  15-16
         T1        Kasimpasa  Fenerbahce      0      1      A  15-16
         T1      Osmanlispor   Konyaspor      1      2      A  15-16
         T1         Rizespor   Sivasspor      1      1      D  15-16
('13/10/12', 'E2')
                             home           away  hgoal  agoal result season
date     league                                                             
13/10/12 E2           Bournemouth  Leyton Orient      2      0      H  12-13
         E2              Carlisle   Notts County      0      4      A  12-13
         E2            Colchester      Stevenage      1      0      H  12-13
         E2          Crawley Town           Bury      3      2      H  12-13
         E2            Hartlepool      Doncaster      1      1      D  12-13
         E2            Portsmouth          Crewe      2      0      H  12-13
         E2            Scunthorpe      Brentford      1      1      D  12-13
         E2      Sheffield United         Oldham      1      1      D  12-13
         E2               Swindon       Coventry      2      2      D  12-13
         E2              Tranmere         Yeovil      3      2      H  12-13
('13/10/13', 'E2')
                     home              away  hgoal  agoal result season
date     league                                                        
13/10/13 E2      Bradford          Tranmere      0      1      A  13-14
         E2      Coventry  Sheffield United      3      2      H  13-14
('13/12/11', 'D1')
                    home   away  hgoal  agoal result season
date     league                                            
13/12/11 D1      FC Koln  Mainz      1      1      D  11-12
('13/12/11', 'I1')
                  home   away  hgoal  agoal result season
date     league                                          
13/12/11 I1      Genoa  Inter      0      1      A  11-12
('13/12/13', 'D1')
                   home           away  hgoal  agoal result season
date     league                                                   
13/12/13 D1      Hertha  Werder Bremen      3      2      H  13-14
('13/12/13', 'SP1')
                    home   away  hgoal  agoal result season
date     league                                            
13/12/13 SP1     Levante  Elche      2      1      H  13-14
('13/12/13', 'T1')
                       home                  away  hgoal  agoal result season
date     league                                                              
13/12/13 T1      Fenerbahce  Akhisar Belediyespor      4      0      H  13-14
         T1       Konyaspor           Karabukspor      2      3      A  13-14
('13/12/14', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
13/12/14 D1           Augsburg  Bayern Munich      0      4      A  14-15
         D1           Freiburg        Hamburg      0      0      D  14-15
         D1             Hertha       Dortmund      1      0      H  14-15
         D1              Mainz      Stuttgart      1      1      D  14-15
         D1         Schalke 04        FC Koln      1      2      A  14-15
         D1      Werder Bremen       Hannover      3      3      D  14-15
('13/12/14', 'E2')
                           home                away  hgoal  agoal result  \
date     league                                                            
13/12/14 E2        Bristol City        Crawley Town      1      0      H   
         E2        Chesterfield            Bradford      0      1      A   
         E2          Colchester            Rochdale      1      4      A   
         E2           Doncaster          Gillingham      1      2      A   
         E2      Fleetwood Town    Sheffield United      1      1      D   
         E2       Leyton Orient           Peterboro      1      2      A   
         E2        Notts County             Swindon      0      3      A   
         E2              Oldham              Yeovil      0      4      A   
         E2           Port Vale            Coventry      0      2      A   
         E2             Preston  Milton Keynes Dons      1      1      D   
         E2          Scunthorpe               Crewe      2      1      H   
         E2             Walsall            Barnsley      3      1      H   

                season  
date     league         
13/12/14 E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
('13/12/14', 'I1')
                    home      away  hgoal  agoal result season
date     league                                               
13/12/14 I1        Lazio  Atalanta      3      0      H  14-15
         I1      Palermo  Sassuolo      2      1      H  14-15
('13/12/14', 'SP1')
                     home       away  hgoal  agoal result season
date     league                                                 
13/12/14 SP1      Cordoba    Levante      0      0      D  14-15
         SP1       Getafe  Barcelona      0      0      D  14-15
         SP1       Malaga      Celta      1      0      H  14-15
         SP1     Valencia  Vallecano      3      0      H  14-15
('13/12/14', 'T1')
                                 home            away  hgoal  agoal result  \
date     league                                                              
13/12/14 T1      Akhisar Belediyespor  Genclerbirligi      1      1      D   
         T1                Buyuksehyr   Balikesirspor      1      0      H   
         T1                 Kasimpasa   Eskisehirspor      1      0      H   
         T1                 Konyaspor     Galatasaray      0      5      A   

                season  
date     league         
13/12/14 T1      14-15  
         T1      14-15  
         T1      14-15  
         T1      14-15  
('13/12/15', 'D1')
                     home           away  hgoal  agoal result season
date     league                                                     
13/12/15 D1      Augsburg     Schalke 04      2      1      H  15-16
         D1      Dortmund  Ein Frankfurt      4      1      H  15-16
('13/12/15', 'E2')
                             home      away  hgoal  agoal result season
date     league                                                        
13/12/15 E2      Sheffield United  Coventry      1      0      H  15-16
('13/12/15', 'I1')
                     home        away  hgoal  agoal result season
date     league                                                  
13/12/15 I1        Chievo    Atalanta      1      0      H  15-16
         I1        Empoli       Carpi      3      0      H  15-16
         I1      Juventus  Fiorentina      3      1      H  15-16
         I1         Milan      Verona      1      1      D  15-16
         I1        Napoli        Roma      0      0      D  15-16
('13/12/15', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
13/12/15 SP1     Ath Madrid   Ath Bilbao      2      1      H  15-16
         SP1          Eibar     Valencia      1      1      D  15-16
         SP1      Vallecano       Malaga      1      2      A  15-16
         SP1     Villarreal  Real Madrid      1      0      H  15-16
('13/12/15', 'T1')
                           home                  away  hgoal  agoal result  \
date     league                                                              
13/12/15 T1          Fenerbahce            Buyuksehyr      1      0      H   
         T1      Genclerbirligi             Sivasspor      0      1      A   
         T1         Kayserispor  Akhisar Belediyespor      3      2      H   

                season  
date     league         
13/12/15 T1      15-16  
         T1      15-16  
         T1      15-16  
('14/01/12', 'E2')
                           home              away  hgoal  agoal result season
date     league                                                              
14/01/12 E2         Bournemouth      Notts County      2      1      H  11-12
         E2           Brentford           Walsall      0      0      D  11-12
         E2                Bury  Sheffield United      0      3      A  11-12
         E2          Colchester        Scunthorpe      1      1      D  11-12
         E2              Exeter        Hartlepool      0      0      D  11-12
         E2        Huddersfield            Oldham      1      0      H  11-12
         E2       Leyton Orient      Chesterfield      1      1      D  11-12
         E2             Preston           Wycombe      3      2      H  11-12
         E2            Rochdale         Stevenage      1      5      A  11-12
         E2      Sheffield Weds          Charlton      0      1      A  11-12
         E2              Yeovil          Tranmere      2      1      H  11-12
('14/01/12', 'SP1')
                     home         away  hgoal  agoal result season
date     league                                                   
14/01/12 SP1      Granada    Vallecano      1      2      A  11-12
         SP1     Mallorca  Real Madrid      1      2      A  11-12
         SP1      Sevilla      Espanol      0      0      D  11-12
         SP1     Valencia     Sociedad      0      1      A  11-12
         SP1     Zaragoza       Getafe      1      1      D  11-12
('14/01/12', 'T1')
                           home           away  hgoal  agoal result season
date     league                                                           
14/01/12 T1         Galatasaray    Karabukspor      5      1      H  11-12
         T1      Genclerbirligi  Eskisehirspor      2      1      H  11-12
('14/01/13', 'SP1')
                   home     away  hgoal  agoal result season
date     league                                             
14/01/13 SP1     Getafe  Granada      2      2      D  12-13
('14/01/14', 'E2')
                      home     away  hgoal  agoal result season
date     league                                                
14/01/14 E2      Stevenage  Swindon      2      0      H  13-14
         E2        Walsall   Oldham      1      0      H  13-14
('14/02/12', 'E2')
                           home                away  hgoal  agoal result  \
date     league                                                            
14/02/12 E2         Bournemouth       Leyton Orient      1      2      A   
         E2                Bury        Chesterfield      1      1      D   
         E2            Carlisle            Tranmere      0      0      D   
         E2            Charlton  Milton Keynes Dons      2      1      H   
         E2          Colchester           Brentford      2      1      H   
         E2        Huddersfield    Sheffield United      0      1      A   
         E2        Notts County              Exeter      2      1      H   
         E2              Oldham             Walsall      2      1      H   
         E2             Preston          Hartlepool      1      0      H   
         E2          Scunthorpe            Rochdale      1      0      H   
         E2      Sheffield Weds           Stevenage      0      1      A   
         E2             Wycombe              Yeovil      2      3      A   

                season  
date     league         
14/02/12 E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
('14/02/14', 'D1')
                  home      away  hgoal  agoal result season
date     league                                             
14/02/14 D1      Mainz  Hannover      2      0      H  13-14
('14/02/14', 'E2')
                      home        away  hgoal  agoal result season
date     league                                                   
14/02/14 E2      Peterboro     Walsall      0      0      D  13-14
         E2        Swindon  Colchester      0      0      D  13-14
('14/02/14', 'I1')
                  home     away  hgoal  agoal result season
date     league                                            
14/02/14 I1      Milan  Bologna      1      0      H  13-14
('14/02/14', 'SP1')
                  home     away  hgoal  agoal result season
date     league                                            
14/02/14 SP1     Elche  Osasuna      0      0      D  13-14
('14/02/14', 'T1')
                     home           away  hgoal  agoal result season
date     league                                                     
14/02/14 T1      Rizespor  Gaziantepspor      5      1      H  13-14
('14/02/15', 'D1')
                          home        away  hgoal  agoal result season
date     league                                                       
14/02/15 D1      Bayern Munich     Hamburg      8      0      H  14-15
         D1      Ein Frankfurt  Schalke 04      1      0      H  14-15
         D1         Hoffenheim   Stuttgart      2      1      H  14-15
         D1         Leverkusen   Wolfsburg      4      5      A  14-15
         D1         M'gladbach     FC Koln      1      0      H  14-15
         D1      Werder Bremen    Augsburg      3      2      H  14-15
('14/02/15', 'E2')
                         home                away  hgoal  agoal result season
date     league                                                              
14/02/15 E2      Bristol City    Sheffield United      1      3      A  14-15
         E2      Chesterfield       Leyton Orient      2      3      A  14-15
         E2      Crawley Town            Barnsley      5      1      H  14-15
         E2             Crewe      Fleetwood Town      2      0      H  14-15
         E2         Doncaster              Yeovil      3      0      H  14-15
         E2        Gillingham  Milton Keynes Dons      4      2      H  14-15
         E2            Oldham          Colchester      0      1      A  14-15
         E2         Peterboro            Rochdale      2      1      H  14-15
         E2        Scunthorpe             Swindon      3      1      H  14-15
         E2           Walsall           Port Vale      0      1      A  14-15
('14/02/15', 'I1')
                     home        away  hgoal  agoal result season
date     league                                                  
14/02/15 I1       Palermo      Napoli      3      1      H  14-15
         I1      Sassuolo  Fiorentina      1      3      A  14-15
('14/02/15', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
14/02/15 SP1         Granada  Ath Bilbao      0      0      D  14-15
         SP1          Malaga     Espanol      0      2      A  14-15
         SP1     Real Madrid   La Coruna      2      0      H  14-15
         SP1         Sevilla     Cordoba      3      0      H  14-15
('14/02/15', 'T1')
                                 home         away  hgoal  agoal result season
date     league                                                               
14/02/15 T1      Akhisar Belediyespor  Erciyesspor      1      0      H  14-15
         T1             Gaziantepspor   Fenerbahce      0      5      A  14-15
         T1               Karabukspor    Kasimpasa      0      0      D  14-15
('14/02/16', 'D1')
                     home           away  hgoal  agoal result season
date     league                                                     
14/02/16 D1      Augsburg  Bayern Munich      1      3      A  15-16
         D1       Hamburg     M'gladbach      3      2      H  15-16
('14/02/16', 'I1')
                       home      away  hgoal  agoal result season
date     league                                                  
14/02/16 I1      Fiorentina     Inter      2      1      H  15-16
         I1           Milan     Genoa      2      1      H  15-16
         I1         Palermo    Torino      1      3      A  15-16
         I1       Sampdoria  Atalanta      0      0      D  15-16
         I1         Udinese   Bologna      0      1      A  15-16
('14/02/16', 'SP1')
                      home        away  hgoal  agoal result season
date     league                                                   
14/02/16 SP1     Barcelona       Celta      6      1      H  15-16
         SP1         Eibar     Levante      2      0      H  15-16
         SP1        Getafe  Ath Madrid      0      1      A  15-16
         SP1       Sevilla  Las Palmas      2      0      H  15-16
         SP1      Sociedad     Granada      3      0      H  15-16
('14/02/16', 'T1')
                          home                  away  hgoal  agoal result  \
date     league                                                             
14/02/16 T1         Buyuksehyr              Besiktas      2      2      D   
         T1      Eskisehirspor           Antalyaspor      3      2      H   
         T1      Gaziantepspor  Akhisar Belediyespor      0      1      A   
         T1          Sivasspor              Rizespor      2      1      H   

                season  
date     league         
14/02/16 T1      15-16  
         T1      15-16  
         T1      15-16  
         T1      15-16  
('14/03/14', 'D1')
                     home        away  hgoal  agoal result season
date     league                                                  
14/03/14 D1      Augsburg  Schalke 04      1      2      A  13-14
('14/03/14', 'SP1')
                   home     away  hgoal  agoal result season
date     league                                             
14/03/14 SP1     Getafe  Granada      3      3      D  13-14
('14/03/14', 'T1')
                        home         away  hgoal  agoal result season
date     league                                                      
14/03/14 T1      Karabukspor  Galatasaray      0      0      D  13-14
('14/03/15', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
14/03/15 D1           Augsburg          Mainz      0      2      A  14-15
         D1           Dortmund        FC Koln      0      0      D  14-15
         D1      Ein Frankfurt      Paderborn      4      0      H  14-15
         D1             Hertha     Schalke 04      2      2      D  14-15
         D1         Hoffenheim        Hamburg      3      0      H  14-15
         D1      Werder Bremen  Bayern Munich      0      4      A  14-15
('14/03/15', 'E2')
                           home                away  hgoal  agoal result  \
date     league                                                            
14/03/15 E2        Bristol City          Gillingham      0      0      D   
         E2        Chesterfield            Coventry      2      3      A   
         E2          Colchester        Crawley Town      2      3      A   
         E2           Doncaster           Peterboro      0      2      A   
         E2      Fleetwood Town            Rochdale      1      0      H   
         E2       Leyton Orient              Yeovil      3      0      H   
         E2        Notts County            Bradford      1      1      D   
         E2              Oldham            Barnsley      1      3      A   
         E2           Port Vale             Swindon      0      1      A   
         E2             Preston               Crewe      5      1      H   
         E2          Scunthorpe    Sheffield United      1      1      D   
         E2             Walsall  Milton Keynes Dons      1      1      D   

                season  
date     league         
14/03/15 E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
('14/03/15', 'I1')
                     home      away  hgoal  agoal result season
date     league                                                
14/03/15 I1      Cagliari    Empoli      1      1      D  14-15
         I1       Palermo  Juventus      0      1      A  14-15
('14/03/15', 'SP1')
                      home        away  hgoal  agoal result season
date     league                                                   
14/03/15 SP1         Celta  Ath Bilbao      1      2      A  14-15
         SP1         Eibar   Barcelona      0      2      A  14-15
         SP1       Espanol  Ath Madrid      0      0      D  14-15
         SP1     Vallecano     Granada      3      1      H  14-15
('14/03/15', 'T1')
                                 home         away  hgoal  agoal result season
date     league                                                               
14/03/15 T1      Akhisar Belediyespor  Karabukspor      5      1      H  14-15
         T1               Galatasaray   Buyuksehyr      2      2      D  14-15
         T1                  Rizespor    Sivasspor      2      1      H  14-15
('14/03/16', 'SP1')
                    home     away  hgoal  agoal result season
date     league                                              
14/03/16 SP1     Granada  Espanol      1      1      D  15-16
('14/03/16', 'T1')
                        home       away  hgoal  agoal result season
date     league                                                    
14/03/16 T1      Antalyaspor  Bursaspor      3      0      H  15-16
         T1        Sivasspor  Kasimpasa      1      0      H  15-16
('14/04/12', 'D1')
                           home      away  hgoal  agoal result season
date     league                                                      
14/04/12 D1       Bayern Munich     Mainz      0      0      D  11-12
         D1             Hamburg  Hannover      1      0      H  11-12
         D1      Kaiserslautern  Nurnberg      0      2      A  11-12
         D1          Leverkusen    Hertha      3      3      D  11-12
         D1          Schalke 04  Dortmund      1      2      A  11-12
         D1           Wolfsburg  Augsburg      1      2      A  11-12
('14/04/12', 'E2')
                             home                away  hgoal  agoal result  \
date     league                                                              
14/04/12 E2             Brentford        Notts County      0      0      D   
         E2                  Bury         Bournemouth      1      0      H   
         E2              Carlisle            Charlton      0      1      A   
         E2            Colchester      Sheffield Weds      1      1      D   
         E2            Hartlepool        Chesterfield      1      2      A   
         E2               Preston        Huddersfield      1      0      H   
         E2              Rochdale              Exeter      3      2      H   
         E2            Scunthorpe  Milton Keynes Dons      0      3      A   
         E2      Sheffield United       Leyton Orient      3      1      H   
         E2               Walsall            Tranmere      0      1      A   
         E2               Wycombe              Oldham      2      2      D   
         E2                Yeovil           Stevenage      0      6      A   

                season  
date     league         
14/04/12 E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
('14/04/12', 'SP1')
                        home       away  hgoal  agoal result season
date     league                                                    
14/04/12 SP1         Levante  Barcelona      1      2      A  11-12
         SP1     Real Madrid   Sp Gijon      3      1      H  11-12
('14/04/13', 'D1')
                      home           away  hgoal  agoal result season
date     league                                                      
14/04/13 D1       Augsburg  Ein Frankfurt      2      0      H  12-13
         D1      Stuttgart     M'gladbach      2      0      H  12-13
('14/04/13', 'I1')
                     home       away  hgoal  agoal result season
date     league                                                 
14/04/13 I1      Cagliari      Inter      2      0      H  12-13
         I1        Chievo    Catania      0      0      D  12-13
         I1         Genoa  Sampdoria      1      1      D  12-13
         I1         Milan     Napoli      1      1      D  12-13
         I1       Palermo    Bologna      1      1      D  12-13
         I1         Parma    Udinese      0      3      A  12-13
         I1        Torino       Roma      1      2      A  12-13
('14/04/13', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
14/04/13 SP1     Ath Bilbao  Real Madrid      0      3      A  12-13
('14/04/13', 'T1')
                          home                  away  hgoal  agoal result  \
date     league                                                             
14/04/13 T1         Elazigspor            Buyuksehyr      1      0      H   
         T1         Fenerbahce         Eskisehirspor      1      0      H   
         T1      Gaziantepspor           Kayserispor      0      1      A   
         T1          Kasimpasa  Akhisar Belediyespor      0      1      A   

                season  
date     league         
14/04/13 T1      12-13  
         T1      12-13  
         T1      12-13  
         T1      12-13  
('14/04/14', 'I1')
                    home      away  hgoal  agoal result season
date     league                                               
14/04/14 I1      Udinese  Juventus      0      2      A  13-14
('14/04/14', 'SP1')
                       home    away  hgoal  agoal result season
date     league                                                
14/04/14 SP1     Ath Bilbao  Malaga      3      0      H  13-14
('14/04/14', 'T1')
                       home           away  hgoal  agoal result season
date     league                                                       
14/04/14 T1      Elazigspor  Gaziantepspor      2      1      H  13-14
('14/04/15', 'E2')
                           home                away  hgoal  agoal result  \
date     league                                                            
14/04/15 E2            Bradford        Bristol City      0      6      A   
         E2        Chesterfield          Colchester      6      0      H   
         E2            Coventry              Oldham      1      1      D   
         E2      Fleetwood Town  Milton Keynes Dons      0      3      A   
         E2       Leyton Orient           Doncaster      0      1      A   
         E2        Notts County            Barnsley      1      1      D   
         E2           Peterboro               Crewe      1      1      D   
         E2             Preston          Gillingham      2      2      D   
         E2            Rochdale             Swindon      2      4      A   
         E2          Scunthorpe           Port Vale      1      1      D   
         E2             Walsall        Crawley Town      5      0      H   
         E2              Yeovil    Sheffield United      1      0      H   

                season  
date     league         
14/04/15 E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
('14/05/15', 'T1')
                                 home      away  hgoal  agoal result season
date     league                                                            
14/05/15 T1      Akhisar Belediyespor  Besiktas      1      1      D  14-15
('14/05/16', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
14/05/16 D1           Augsburg        Hamburg      1      3      A  15-16
         D1      Bayern Munich       Hannover      3      1      H  15-16
         D1          Darmstadt     M'gladbach      0      2      A  15-16
         D1           Dortmund        FC Koln      2      2      D  15-16
         D1         Hoffenheim     Schalke 04      1      4      A  15-16
         D1         Leverkusen     Ingolstadt      3      2      H  15-16
         D1              Mainz         Hertha      0      0      D  15-16
         D1      Werder Bremen  Ein Frankfurt      1      0      H  15-16
         D1          Wolfsburg      Stuttgart      3      1      H  15-16
('14/05/16', 'I1')
                     home       away  hgoal  agoal result season
date     league                                                 
14/05/16 I1      Juventus  Sampdoria      5      0      H  15-16
         I1         Milan       Roma      1      3      A  15-16
         I1        Napoli  Frosinone      4      0      H  15-16
         I1      Sassuolo      Inter      3      1      H  15-16
('14/05/16', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
14/05/16 SP1     Ath Bilbao      Sevilla      3      1      H  15-16
         SP1     Ath Madrid        Celta      2      0      H  15-16
         SP1        Granada    Barcelona      0      3      A  15-16
         SP1      La Coruna  Real Madrid      0      2      A  15-16
('14/05/16', 'T1')
                          home           away  hgoal  agoal result season
date     league                                                          
14/05/16 T1          Bursaspor      Konyaspor      1      1      D  15-16
         T1      Eskisehirspor     Buyuksehyr      1      2      A  15-16
         T1        Kayserispor      Sivasspor      1      1      D  15-16
         T1           Rizespor  Gaziantepspor      1      0      H  15-16
('14/08/11', 'D1')
                           home           away  hgoal  agoal result season
date     league                                                           
14/08/11 D1      Kaiserslautern       Augsburg      1      1      D  11-12
         D1          Leverkusen  Werder Bremen      1      0      H  11-12
('14/08/15', 'D1')
                          home     away  hgoal  agoal result season
date     league                                                    
14/08/15 D1      Bayern Munich  Hamburg      5      0      H  15-16
('14/08/15', 'T1')
                       home           away  hgoal  agoal result season
date     league                                                       
14/08/15 T1      Fenerbahce  Eskisehirspor      2      0      H  15-16
('14/09/12', 'D1')
                     home       away  hgoal  agoal result season
date     league                                                 
14/09/12 D1      Augsburg  Wolfsburg      0      0      D  12-13
('14/09/13', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
14/09/13 D1           Augsburg       Freiburg      2      1      H  13-14
         D1      Bayern Munich       Hannover      2      0      H  13-14
         D1           Dortmund        Hamburg      6      2      H  13-14
         D1         Leverkusen      Wolfsburg      3      1      H  13-14
         D1              Mainz     Schalke 04      0      1      A  13-14
         D1      Werder Bremen  Ein Frankfurt      0      3      A  13-14
('14/09/13', 'E2')
                               home              away  hgoal  agoal result  \
date     league                                                              
14/09/13 E2                Bradford        Colchester      2      2      D   
         E2            Bristol City         Peterboro      0      3      A   
         E2                Carlisle  Sheffield United      1      0      H   
         E2            Crawley Town        Shrewsbury      1      1      D   
         E2                   Crewe           Walsall      0      3      A   
         E2           Leyton Orient         Port Vale      3      2      H   
         E2      Milton Keynes Dons      Notts County      3      1      H   
         E2                 Preston         Stevenage      3      0      H   
         E2               Rotherham            Oldham      3      2      H   
         E2                Tranmere         Brentford      3      4      A   
         E2                  Wolves           Swindon      3      2      H   

                season  
date     league         
14/09/13 E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
('14/09/13', 'I1')
                   home      away  hgoal  agoal result season
date     league                                              
14/09/13 I1       Inter  Juventus      1      1      D  13-14
         I1      Napoli  Atalanta      2      0      H  13-14
         I1      Torino     Milan      2      2      D  13-14
('14/09/13', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
14/09/13 SP1     Ath Madrid      Almeria      4      2      H  13-14
         SP1      Barcelona      Sevilla      3      2      H  13-14
         SP1        Levante     Sociedad      0      0      D  13-14
         SP1     Villarreal  Real Madrid      2      2      D  13-14
('14/09/13', 'T1')
                          home                  away  hgoal  agoal result  \
date     league                                                             
14/09/13 T1        Erciyesspor  Akhisar Belediyespor      1      0      H   
         T1      Gaziantepspor              Rizespor      2      5      A   
         T1        Trabzonspor           Karabukspor      1      0      H   

                season  
date     league         
14/09/13 T1      13-14  
         T1      13-14  
         T1      13-14  
('14/09/14', 'D1')
                          home      away  hgoal  agoal result season
date     league                                                     
14/09/14 D1      Ein Frankfurt  Augsburg      0      1      A  14-15
         D1           Hannover   Hamburg      2      0      H  14-15
('14/09/14', 'I1')
                       home      away  hgoal  agoal result season
date     league                                                  
14/09/14 I1        Cagliari  Atalanta      1      2      A  14-15
         I1      Fiorentina     Genoa      0      0      D  14-15
         I1           Inter  Sassuolo      7      0      H  14-15
         I1           Lazio    Cesena      3      0      H  14-15
         I1          Napoli    Chievo      0      1      A  14-15
         I1           Parma     Milan      4      5      A  14-15
         I1       Sampdoria    Torino      2      0      H  14-15
('14/09/14', 'SP1')
                      home        away  hgoal  agoal result season
date     league                                                   
14/09/14 SP1       Granada  Villarreal      0      0      D  14-15
         SP1       Sevilla      Getafe      2      0      H  14-15
         SP1      Valencia     Espanol      3      1      H  14-15
         SP1     Vallecano       Elche      2      3      A  14-15
('14/09/14', 'T1')
                          home                away  hgoal  agoal result season
date     league                                                               
14/09/14 T1      Gaziantepspor         Erciyesspor      2      2      D  14-15
         T1          Kasimpasa  Mersin Idman Yurdu      2      2      D  14-15
         T1        Trabzonspor          Fenerbahce      0      0      D  14-15
('14/09/15', 'I1')
                      home     away  hgoal  agoal result season
date     league                                                
14/09/15 I1      Sampdoria  Bologna      2      0      H  15-16
('14/09/15', 'SP1')
                      home       away  hgoal  agoal result season
date     league                                                  
14/09/15 SP1     Vallecano  La Coruna      1      3      A  15-16
('14/09/15', 'T1')
                        home         away  hgoal  agoal result season
date     league                                                      
14/09/15 T1      Kayserispor  Trabzonspor      0      1      A  15-16
('14/10/11', 'D1')
                          home      away  hgoal  agoal result season
date     league                                                     
14/10/11 D1      Werder Bremen  Dortmund      0      2      A  11-12
('14/10/11', 'T1')
                        home        away  hgoal  agoal result season
date     league                                                     
14/10/11 T1      Trabzonspor  Ankaragucu      3      2      H  11-12
('14/10/12', 'E2')
                       home                away  hgoal  agoal result season
date     league                                                            
14/10/12 E2         Preston  Milton Keynes Dons      0      0      D  12-13
         E2      Shrewsbury             Walsall      1      0      H  12-13
('14/11/14', 'E2')
                     home        away  hgoal  agoal result season
date     league                                                  
14/11/14 E2      Barnsley  Colchester      3      2      H  14-15
('14/11/15', 'E2')
                             home            away  hgoal  agoal result season
date     league                                                              
14/11/15 E2              Barnsley       Port Vale      1      2      A  15-16
         E2             Blackpool       Doncaster      0      2      A  15-16
         E2              Bradford           Crewe      2      0      H  15-16
         E2          Chesterfield          Oldham      1      2      A  15-16
         E2            Colchester        Coventry      1      3      A  15-16
         E2            Gillingham            Bury      3      1      H  15-16
         E2             Peterboro  Fleetwood Town      2      1      H  15-16
         E2              Rochdale           Wigan      0      2      A  15-16
         E2      Sheffield United        Southend      2      2      D  15-16
         E2               Swindon      Scunthorpe      2      1      H  15-16
('14/12/11', 'T1')
                        home            away  hgoal  agoal result season
date     league                                                         
14/12/11 T1      Trabzonspor  Genclerbirligi      1      2      A  11-12
('14/12/12', 'D1')
                          home        away  hgoal  agoal result season
date     league                                                       
14/12/12 D1      Bayern Munich  M'gladbach      1      1      D  12-13
('14/12/12', 'T1')
                          home       away  hgoal  agoal result season
date     league                                                      
14/12/12 T1      Eskisehirspor  Bursaspor      2      2      D  12-13
('14/12/13', 'D1')
                          home          away  hgoal  agoal result season
date     league                                                         
14/12/13 D1           Augsburg  Braunschweig      4      1      H  13-14
         D1      Bayern Munich       Hamburg      3      1      H  13-14
         D1           Hannover      Nurnberg      3      3      D  13-14
         D1         Hoffenheim      Dortmund      2      2      D  13-14
         D1              Mainz    M'gladbach      0      0      D  13-14
         D1          Wolfsburg     Stuttgart      3      1      H  13-14
('14/12/13', 'E2')
                             home                away  hgoal  agoal result  \
date     league                                                              
14/12/13 E2              Bradford       Leyton Orient      1      1      D   
         E2             Brentford              Oldham      1      0      H   
         E2          Bristol City           Rotherham      1      2      A   
         E2              Carlisle            Tranmere      4      1      H   
         E2            Colchester        Notts County      0      4      A   
         E2              Coventry               Crewe      2      2      D   
         E2          Crawley Town             Preston      2      2      D   
         E2            Gillingham           Peterboro      2      2      D   
         E2             Port Vale           Stevenage      2      2      D   
         E2      Sheffield United             Swindon      1      0      H   
         E2            Shrewsbury             Walsall      0      1      A   
         E2                Wolves  Milton Keynes Dons      0      2      A   

                season  
date     league         
14/12/13 E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
('14/12/13', 'I1')
                    home    away  hgoal  agoal result season
date     league                                             
14/12/13 I1      Catania  Verona      0      0      D  13-14
('14/12/13', 'SP1')
                      home         away  hgoal  agoal result season
date     league                                                    
14/12/13 SP1     Barcelona   Villarreal      2      1      H  13-14
         SP1        Malaga       Getafe      1      0      H  13-14
         SP1       Osasuna  Real Madrid      2      2      D  13-14
         SP1     Vallecano      Granada      0      2      A  13-14
('14/12/13', 'T1')
                        home           away  hgoal  agoal result season
date     league                                                        
14/12/13 T1       Elazigspor    Antalyaspor      4      1      H  13-14
         T1      Kayserispor  Eskisehirspor      1      1      D  13-14
         T1        Sivasspor       Rizespor      3      1      H  13-14
('14/12/14', 'D1')
                       home        away  hgoal  agoal result season
date     league                                                    
14/12/14 D1      Leverkusen  M'gladbach      1      1      D  14-15
         D1       Wolfsburg   Paderborn      1      1      D  14-15
('14/12/14', 'I1')
                     home        away  hgoal  agoal result season
date     league                                                  
14/12/14 I1        Cesena  Fiorentina      1      4      A  14-15
         I1         Genoa        Roma      0      1      A  14-15
         I1      Juventus   Sampdoria      1      1      D  14-15
         I1         Milan      Napoli      2      0      H  14-15
         I1         Parma    Cagliari      0      0      D  14-15
         I1       Udinese      Verona      1      2      A  14-15
('14/12/14', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
14/12/14 SP1     Ath Madrid  Villarreal      0      1      A  14-15
         SP1        Espanol     Granada      2      1      H  14-15
         SP1        Sevilla       Eibar      0      0      D  14-15
         SP1       Sociedad  Ath Bilbao      1      1      D  14-15
('14/12/14', 'T1')
                               home         away  hgoal  agoal result season
date     league                                                             
14/12/14 T1           Gaziantepspor     Besiktas      0      1      A  14-15
         T1             Karabukspor    Bursaspor      3      2      H  14-15
         T1      Mersin Idman Yurdu  Erciyesspor      1      1      D  14-15
('14/12/15', 'I1')
                  home       away  hgoal  agoal result season
date     league                                              
14/12/15 I1      Lazio  Sampdoria      1      1      D  15-16
('14/12/15', 'T1')
                     home         away  hgoal  agoal result season
date     league                                                   
14/12/15 T1      Besiktas  Galatasaray      2      1      H  15-16
('15/01/12', 'I1')
                       home      away  hgoal  agoal result season
date     league                                                  
15/01/12 I1          Cesena    Novara      3      1      H  11-12
         I1          Chievo   Palermo      1      0      H  11-12
         I1      Fiorentina     Lecce      0      1      A  11-12
         I1           Genoa   Udinese      3      2      H  11-12
         I1        Juventus  Cagliari      1      1      D  11-12
         I1           Lazio  Atalanta      2      0      H  11-12
         I1           Milan     Inter      0      1      A  11-12
         I1           Parma     Siena      3      1      H  11-12
('15/01/12', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
15/01/12 SP1     Ath Bilbao     Levante      3      0      H  11-12
         SP1     Ath Madrid  Villarreal      3      0      H  11-12
         SP1      Barcelona       Betis      4      2      H  11-12
         SP1        Osasuna   Santander      0      2      A  11-12
         SP1       Sp Gijon      Malaga      2      1      H  11-12
('15/01/12', 'T1')
                               home         away  hgoal  agoal result season
date     league                                                             
15/01/12 T1                Besiktas    Bursaspor      3      1      H  11-12
         T1      Mersin Idman Yurdu  Antalyaspor      0      2      A  11-12
         T1                Orduspor   Buyuksehyr      1      0      H  11-12
         T1               Sivasspor   Ankaragucu      3      0      H  11-12
         T1             Trabzonspor   Samsunspor      4      0      H  11-12
('15/02/12', 'I1')
                     home      away  hgoal  agoal result season
date     league                                                
15/02/12 I1      Atalanta     Genoa      1      0      H  11-12
         I1         Parma  Juventus      0      0      D  11-12
('15/02/13', 'D1')
                      home           away  hgoal  agoal result season
date     league                                                      
15/02/13 D1      Wolfsburg  Bayern Munich      0      2      A  12-13
('15/02/13', 'E2')
                     home        away  hgoal  agoal result season
date     league                                                  
15/02/13 E2      Tranmere  Shrewsbury      0      2      A  12-13
('15/02/13', 'I1')
                  home   away  hgoal  agoal result season
date     league                                          
15/02/13 I1      Milan  Parma      2      1      H  12-13
('15/02/13', 'SP1')
                    home       away  hgoal  agoal result season
date     league                                                
15/02/13 SP1     Sevilla  La Coruna      3      1      H  12-13
('15/02/13', 'T1')
                                 home         away  hgoal  agoal result season
date     league                                                               
15/02/13 T1      Akhisar Belediyespor  Galatasaray      1      2      A  12-13
('15/02/14', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
15/02/14 D1      Bayern Munich       Freiburg      4      0      H  13-14
         D1       Braunschweig        Hamburg      4      2      H  13-14
         D1           Dortmund  Ein Frankfurt      4      0      H  13-14
         D1         Hoffenheim      Stuttgart      4      1      H  13-14
         D1         Leverkusen     Schalke 04      1      2      A  13-14
         D1      Werder Bremen     M'gladbach      1      1      D  13-14
('15/02/14', 'E2')
                               home           away  hgoal  agoal result season
date     league                                                               
15/02/14 E2            Bristol City       Tranmere      2      2      D  13-14
         E2                   Crewe      Brentford      1      3      A  13-14
         E2      Milton Keynes Dons         Oldham      2      1      H  13-14
         E2                 Preston  Leyton Orient      1      1      D  13-14
         E2               Rotherham      Stevenage      2      1      H  13-14
         E2              Shrewsbury      Port Vale      0      0      D  13-14
         E2                  Wolves   Notts County      2      0      H  13-14
('15/02/14', 'I1')
                       home   away  hgoal  agoal result season
date     league                                               
15/02/14 I1      Fiorentina  Inter      1      2      A  13-14
('15/02/14', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
15/02/14 SP1     Ath Madrid  Valladolid      3      0      H  13-14
         SP1      Barcelona   Vallecano      6      0      H  13-14
         SP1        Levante     Almeria      1      0      H  13-14
         SP1     Villarreal       Celta      0      2      A  13-14
('15/02/14', 'T1')
                        home            away  hgoal  agoal result season
date     league                                                         
15/02/14 T1      Karabukspor     Trabzonspor      2      2      D  13-14
         T1      Kayserispor  Genclerbirligi      1      0      H  13-14
('15/02/15', 'D1')
                     home       away  hgoal  agoal result season
date     league                                                 
15/02/15 D1      Hannover  Paderborn      1      2      A  14-15
         D1        Hertha   Freiburg      0      2      A  14-15
('15/02/15', 'I1')
                     home       away  hgoal  agoal result season
date     league                                                 
15/02/15 I1      Atalanta      Inter      1      4      A  14-15
         I1        Cesena   Juventus      2      2      D  14-15
         I1        Chievo  Sampdoria      2      1      H  14-15
         I1         Genoa     Verona      5      2      H  14-15
         I1         Milan     Empoli      1      1      D  14-15
         I1          Roma      Parma      0      0      D  14-15
         I1        Torino   Cagliari      1      1      D  14-15
         I1       Udinese      Lazio      0      1      A  14-15
('15/02/15', 'SP1')
                      home        away  hgoal  agoal result season
date     league                                                   
15/02/15 SP1     Barcelona     Levante      5      0      H  14-15
         SP1         Celta  Ath Madrid      2      0      H  14-15
         SP1      Valencia      Getafe      1      0      H  14-15
         SP1     Vallecano  Villarreal      2      0      H  14-15
('15/02/15', 'T1')
                        home                away  hgoal  agoal result season
date     league                                                             
15/02/15 T1         Besiktas           Bursaspor      3      2      H  14-15
         T1        Konyaspor           Sivasspor      0      1      A  14-15
         T1         Rizespor  Mersin Idman Yurdu      0      4      A  14-15
         T1      Trabzonspor          Buyuksehyr      3      2      H  14-15
('15/02/16', 'T1')
                        home         away  hgoal  agoal result season
date     league                                                      
15/02/16 T1      Trabzonspor  Kayserispor      2      1      H  15-16
('15/03/13', 'D1')
                      home                away  hgoal  agoal result season
date     league                                                           
15/03/13 D1      Wolfsburg  Fortuna Dusseldorf      1      1      D  12-13
('15/03/13', 'SP1')
                      home   away  hgoal  agoal result season
date     league                                              
15/03/13 SP1     La Coruna  Celta      3      1      H  12-13
('15/03/13', 'T1')
                          home         away  hgoal  agoal result season
date     league                                                        
15/03/13 T1          Bursaspor  Trabzonspor      3      2      H  12-13
         T1      Eskisehirspor   Elazigspor      2      2      D  12-13
('15/03/14', 'D1')
                          home        away  hgoal  agoal result season
date     league                                                       
15/03/14 D1      Bayern Munich  Leverkusen      2      1      H  13-14
         D1       Braunschweig   Wolfsburg      1      1      D  13-14
         D1           Dortmund  M'gladbach      1      2      A  13-14
         D1             Hertha    Hannover      0      3      A  13-14
         D1         Hoffenheim       Mainz      2      4      A  13-14
         D1      Werder Bremen   Stuttgart      1      1      D  13-14
('15/03/14', 'E2')
                               home          away  hgoal  agoal result season
date     league                                                              
15/03/14 E2                Bradford    Gillingham      1      1      D  13-14
         E2            Bristol City       Swindon      0      0      D  13-14
         E2                Carlisle     Stevenage      0      0      D  13-14
         E2            Crawley Town    Colchester      1      0      H  13-14
         E2                   Crewe        Oldham      1      1      D  13-14
         E2           Leyton Orient     Brentford      0      1      A  13-14
         E2      Milton Keynes Dons     Peterboro      0      2      A  13-14
         E2               Rotherham       Walsall      1      1      D  13-14
         E2                Tranmere  Notts County      3      2      H  13-14
         E2                  Wolves    Shrewsbury      0      0      D  13-14
('15/03/14', 'I1')
                   home   away  hgoal  agoal result season
date     league                                           
15/03/14 I1      Verona  Inter      0      2      A  13-14
('15/03/14', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
15/03/14 SP1     Ath Madrid      Espanol      1      0      H  13-14
         SP1        Levante        Celta      0      1      A  13-14
         SP1         Malaga  Real Madrid      0      1      A  13-14
         SP1      Vallecano      Almeria      3      1      H  13-14
('15/03/14', 'T1')
                                 home            away  hgoal  agoal result  \
date     league                                                              
15/03/14 T1      Akhisar Belediyespor     Antalyaspor      0      0      D   
         T1                 Kasimpasa  Genclerbirligi      1      2      A   
         T1                  Rizespor        Besiktas      2      2      D   

                season  
date     league         
15/03/14 T1      13-14  
         T1      13-14  
         T1      13-14  
('15/03/15', 'D1')
                       home      away  hgoal  agoal result season
date     league                                                  
15/03/15 D1      M'gladbach  Hannover      2      0      H  14-15
         D1       Wolfsburg  Freiburg      3      0      H  14-15
('15/03/15', 'I1')
                     home     away  hgoal  agoal result season
date     league                                               
15/03/15 I1      Atalanta  Udinese      0      0      D  14-15
         I1         Genoa   Chievo      0      2      A  14-15
         I1         Inter   Cesena      1      1      D  14-15
         I1      Sassuolo    Parma      4      1      H  14-15
         I1        Verona   Napoli      2      0      H  14-15
('15/03/15', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
15/03/15 SP1         Almeria  Villarreal      0      0      D  14-15
         SP1          Malaga     Cordoba      2      0      H  14-15
         SP1     Real Madrid     Levante      2      0      H  14-15
         SP1         Sevilla       Elche      3      0      H  14-15
('15/03/15', 'T1')
                           home                away  hgoal  agoal result  \
date     league                                                            
15/03/15 T1            Besiktas         Erciyesspor      5      1      H   
         T1       Eskisehirspor  Mersin Idman Yurdu      2      0      H   
         T1      Genclerbirligi          Fenerbahce      2      1      H   

                season  
date     league         
15/03/15 T1      14-15  
         T1      14-15  
         T1      14-15  
('15/03/16', 'E2')
                           home       away  hgoal  agoal result season
date     league                                                       
15/03/16 E2      Fleetwood Town    Walsall      0      1      A  15-16
         E2              Oldham  Blackpool      1      0      H  15-16
('15/03/16', 'T1')
                        home      away  hgoal  agoal result season
date     league                                                   
15/03/16 T1      Trabzonspor  Besiktas      0      2      A  15-16
('15/04/12', 'D1')
                       home        away  hgoal  agoal result season
date     league                                                    
15/04/12 D1        Freiburg  Hoffenheim      0      0      D  11-12
         D1      M'gladbach     FC Koln      3      0      H  11-12
('15/04/12', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
15/04/12 SP1     Ath Bilbao    Mallorca      1      0      H  11-12
         SP1          Betis     Osasuna      1      0      H  11-12
         SP1        Espanol    Valencia      4      0      H  11-12
         SP1         Malaga    Sociedad      1      1      D  11-12
         SP1      Vallecano  Ath Madrid      0      1      A  11-12
         SP1     Villarreal   Santander      1      1      D  11-12
         SP1       Zaragoza     Granada      1      0      H  11-12
('15/04/13', 'I1')
                  home      away  hgoal  agoal result season
date     league                                             
15/04/13 I1      Lazio  Juventus      0      2      A  12-13
('15/04/13', 'T1')
                     home         away  hgoal  agoal result season
date     league                                                   
15/04/13 T1      Besiktas  Antalyaspor      1      0      H  12-13
('15/04/14', 'E2')
                         home      away  hgoal  agoal result season
date     league                                                    
15/04/14 E2      Crawley Town  Tranmere      2      0      H  13-14
('15/04/15', 'I1')
                  home   away  hgoal  agoal result season
date     league                                          
15/04/15 I1      Genoa  Parma      2      0      H  14-15
('15/04/16', 'D1')
                     home        away  hgoal  agoal result season
date     league                                                  
15/04/16 D1      Hannover  M'gladbach      2      0      H  15-16
('15/04/16', 'SP1')
                    home     away  hgoal  agoal result season
date     league                                              
15/04/16 SP1     Levante  Espanol      2      1      H  15-16
('15/05/16', 'I1')
                    home        away  hgoal  agoal result season
date     league                                                 
15/05/16 I1       Chievo     Bologna      0      0      D  15-16
         I1       Empoli      Torino      2      1      H  15-16
         I1        Genoa    Atalanta      1      2      A  15-16
         I1        Lazio  Fiorentina      2      4      A  15-16
         I1      Palermo      Verona      3      2      H  15-16
         I1      Udinese       Carpi      1      2      A  15-16
('15/05/16', 'SP1')
                      home        away  hgoal  agoal result season
date     league                                                   
15/05/16 SP1         Betis      Getafe      2      1      H  15-16
         SP1       Espanol       Eibar      4      2      H  15-16
         SP1        Malaga  Las Palmas      4      1      H  15-16
         SP1      Sp Gijon  Villarreal      2      0      H  15-16
         SP1     Vallecano     Levante      3      1      H  15-16
('15/05/16', 'T1')
                                 home                away  hgoal  agoal  \
date     league                                                           
15/05/16 T1      Akhisar Belediyespor         Galatasaray      1      2   
         T1                  Besiktas         Osmanlispor      3      1   
         T1                Fenerbahce      Genclerbirligi      2      1   
         T1                 Kasimpasa  Mersin Idman Yurdu      7      0   

                result season  
date     league                
15/05/16 T1          A  15-16  
         T1          H  15-16  
         T1          H  15-16  
         T1          H  15-16  
('15/08/15', 'D1')
                          home        away  hgoal  agoal result season
date     league                                                       
15/08/15 D1           Augsburg      Hertha      0      1      A  15-16
         D1          Darmstadt    Hannover      2      2      D  15-16
         D1           Dortmund  M'gladbach      4      0      H  15-16
         D1         Leverkusen  Hoffenheim      2      1      H  15-16
         D1              Mainz  Ingolstadt      0      1      A  15-16
         D1      Werder Bremen  Schalke 04      0      3      A  15-16
('15/08/15', 'E2')
                             home            away  hgoal  agoal result season
date     league                                                              
15/08/15 E2              Barnsley          Burton      1      0      H  15-16
         E2             Blackpool        Rochdale      0      2      A  15-16
         E2              Bradford      Shrewsbury      1      1      D  15-16
         E2                  Bury         Swindon      2      2      D  15-16
         E2              Millwall        Coventry      0      4      A  15-16
         E2                Oldham  Fleetwood Town      1      0      H  15-16
         E2             Peterboro      Colchester      2      1      H  15-16
         E2             Port Vale      Gillingham      1      1      D  15-16
         E2            Scunthorpe           Crewe      2      0      H  15-16
         E2      Sheffield United    Chesterfield      2      0      H  15-16
         E2              Southend         Walsall      0      2      A  15-16
('15/08/15', 'T1')
                        home         away  hgoal  agoal result season
date     league                                                      
15/08/15 T1       Buyuksehyr  Antalyaspor      2      3      A  15-16
         T1        Sivasspor  Galatasaray      2      2      D  15-16
         T1      Trabzonspor    Bursaspor      1      0      H  15-16
('15/09/12', 'D1')
                           home                away  hgoal  agoal result  \
date     league                                                            
15/09/12 D1       Bayern Munich               Mainz      3      1      H   
         D1            Dortmund          Leverkusen      3      0      H   
         D1      Greuther Furth          Schalke 04      0      2      A   
         D1            Hannover       Werder Bremen      3      2      H   
         D1          M'gladbach            Nurnberg      2      3      A   
         D1           Stuttgart  Fortuna Dusseldorf      0      0      D   

                season  
date     league         
15/09/12 D1      12-13  
         D1      12-13  
         D1      12-13  
         D1      12-13  
         D1      12-13  
         D1      12-13  
('15/09/12', 'E2')
                               home          away  hgoal  agoal result season
date     league                                                              
15/09/12 E2             Bournemouth    Hartlepool      1      1      D  12-13
         E2                Carlisle       Swindon      2      2      D  12-13
         E2              Colchester     Doncaster      1      2      A  12-13
         E2      Milton Keynes Dons        Yeovil      1      0      H  12-13
         E2                  Oldham  Notts County      2      2      D  12-13
         E2              Portsmouth       Walsall      1      2      A  12-13
         E2                 Preston  Crawley Town      1      2      A  12-13
         E2        Sheffield United          Bury      1      1      D  12-13
         E2              Shrewsbury    Scunthorpe      0      1      A  12-13
         E2               Stevenage         Crewe      2      2      D  12-13
         E2                Tranmere      Coventry      2      0      H  12-13
('15/09/12', 'I1')
                    home      away  hgoal  agoal result season
date     league                                               
15/09/12 I1        Milan  Atalanta      0      1      A  12-13
         I1      Palermo  Cagliari      1      1      D  12-13
('15/09/12', 'SP1')
                     home         away  hgoal  agoal result season
date     league                                                   
15/09/12 SP1       Getafe    Barcelona      1      4      A  12-13
         SP1       Malaga      Levante      3      1      H  12-13
         SP1      Sevilla  Real Madrid      1      0      H  12-13
         SP1     Valencia        Celta      2      1      H  12-13
('15/09/12', 'T1')
                        home           away  hgoal  agoal result season
date     league                                                        
15/09/12 T1      Antalyaspor    Galatasaray      0      4      A  12-13
         T1        Bursaspor    Karabukspor      4      1      H  12-13
         T1        Kasimpasa  Gaziantepspor      3      0      H  12-13
('15/09/13', 'D1')
                         home        away  hgoal  agoal result season
date     league                                                      
15/09/13 D1      Braunschweig    Nurnberg      1      1      D  13-14
         D1        Hoffenheim  M'gladbach      2      1      H  13-14
('15/09/13', 'E2')
                     home        away  hgoal  agoal result season
date     league                                                  
15/09/13 E2      Coventry  Gillingham      2      1      H  13-14
('15/09/13', 'I1')
                       home      away  hgoal  agoal result season
date     league                                                  
15/09/13 I1      Fiorentina  Cagliari      1      1      D  13-14
         I1           Lazio    Chievo      3      0      H  13-14
         I1         Livorno   Catania      2      0      H  13-14
         I1       Sampdoria     Genoa      0      3      A  13-14
         I1         Udinese   Bologna      1      1      D  13-14
         I1          Verona  Sassuolo      2      0      H  13-14
('15/09/13', 'SP1')
                    home       away  hgoal  agoal result season
date     league                                                
15/09/13 SP1       Betis   Valencia      3      1      H  13-14
         SP1      Getafe    Osasuna      2      1      H  13-14
         SP1     Granada    Espanol      0      1      A  13-14
         SP1      Malaga  Vallecano      5      0      H  13-14
('15/09/13', 'T1')
                           home           away  hgoal  agoal result season
date     league                                                           
15/09/13 T1           Bursaspor       Besiktas      0      3      A  13-14
         T1          Elazigspor      Konyaspor      2      0      H  13-14
         T1      Genclerbirligi    Kayserispor      1      1      D  13-14
         T1           Sivasspor  Eskisehirspor      3      2      H  13-14
('15/09/14', 'I1')
                   home     away  hgoal  agoal result season
date     league                                             
15/09/14 I1      Verona  Palermo      2      1      H  14-15
('15/09/14', 'SP1')
                  home       away  hgoal  agoal result season
date     league                                              
15/09/14 SP1     Eibar  La Coruna      0      1      A  14-15
('15/09/14', 'T1')
                                 home       away  hgoal  agoal result season
date     league                                                             
15/09/14 T1      Akhisar Belediyespor  Sivasspor      2      2      D  14-15
         T1                  Besiktas   Rizespor      1      1      D  14-15
('15/09/15', 'E2')
                             home        away  hgoal  agoal result season
date     league                                                          
15/09/15 E2             Port Vale    Millwall      0      2      A  15-16
         E2      Sheffield United  Colchester      2      3      A  15-16
('15/10/11', 'D1')
                          home            away  hgoal  agoal result season
date     league                                                           
15/10/11 D1      Bayern Munich          Hertha      4      0      H  11-12
         D1              Mainz        Augsburg      0      1      A  11-12
         D1         M'gladbach      Leverkusen      2      2      D  11-12
         D1         Schalke 04  Kaiserslautern      1      2      A  11-12
         D1          Stuttgart      Hoffenheim      2      0      H  11-12
         D1          Wolfsburg        Nurnberg      2      1      H  11-12
('15/10/11', 'E2')
                               home          away  hgoal  agoal result season
date     league                                                              
15/10/11 E2               Brentford    Scunthorpe      0      0      D  11-12
         E2            Chesterfield  Notts County      1      3      A  11-12
         E2                  Exeter  Huddersfield      0      4      A  11-12
         E2              Hartlepool       Wycombe      1      3      A  11-12
         E2           Leyton Orient          Bury      1      0      H  11-12
         E2      Milton Keynes Dons   Bournemouth      2      2      D  11-12
         E2                Rochdale    Colchester      2      2      D  11-12
         E2               Stevenage      Charlton      1      0      H  11-12
         E2                Tranmere        Oldham      1      0      H  11-12
         E2                 Walsall       Preston      1      0      H  11-12
         E2                  Yeovil      Carlisle      0      3      A  11-12
('15/10/11', 'I1')
                    home     away  hgoal  agoal result season
date     league                                              
15/10/11 I1      Catania    Inter      2      1      H  11-12
         I1        Milan  Palermo      3      0      H  11-12
         I1       Napoli    Parma      1      2      A  11-12
('15/10/11', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
15/10/11 SP1       Barcelona   Santander      3      0      H  11-12
         SP1          Getafe  Villarreal      0      0      D  11-12
         SP1         Granada  Ath Madrid      0      0      D  11-12
         SP1        Mallorca    Valencia      1      1      D  11-12
         SP1     Real Madrid       Betis      4      1      H  11-12
('15/10/11', 'T1')
                      home           away  hgoal  agoal result season
date     league                                                      
15/10/11 T1       Besiktas    Kayserispor      0      2      A  11-12
         T1       Orduspor  Eskisehirspor      2      1      H  11-12
         T1      Sivasspor  Gaziantepspor      0      0      D  11-12
('15/11/14', 'E2')
                       home              away  hgoal  agoal result season
date     league                                                          
15/11/14 E2        Coventry      Notts County      0      1      A  14-15
         E2           Crewe      Chesterfield      0      0      D  14-15
         E2       Doncaster  Sheffield United      0      1      A  14-15
         E2      Gillingham     Leyton Orient      3      2      H  14-15
         E2          Oldham      Crawley Town      1      1      D  14-15
         E2       Port Vale          Rochdale      1      0      H  14-15
         E2         Preston          Bradford      1      2      A  14-15
         E2         Swindon      Bristol City      1      0      H  14-15
         E2         Walsall         Peterboro      0      0      D  14-15
         E2          Yeovil    Fleetwood Town      0      1      A  14-15
('15/12/12', 'D1')
                               home           away  hgoal  agoal result season
date     league                                                               
15/12/12 D1      Fortuna Dusseldorf       Hannover      2      1      H  12-13
         D1          Greuther Furth       Augsburg      1      1      D  12-13
         D1              Leverkusen        Hamburg      3      0      H  12-13
         D1                   Mainz      Stuttgart      3      1      H  12-13
         D1              Schalke 04       Freiburg      1      3      A  12-13
         D1               Wolfsburg  Ein Frankfurt      0      2      A  12-13
('15/12/12', 'E2')
                               home          away  hgoal  agoal result season
date     league                                                              
15/12/12 E2             Bournemouth    Colchester      1      0      H  12-13
         E2                   Crewe          Bury      1      0      H  12-13
         E2               Doncaster      Coventry      1      4      A  12-13
         E2           Leyton Orient    Scunthorpe      1      3      A  12-13
         E2      Milton Keynes Dons    Hartlepool      1      0      H  12-13
         E2            Notts County     Brentford      1      2      A  12-13
         E2                  Oldham       Swindon      0      2      A  12-13
         E2              Portsmouth       Preston      0      0      D  12-13
         E2        Sheffield United      Tranmere      0      0      D  12-13
         E2              Shrewsbury      Carlisle      2      1      H  12-13
         E2               Stevenage  Crawley Town      1      2      A  12-13
         E2                 Walsall        Yeovil      2      2      D  12-13
('15/12/12', 'I1')
                    home     away  hgoal  agoal result season
date     league                                              
15/12/12 I1        Lazio    Inter      1      0      H  12-13
         I1      Udinese  Palermo      1      1      D  12-13
('15/12/12', 'SP1')
                     home        away  hgoal  agoal result season
date     league                                                  
15/12/12 SP1       Getafe     Osasuna      1      1      D  12-13
         SP1      Granada    Sociedad      0      0      D  12-13
         SP1     Mallorca  Ath Bilbao      0      1      A  12-13
         SP1      Sevilla      Malaga      0      2      A  12-13
('15/12/12', 'T1')
                               home                  away  hgoal  agoal  \
date     league                                                           
15/12/12 T1              Elazigspor         Gaziantepspor      0      0   
         T1          Genclerbirligi              Besiktas      1      1   
         T1      Mersin Idman Yurdu  Akhisar Belediyespor      2      1   

                result season  
date     league                
15/12/12 T1          D  12-13  
         T1          D  12-13  
         T1          H  12-13  
('15/12/13', 'D1')
                       home           away  hgoal  agoal result season
date     league                                                       
15/12/13 D1      Leverkusen  Ein Frankfurt      0      1      A  13-14
         D1      Schalke 04       Freiburg      2      0      H  13-14
('15/12/13', 'I1')
                       home       away  hgoal  agoal result season
date     league                                                   
15/12/13 I1          Chievo  Sampdoria      0      1      A  13-14
         I1      Fiorentina    Bologna      3      0      H  13-14
         I1           Genoa   Atalanta      1      1      D  13-14
         I1        Juventus   Sassuolo      4      0      H  13-14
         I1           Lazio    Livorno      2      0      H  13-14
         I1          Napoli      Inter      4      2      H  13-14
         I1           Parma   Cagliari      0      0      D  13-14
         I1         Udinese     Torino      0      2      A  13-14
('15/12/13', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
15/12/13 SP1        Almeria     Espanol      0      0      D  13-14
         SP1     Ath Madrid    Valencia      3      0      H  13-14
         SP1        Sevilla  Ath Bilbao      1      1      D  13-14
         SP1       Sociedad       Betis      5      1      H  13-14
('15/12/13', 'T1')
                           home         away  hgoal  agoal result season
date     league                                                         
15/12/13 T1       Gaziantepspor  Erciyesspor      2      1      H  13-14
         T1      Genclerbirligi  Galatasaray      1      1      D  13-14
('15/12/14', 'I1')
                   home    away  hgoal  agoal result season
date     league                                            
15/12/14 I1      Chievo   Inter      0      2      A  14-15
         I1      Empoli  Torino      0      0      D  14-15
('15/12/14', 'SP1')
                      home   away  hgoal  agoal result season
date     league                                              
15/12/14 SP1     La Coruna  Elche      1      0      H  14-15
('15/12/14', 'T1')
                        home      away  hgoal  agoal result season
date     league                                                   
15/12/14 T1      Trabzonspor  Rizespor      3      2      H  14-15
('16/01/12', 'I1')
                   home     away  hgoal  agoal result season
date     league                                             
16/01/12 I1      Napoli  Bologna      1      1      D  11-12
('16/01/12', 'T1')
                        home           away  hgoal  agoal result season
date     league                                                        
16/01/12 T1      Kayserispor  Gaziantepspor      1      1      D  11-12
         T1       Manisaspor     Fenerbahce      1      2      A  11-12
('16/01/13', 'E2')
                     home      away  hgoal  agoal result season
date     league                                                
16/01/13 E2      Coventry  Tranmere      1      0      H  12-13
('16/01/15', 'E2')
                    home           away  hgoal  agoal result season
date     league                                                    
16/01/15 E2      Preston  Leyton Orient      2      2      D  14-15
('16/01/15', 'SP1')
                    home   away  hgoal  agoal result season
date     league                                            
16/01/15 SP1     Cordoba  Eibar      1      1      D  14-15
('16/01/16', 'E2')
                       home              away  hgoal  agoal result season
date     league                                                          
16/01/16 E2       Blackpool        Scunthorpe      5      0      H  15-16
         E2        Bradford            Oldham      1      0      H  15-16
         E2            Bury           Walsall      2      3      A  15-16
         E2      Colchester  Sheffield United      1      2      A  15-16
         E2        Coventry            Burton      0      2      A  15-16
         E2       Doncaster        Gillingham      2      2      D  15-16
         E2       Peterboro          Southend      0      0      D  15-16
         E2      Shrewsbury          Barnsley      0      3      A  15-16
('16/01/16', 'I1')
                     home       away  hgoal  agoal result season
date     league                                                 
16/01/16 I1      Atalanta      Inter      1      1      D  15-16
         I1        Napoli   Sassuolo      3      1      H  15-16
         I1        Torino  Frosinone      4      2      H  15-16
('16/01/16', 'SP1')
                       home       away  hgoal  agoal result season
date     league                                                   
16/01/16 SP1          Celta    Levante      4      3      H  15-16
         SP1        Sevilla     Malaga      2      1      H  15-16
         SP1       Sociedad  La Coruna      1      1      D  15-16
         SP1     Villarreal      Betis      0      0      D  15-16
('16/01/16', 'T1')
                                 home           away  hgoal  agoal result  \
date     league                                                             
16/01/16 T1      Akhisar Belediyespor      Konyaspor      0      2      A   
         T1               Galatasaray      Sivasspor      3      1      H   
         T1                 Kasimpasa  Gaziantepspor      1      2      A   
         T1               Kayserispor    Osmanlispor      1      0      H   

                season  
date     league         
16/01/16 T1      15-16  
         T1      15-16  
         T1      15-16  
         T1      15-16  
('16/02/13', 'D1')
                               home            away  hgoal  agoal result  \
date     league                                                            
16/02/13 D1                Dortmund   Ein Frankfurt      3      0      H   
         D1      Fortuna Dusseldorf  Greuther Furth      1      0      H   
         D1                 Hamburg      M'gladbach      1      0      H   
         D1              Leverkusen        Augsburg      2      1      H   
         D1                   Mainz      Schalke 04      2      2      D   
         D1           Werder Bremen        Freiburg      2      3      A   

                season  
date     league         
16/02/13 D1      12-13  
         D1      12-13  
         D1      12-13  
         D1      12-13  
         D1      12-13  
         D1      12-13  
('16/02/13', 'E2')
                             home           away  hgoal  agoal result season
date     league                                                             
16/02/13 E2                  Bury       Coventry      0      2      A  12-13
         E2            Hartlepool  Leyton Orient      2      1      H  12-13
         E2            Portsmouth       Carlisle      1      1      D  12-13
         E2               Preston    Bournemouth      2      0      H  12-13
         E2      Sheffield United     Colchester      3      0      H  12-13
         E2               Walsall   Notts County      1      1      D  12-13
('16/02/13', 'I1')
                   home      away  hgoal  agoal result season
date     league                                              
16/02/13 I1      Chievo   Palermo      1      1      D  12-13
         I1        Roma  Juventus      1      0      H  12-13
('16/02/13', 'SP1')
                    home        away  hgoal  agoal result season
date     league                                                 
16/02/13 SP1      Getafe       Celta      3      1      H  12-13
         SP1     Granada   Barcelona      1      2      A  12-13
         SP1      Malaga  Ath Bilbao      1      0      H  12-13
         SP1     Osasuna    Zaragoza      1      0      H  12-13
('16/02/13', 'T1')
                          home           away  hgoal  agoal result season
date     league                                                          
16/02/13 T1        Antalyaspor    Karabukspor      0      0      D  12-13
         T1           Besiktas  Gaziantepspor      1      1      D  12-13
         T1      Eskisehirspor    Kayserispor      0      3      A  12-13
('16/02/14', 'D1')
                     home       away  hgoal  agoal result season
date     league                                                 
16/02/14 D1      Augsburg   Nurnberg      0      1      A  13-14
         D1        Hertha  Wolfsburg      1      2      A  13-14
('16/02/14', 'I1')
                     home       away  hgoal  agoal result season
date     league                                                 
16/02/14 I1      Atalanta      Parma      0      4      A  13-14
         I1      Cagliari    Livorno      1      2      A  13-14
         I1       Catania      Lazio      3      1      H  13-14
         I1         Genoa    Udinese      3      3      D  13-14
         I1      Juventus     Chievo      3      1      H  13-14
         I1          Roma  Sampdoria      3      0      H  13-14
         I1      Sassuolo     Napoli      0      2      A  13-14
('16/02/14', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
16/02/14 SP1     Ath Bilbao      Espanol      1      2      A  13-14
         SP1         Getafe  Real Madrid      0      3      A  13-14
         SP1        Granada        Betis      1      0      H  13-14
         SP1        Sevilla     Valencia      0      0      D  13-14
('16/02/14', 'T1')
                                 home         away  hgoal  agoal result season
date     league                                                               
16/02/14 T1      Akhisar Belediyespor  Erciyesspor      0      2      A  13-14
         T1                  Besiktas    Bursaspor      1      0      H  13-14
         T1                Fenerbahce    Kasimpasa      2      1      H  13-14
('16/02/15', 'SP1')
                  home   away  hgoal  agoal result season
date     league                                          
16/02/15 SP1     Eibar  Elche      0      1      A  14-15
('16/02/15', 'T1')
                           home           away  hgoal  agoal result season
date     league                                                           
16/02/15 T1         Galatasaray  Balikesirspor      3      1      H  14-15
         T1      Genclerbirligi  Eskisehirspor      1      2      A  14-15
('16/02/16', 'E2')
                       home              away  hgoal  agoal result season
date     league                                                          
16/02/16 E2       Blackpool            Oldham      0      0      D  15-16
         E2        Bradford          Southend      2      0      H  15-16
         E2            Bury  Sheffield United      1      0      H  15-16
         E2      Colchester      Chesterfield      1      1      D  15-16
         E2        Millwall        Scunthorpe      0      2      A  15-16
         E2        Rochdale             Crewe      2      2      D  15-16
('16/03/12', 'D1')
                       home       away  hgoal  agoal result season
date     league                                                   
16/03/12 D1      Hoffenheim  Stuttgart      1      2      A  11-12
('16/03/12', 'T1')
                           home         away  hgoal  agoal result season
date     league                                                         
16/03/12 T1      Genclerbirligi  Trabzonspor      1      1      D  11-12
('16/03/13', 'D1')
                          home            away  hgoal  agoal result season
date     league                                                           
16/03/13 D1           Dortmund        Freiburg      5      1      H  12-13
         D1            Hamburg        Augsburg      0      1      A  12-13
         D1         Hoffenheim           Mainz      0      0      D  12-13
         D1         Leverkusen   Bayern Munich      1      2      A  12-13
         D1           Nurnberg      Schalke 04      3      0      H  12-13
         D1      Werder Bremen  Greuther Furth      2      2      D  12-13
('16/03/13', 'E2')
                               home              away  hgoal  agoal result  \
date     league                                                              
16/03/13 E2               Brentford           Preston      1      0      H   
         E2                    Bury        Colchester      1      2      A   
         E2                Coventry        Hartlepool      1      0      H   
         E2                   Crewe        Shrewsbury      1      1      D   
         E2               Doncaster        Portsmouth      1      1      D   
         E2           Leyton Orient          Carlisle      4      1      H   
         E2      Milton Keynes Dons          Tranmere      3      0      H   
         E2            Notts County        Scunthorpe      1      0      H   
         E2                  Oldham       Bournemouth      0      1      A   
         E2               Stevenage  Sheffield United      4      0      H   
         E2                 Walsall      Crawley Town      2      2      D   

                season  
date     league         
16/03/13 E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
('16/03/13', 'I1')
                    home      away  hgoal  agoal result season
date     league                                               
16/03/13 I1      Bologna  Juventus      0      2      A  12-13
         I1      Catania   Udinese      3      1      H  12-13
('16/03/13', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
16/03/13 SP1          Getafe  Ath Bilbao      1      0      H  12-13
         SP1     Real Madrid    Mallorca      5      2      H  12-13
         SP1        Sociedad  Valladolid      4      1      H  12-13
         SP1        Valencia       Betis      3      0      H  12-13
('16/03/13', 'T1')
                           home                away  hgoal  agoal result  \
date     league                                                            
16/03/13 T1            Besiktas           Kasimpasa      1      3      A   
         T1          Buyuksehyr  Mersin Idman Yurdu      4      2      H   
         T1      Genclerbirligi         Karabukspor      2      1      H   

                season  
date     league         
16/03/13 T1      12-13  
         T1      12-13  
         T1      12-13  
('16/03/14', 'D1')
                          home      away  hgoal  agoal result season
date     league                                                     
16/03/14 D1      Ein Frankfurt  Freiburg      1      4      A  13-14
         D1            Hamburg  Nurnberg      2      1      H  13-14
('16/03/14', 'E2')
                     home       away  hgoal  agoal result season
date     league                                                 
16/03/14 E2      Coventry  Port Vale      2      2      D  13-14
('16/03/14', 'I1')
                       home       away  hgoal  agoal result season
date     league                                                   
16/03/14 I1        Atalanta  Sampdoria      3      0      H  13-14
         I1        Cagliari      Lazio      0      2      A  13-14
         I1      Fiorentina     Chievo      3      1      H  13-14
         I1           Genoa   Juventus      0      1      A  13-14
         I1         Livorno    Bologna      2      1      H  13-14
         I1           Milan      Parma      2      4      A  13-14
         I1        Sassuolo    Catania      3      1      H  13-14
('16/03/14', 'SP1')
                      home        away  hgoal  agoal result season
date     league                                                   
16/03/14 SP1     Barcelona     Osasuna      7      0      H  13-14
         SP1         Elche       Betis      0      0      D  13-14
         SP1       Sevilla  Valladolid      4      1      H  13-14
         SP1      Sociedad    Valencia      1      0      H  13-14
('16/03/14', 'T1')
                          home           away  hgoal  agoal result season
date     league                                                          
16/03/14 T1      Eskisehirspor     Elazigspor      1      0      H  13-14
         T1         Fenerbahce    Erciyesspor      2      1      H  13-14
         T1          Konyaspor  Gaziantepspor      0      1      A  13-14
         T1          Sivasspor    Trabzonspor      0      4      A  13-14
('16/03/15', 'I1')
                       home       away  hgoal  agoal result season
date     league                                                   
16/03/15 I1      Fiorentina      Milan      2      1      H  14-15
         I1            Roma  Sampdoria      0      2      A  14-15
         I1          Torino      Lazio      0      2      A  14-15
('16/03/15', 'SP1')
                   home      away  hgoal  agoal result season
date     league                                              
16/03/15 SP1     Getafe  Sociedad      0      1      A  14-15
('16/03/15', 'T1')
                          home         away  hgoal  agoal result season
date     league                                                        
16/03/15 T1      Gaziantepspor  Trabzonspor      2      0      H  14-15
('16/04/12', 'SP1')
                   home     away  hgoal  agoal result season
date     league                                             
16/04/12 SP1     Getafe  Sevilla      5      1      H  11-12
('16/04/13', 'E2')
                             home                away  hgoal  agoal result  \
date     league                                                              
16/04/13 E2                  Bury          Scunthorpe      2      1      H   
         E2            Colchester  Milton Keynes Dons      0      2      A   
         E2                Oldham              Yeovil      1      0      H   
         E2      Sheffield United           Brentford      2      2      D   
         E2               Swindon               Crewe      4      1      H   

                season  
date     league         
16/04/13 E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
('16/04/16', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
16/04/16 D1           Augsburg      Stuttgart      1      0      H  15-16
         D1      Bayern Munich     Schalke 04      3      0      H  15-16
         D1          Darmstadt     Ingolstadt      2      0      H  15-16
         D1         Hoffenheim         Hertha      2      1      H  15-16
         D1         Leverkusen  Ein Frankfurt      3      0      H  15-16
         D1      Werder Bremen      Wolfsburg      3      2      H  15-16
('16/04/16', 'E2')
                           home              away  hgoal  agoal result season
date     league                                                              
16/04/16 E2              Burton          Barnsley      0      0      D  15-16
         E2        Chesterfield  Sheffield United      0      3      A  15-16
         E2          Colchester         Peterboro      1      4      A  15-16
         E2            Coventry          Millwall      2      1      H  15-16
         E2               Crewe        Scunthorpe      2      3      A  15-16
         E2           Doncaster             Wigan      3      1      H  15-16
         E2      Fleetwood Town            Oldham      1      1      D  15-16
         E2          Gillingham         Port Vale      0      2      A  15-16
         E2            Rochdale         Blackpool      3      0      H  15-16
         E2          Shrewsbury          Bradford      1      1      D  15-16
         E2             Swindon              Bury      0      1      A  15-16
         E2             Walsall          Southend      1      0      H  15-16
('16/04/16', 'I1')
                    home    away  hgoal  agoal result season
date     league                                             
16/04/16 I1      Bologna  Torino      0      1      A  15-16
         I1        Carpi   Genoa      4      1      H  15-16
         I1        Inter  Napoli      2      0      H  15-16
('16/04/16', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
16/04/16 SP1          Celta        Betis      1      1      D  15-16
         SP1          Eibar     Sociedad      2      1      H  15-16
         SP1         Getafe  Real Madrid      1      5      A  15-16
         SP1     Las Palmas     Sp Gijon      1      1      D  15-16
('16/04/16', 'T1')
                          home         away  hgoal  agoal result season
date     league                                                        
16/04/16 T1        Antalyaspor  Galatasaray      4      2      H  15-16
         T1      Eskisehirspor    Konyaspor      1      2      A  15-16
         T1           Rizespor  Osmanlispor      0      1      A  15-16
         T1          Sivasspor     Besiktas      1      2      A  15-16
('16/05/14', 'SP1')
                   home     away  hgoal  agoal result season
date     league                                             
16/05/14 SP1     Malaga  Levante      1      0      H  13-14
('16/05/14', 'T1')
                          home        away  hgoal  agoal result season
date     league                                                       
16/05/14 T1      Eskisehirspor   Konyaspor      1      1      D  13-14
         T1        Kayserispor  Fenerbahce      0      2      A  13-14
('16/05/15', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
16/05/15 D1           Augsburg       Hannover      1      2      A  14-15
         D1           Freiburg  Bayern Munich      2      1      H  14-15
         D1             Hertha  Ein Frankfurt      0      0      D  14-15
         D1         Leverkusen     Hoffenheim      2      0      H  14-15
         D1              Mainz        FC Koln      2      0      H  14-15
         D1         Schalke 04      Paderborn      1      0      H  14-15
         D1          Stuttgart        Hamburg      2      1      H  14-15
         D1      Werder Bremen     M'gladbach      0      2      A  14-15
         D1          Wolfsburg       Dortmund      2      1      H  14-15
('16/05/15', 'I1')
                      home      away  hgoal  agoal result season
date     league                                                 
16/05/15 I1          Inter  Juventus      1      2      A  14-15
         I1      Sampdoria     Lazio      0      1      A  14-15
('16/05/15', 'T1')
                          home            away  hgoal  agoal result season
date     league                                                           
16/05/15 T1      Balikesirspor     Karabukspor      4      2      H  14-15
         T1        Galatasaray  Genclerbirligi      1      0      H  14-15
         T1          Sivasspor       Kasimpasa      1      1      D  14-15
('16/08/11', 'E2')
                             home                away  hgoal  agoal result  \
date     league                                                              
16/08/11 E2           Bournemouth           Stevenage      1      3      A   
         E2                  Bury      Sheffield Weds      2      1      H   
         E2          Chesterfield             Preston      0      2      A   
         E2            Colchester            Charlton      0      2      A   
         E2                Exeter           Brentford      1      2      A   
         E2            Hartlepool        Huddersfield      0      0      D   
         E2         Leyton Orient             Wycombe      1      3      A   
         E2          Notts County            Tranmere      3      2      H   
         E2              Rochdale            Carlisle      0      0      D   
         E2            Scunthorpe              Oldham      1      2      A   
         E2      Sheffield United             Walsall      3      2      H   
         E2                Yeovil  Milton Keynes Dons      0      1      A   

                season  
date     league         
16/08/11 E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
('16/08/13', 'T1')
                        home         away  hgoal  agoal result season
date     league                                                      
16/08/13 T1      Antalyaspor  Erciyesspor      0      0      D  13-14
('16/08/14', 'E2')
                         home                away  hgoal  agoal result season
date     league                                                              
16/08/14 E2      Bristol City          Colchester      2      1      H  14-15
         E2      Chesterfield            Rochdale      2      1      H  14-15
         E2          Coventry    Sheffield United      1      0      H  14-15
         E2      Crawley Town             Swindon      1      0      H  14-15
         E2             Crewe            Barnsley      1      2      A  14-15
         E2         Doncaster           Port Vale      1      3      A  14-15
         E2        Gillingham              Yeovil      2      0      H  14-15
         E2      Notts County      Fleetwood Town      0      1      A  14-15
         E2            Oldham       Leyton Orient      1      3      A  14-15
         E2         Peterboro  Milton Keynes Dons      3      2      H  14-15
         E2        Scunthorpe             Preston      0      4      A  14-15
         E2           Walsall            Bradford      0      0      D  14-15
('16/08/15', 'D1')
                      home           away  hgoal  agoal result season
date     league                                                      
16/08/15 D1      Stuttgart        FC Koln      1      3      A  15-16
         D1      Wolfsburg  Ein Frankfurt      2      1      H  15-16
('16/08/15', 'E2')
                  home       away  hgoal  agoal result season
date     league                                              
16/08/15 E2      Wigan  Doncaster      0      0      D  15-16
('16/08/15', 'T1')
                               home                  away  hgoal  agoal  \
date     league                                                           
16/08/15 T1           Gaziantepspor             Kasimpasa      0      3   
         T1               Konyaspor  Akhisar Belediyespor      1      1   
         T1      Mersin Idman Yurdu              Besiktas      2      5   
         T1             Osmanlispor           Kayserispor      1      1   

                result season  
date     league                
16/08/15 T1          A  15-16  
         T1          D  15-16  
         T1          A  15-16  
         T1          D  15-16  
('16/09/11', 'D1')
                     home       away  hgoal  agoal result season
date     league                                                 
16/09/11 D1      Freiburg  Stuttgart      1      2      A  11-12
('16/09/11', 'T1')
                          home         away  hgoal  agoal result season
date     league                                                        
16/09/11 T1      Gaziantepspor   Fenerbahce      1      3      A  11-12
         T1        Kayserispor  Antalyaspor      0      1      A  11-12
('16/09/12', 'D1')
                          home        away  hgoal  agoal result season
date     league                                                       
16/09/12 D1      Ein Frankfurt     Hamburg      3      2      H  12-13
         D1           Freiburg  Hoffenheim      5      3      H  12-13
('16/09/12', 'I1')
                       home       away  hgoal  agoal result season
date     league                                                   
16/09/12 I1          Chievo      Lazio      1      3      A  12-13
         I1      Fiorentina    Catania      2      0      H  12-13
         I1           Genoa   Juventus      1      3      A  12-13
         I1          Napoli      Parma      3      1      H  12-13
         I1         Pescara  Sampdoria      2      3      A  12-13
         I1            Roma    Bologna      2      3      A  12-13
         I1           Siena    Udinese      2      2      D  12-13
         I1          Torino      Inter      0      2      A  12-13
('16/09/12', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
16/09/12 SP1     Ath Madrid   Vallecano      4      3      H  12-13
         SP1        Espanol  Ath Bilbao      3      3      D  12-13
         SP1        Granada   La Coruna      1      1      D  12-13
         SP1        Osasuna    Mallorca      1      1      D  12-13
         SP1       Sociedad    Zaragoza      2      0      H  12-13
('16/09/12', 'T1')
                                 home                away  hgoal  agoal  \
date     league                                                           
16/09/12 T1      Akhisar Belediyespor          Buyuksehyr      0      4   
         T1             Eskisehirspor      Genclerbirligi      4      2   
         T1                Fenerbahce  Mersin Idman Yurdu      2      1   
         T1               Trabzonspor           Sivasspor      1      0   

                result season  
date     league                
16/09/12 T1          A  12-13  
         T1          H  12-13  
         T1          H  12-13  
         T1          H  12-13  
('16/09/13', 'I1')
                  home  away  hgoal  agoal result season
date     league                                         
16/09/13 I1      Parma  Roma      1      3      A  13-14
('16/09/13', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
16/09/13 SP1     Ath Bilbao       Celta      3      2      H  13-14
         SP1          Elche  Valladolid      0      0      D  13-14
('16/09/13', 'T1')
                      home        away  hgoal  agoal result season
date     league                                                   
16/09/13 T1      Kasimpasa  Fenerbahce      2      3      A  13-14
('16/09/14', 'E2')
                               home              away  hgoal  agoal result  \
date     league                                                              
16/09/14 E2              Colchester  Sheffield United      2      3      A   
         E2               Doncaster      Crawley Town      0      0      D   
         E2              Gillingham         Peterboro      2      1      H   
         E2      Milton Keynes Dons          Bradford      1      2      A   
         E2            Notts County     Leyton Orient      1      1      D   
         E2               Port Vale      Bristol City      0      3      A   
         E2                 Preston      Chesterfield      3      3      D   
         E2                Rochdale           Walsall      4      0      H   
         E2              Scunthorpe          Coventry      2      1      H   
         E2                 Swindon            Oldham      2      2      D   
         E2                  Yeovil             Crewe      1      1      D   

                season  
date     league         
16/09/14 E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
('16/10/11', 'D1')
                     home      away  hgoal  agoal result season
date     league                                                
16/10/11 D1       FC Koln  Hannover      2      0      H  11-12
         D1      Freiburg   Hamburg      1      2      A  11-12
('16/10/11', 'E2')
                             home            away  hgoal  agoal result season
date     league                                                              
16/10/11 E2      Sheffield United  Sheffield Weds      2      2      D  11-12
('16/10/11', 'I1')
                     home        away  hgoal  agoal result season
date     league                                                  
16/10/11 I1      Atalanta     Udinese      0      0      D  11-12
         I1      Cagliari       Siena      0      0      D  11-12
         I1        Cesena  Fiorentina      0      0      D  11-12
         I1        Chievo    Juventus      0      0      D  11-12
         I1         Genoa       Lecce      0      0      D  11-12
         I1         Lazio        Roma      2      1      H  11-12
         I1        Novara     Bologna      0      2      A  11-12
('16/10/11', 'SP1')
                      home      away  hgoal  agoal result season
date     league                                                 
16/10/11 SP1       Levante    Malaga      3      0      H  11-12
         SP1       Sevilla  Sp Gijon      2      1      H  11-12
         SP1     Vallecano   Espanol      0      1      A  11-12
         SP1      Zaragoza  Sociedad      2      0      H  11-12
('16/10/11', 'T1')
                           home         away  hgoal  agoal result season
date     league                                                         
16/10/11 T1          Buyuksehyr   Samsunspor      3      0      H  11-12
         T1         Galatasaray    Bursaspor      2      1      H  11-12
         T1      Genclerbirligi  Antalyaspor      3      0      H  11-12
         T1          Manisaspor  Karabukspor      2      1      H  11-12
('16/10/12', 'E2')
                          home        away  hgoal  agoal result season
date     league                                                       
16/10/12 E2               Bury    Carlisle      1      1      D  12-13
         E2      Leyton Orient  Hartlepool      1      0      H  12-13
('16/10/15', 'D1')
                  home      away  hgoal  agoal result season
date     league                                             
16/10/15 D1      Mainz  Dortmund      0      2      A  15-16
('16/11/12', 'E2')
                     home                away  hgoal  agoal result season
date     league                                                          
16/11/12 E2      Tranmere  Milton Keynes Dons      0      1      A  12-13
('16/11/12', 'T1')
                        home         away  hgoal  agoal result season
date     league                                                      
16/11/12 T1      Galatasaray  Karabukspor      1      3      A  12-13
('16/11/13', 'E2')
                             home          away  hgoal  agoal result season
date     league                                                            
16/11/13 E2             Brentford         Crewe      5      0      H  13-14
         E2              Carlisle  Crawley Town      1      1      D  13-14
         E2            Colchester       Swindon      1      2      A  13-14
         E2         Leyton Orient       Preston      0      1      A  13-14
         E2          Notts County        Wolves      0      1      A  13-14
         E2             Port Vale    Shrewsbury      3      1      H  13-14
         E2      Sheffield United    Gillingham      1      2      A  13-14
         E2             Stevenage     Rotherham      0      3      A  13-14
         E2              Tranmere  Bristol City      1      1      D  13-14
('16/12/11', 'D1')
                          home     away  hgoal  agoal result season
date     league                                                    
16/12/11 D1      Bayern Munich  FC Koln      3      0      H  11-12
('16/12/11', 'T1')
                     home         away  hgoal  agoal result season
date     league                                                   
16/12/11 T1      Orduspor  Galatasaray      0      2      A  11-12
('16/12/12', 'D1')
                          home      away  hgoal  agoal result season
date     league                                                     
16/12/12 D1         Hoffenheim  Dortmund      1      3      A  12-13
         D1      Werder Bremen  Nurnberg      1      1      D  12-13
('16/12/12', 'I1')
                       home       away  hgoal  agoal result season
date     league                                                   
16/12/12 I1         Catania  Sampdoria      3      1      H  12-13
         I1          Chievo       Roma      1      0      H  12-13
         I1      Fiorentina      Siena      4      1      H  12-13
         I1           Genoa     Torino      1      1      D  12-13
         I1        Juventus   Atalanta      3      0      H  12-13
         I1           Milan    Pescara      4      1      H  12-13
         I1          Napoli    Bologna      2      3      A  12-13
         I1           Parma   Cagliari      4      1      H  12-13
('16/12/12', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
16/12/12 SP1       Barcelona  Ath Madrid      4      1      H  12-13
         SP1     Real Madrid     Espanol      2      2      D  12-13
         SP1        Valencia   Vallecano      0      1      A  12-13
         SP1        Zaragoza     Levante      0      1      A  12-13
('16/12/12', 'T1')
                        home         away  hgoal  agoal result season
date     league                                                      
16/12/12 T1       Buyuksehyr  Trabzonspor      2      1      H  12-13
         T1      Galatasaray   Fenerbahce      2      1      H  12-13
         T1      Karabukspor    Sivasspor      1      0      H  12-13
         T1         Orduspor  Antalyaspor      1      1      D  12-13
('16/12/13', 'I1')
                  home  away  hgoal  agoal result season
date     league                                         
16/12/13 I1      Milan  Roma      2      2      D  13-14
('16/12/13', 'SP1')
                       home   away  hgoal  agoal result season
date     league                                               
16/12/13 SP1     Valladolid  Celta      3      0      H  13-14
('16/12/13', 'T1')
                        home       away  hgoal  agoal result season
date     league                                                    
16/12/13 T1      Trabzonspor  Bursaspor      2      2      D  13-14
('16/12/14', 'D1')
                          home       away  hgoal  agoal result season
date     league                                                      
16/12/14 D1      Bayern Munich   Freiburg      2      0      H  14-15
         D1            FC Koln      Mainz      0      0      D  14-15
         D1            Hamburg  Stuttgart      0      1      A  14-15
         D1           Hannover   Augsburg      2      0      H  14-15
('17/01/12', 'E2')
                     home      away  hgoal  agoal result season
date     league                                                
17/01/12 E2      Tranmere  Rochdale      0      0      D  11-12
('17/01/14', 'SP1')
                   home      away  hgoal  agoal result season
date     league                                              
17/01/14 SP1     Malaga  Valencia      0      0      D  13-14
('17/01/15', 'E2')
                               home              away  hgoal  agoal result  \
date     league                                                              
17/01/15 E2              Colchester           Walsall      0      2      A   
         E2               Doncaster          Barnsley      1      0      H   
         E2          Fleetwood Town            Oldham      0      2      A   
         E2              Gillingham          Coventry      3      1      H   
         E2      Milton Keynes Dons  Sheffield United      1      0      H   
         E2            Notts County             Crewe      2      1      H   
         E2               Port Vale         Peterboro      2      1      H   
         E2                Rochdale      Crawley Town      4      1      H   
         E2              Scunthorpe      Bristol City      0      2      A   
         E2                 Swindon      Chesterfield      3      1      H   
         E2                  Yeovil          Bradford      1      0      H   

                season  
date     league         
17/01/15 E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
('17/01/15', 'I1')
                    home   away  hgoal  agoal result season
date     league                                            
17/01/15 I1       Empoli  Inter      0      0      D  14-15
         I1      Palermo   Roma      1      1      D  14-15
('17/01/15', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
17/01/15 SP1        Espanol       Celta      1      0      H  14-15
         SP1       Sociedad   Vallecano      0      1      A  14-15
         SP1       Valencia     Almeria      3      2      H  14-15
         SP1     Villarreal  Ath Bilbao      2      0      H  14-15
('17/01/16', 'I1')
                    home        away  hgoal  agoal result season
date     league                                                 
17/01/16 I1      Bologna       Lazio      2      2      D  15-16
         I1        Carpi   Sampdoria      2      1      H  15-16
         I1       Chievo      Empoli      1      1      D  15-16
         I1        Genoa     Palermo      4      0      H  15-16
         I1        Milan  Fiorentina      2      0      H  15-16
         I1         Roma      Verona      1      1      D  15-16
         I1      Udinese    Juventus      0      4      A  15-16
('17/01/16', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
17/01/16 SP1       Barcelona  Ath Bilbao      6      0      H  15-16
         SP1          Getafe     Espanol      3      1      H  15-16
         SP1      Las Palmas  Ath Madrid      0      3      A  15-16
         SP1     Real Madrid    Sp Gijon      5      1      H  15-16
         SP1        Valencia   Vallecano      2      2      D  15-16
('17/01/16', 'T1')
                        home            away  hgoal  agoal result season
date     league                                                         
17/01/16 T1      Antalyaspor      Buyuksehyr      1      2      A  15-16
         T1        Bursaspor     Trabzonspor      4      2      H  15-16
         T1         Rizespor  Genclerbirligi      2      3      A  15-16
('17/02/12', 'D1')
                       home   away  hgoal  agoal result season
date     league                                               
17/02/12 D1      Hoffenheim  Mainz      1      1      D  11-12
('17/02/12', 'I1')
                       home     away  hgoal  agoal result season
date     league                                                 
17/02/12 I1      Fiorentina   Napoli      0      3      A  11-12
         I1           Inter  Bologna      0      3      A  11-12
('17/02/12', 'T1')
                               home         away  hgoal  agoal result season
date     league                                                             
17/02/12 T1      Mersin Idman Yurdu  Galatasaray      1      3      A  11-12
('17/02/13', 'D1')
                       home       away  hgoal  agoal result season
date     league                                                   
17/02/13 D1      Hoffenheim  Stuttgart      0      1      A  12-13
         D1        Nurnberg   Hannover      2      2      D  12-13
('17/02/13', 'I1')
                       home       away  hgoal  agoal result season
date     league                                                   
17/02/13 I1         Catania    Bologna      1      0      H  12-13
         I1      Fiorentina      Inter      4      1      H  12-13
         I1           Genoa    Udinese      1      0      H  12-13
         I1          Napoli  Sampdoria      0      0      D  12-13
         I1         Pescara   Cagliari      0      2      A  12-13
         I1          Torino   Atalanta      2      1      H  12-13
('17/02/13', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
17/02/13 SP1         Espanol       Betis      1      0      H  12-13
         SP1     Real Madrid   Vallecano      2      0      H  12-13
         SP1        Sociedad     Levante      1      1      D  12-13
         SP1        Valencia    Mallorca      2      0      H  12-13
         SP1      Valladolid  Ath Madrid      0      3      A  12-13
('17/02/13', 'T1')
                           home                away  hgoal  agoal result  \
date     league                                                            
17/02/13 T1           Bursaspor          Elazigspor      1      0      H   
         T1      Genclerbirligi  Mersin Idman Yurdu      3      1      H   
         T1            Orduspor          Buyuksehyr      2      2      D   
         T1         Trabzonspor          Fenerbahce      0      3      A   

                season  
date     league         
17/02/13 T1      12-13  
         T1      12-13  
         T1      12-13  
         T1      12-13  
('17/02/14', 'I1')
                   home    away  hgoal  agoal result season
date     league                                            
17/02/14 I1      Verona  Torino      1      3      A  13-14
('17/02/14', 'SP1')
                   home      away  hgoal  agoal result season
date     league                                              
17/02/14 SP1     Malaga  Sociedad      0      1      A  13-14
('17/02/14', 'T1')
                          home         away  hgoal  agoal result season
date     league                                                        
17/02/14 T1        Antalyaspor  Galatasaray      2      2      D  13-14
         T1      Eskisehirspor    Sivasspor      2      2      D  13-14
         T1          Konyaspor   Elazigspor      2      3      A  13-14
('17/02/15', 'E2')
                         home                away  hgoal  agoal result season
date     league                                                              
17/02/15 E2      Bristol City           Peterboro      2      0      H  14-15
         E2        Colchester  Milton Keynes Dons      0      1      A  14-15
         E2         Doncaster               Crewe      2      1      H  14-15
         E2      Notts County    Sheffield United      1      2      A  14-15
         E2        Scunthorpe        Chesterfield      2      0      H  14-15
('17/02/16', 'SP1')
                     home       away  hgoal  agoal result season
date     league                                                 
17/02/16 SP1     Sp Gijon  Barcelona      1      3      A  15-16
('17/02/16', 'T1')
                     home                away  hgoal  agoal result season
date     league                                                          
17/02/16 T1      Besiktas  Mersin Idman Yurdu      1      0      H  15-16
('17/03/12', 'D1')
                       home           away  hgoal  agoal result season
date     league                                                       
17/03/12 D1        Augsburg          Mainz      2      1      H  11-12
         D1        Dortmund  Werder Bremen      1      0      H  11-12
         D1         Hamburg       Freiburg      1      3      A  11-12
         D1          Hertha  Bayern Munich      0      6      A  11-12
         D1      Leverkusen     M'gladbach      1      2      A  11-12
         D1        Nurnberg      Wolfsburg      1      3      A  11-12
('17/03/12', 'E2')
                             home                away  hgoal  agoal result  \
date     league                                                              
17/03/12 E2           Bournemouth            Carlisle      1      1      D   
         E2                  Bury             Wycombe      1      4      A   
         E2          Chesterfield  Milton Keynes Dons      1      1      D   
         E2            Colchester        Huddersfield      1      1      D   
         E2                Exeter             Preston      1      2      A   
         E2            Hartlepool           Stevenage      0      0      D   
         E2         Leyton Orient           Brentford      2      0      H   
         E2          Notts County      Sheffield Weds      1      2      A   
         E2              Rochdale              Oldham      3      2      H   
         E2            Scunthorpe            Charlton      1      1      D   
         E2      Sheffield United            Tranmere      1      1      D   
         E2                Yeovil             Walsall      2      1      H   

                season  
date     league         
17/03/12 E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
('17/03/12', 'I1')
                       home      away  hgoal  agoal result season
date     league                                                  
17/03/12 I1      Fiorentina  Juventus      0      5      A  11-12
         I1           Parma     Milan      0      2      A  11-12
('17/03/12', 'SP1')
                      home       away  hgoal  agoal result season
date     league                                                  
17/03/12 SP1        Getafe   Sociedad      1      0      H  11-12
         SP1       Granada   Sp Gijon      2      1      H  11-12
         SP1       Sevilla  Barcelona      0      2      A  11-12
         SP1     Vallecano      Betis      3      0      H  11-12
         SP1      Zaragoza    Osasuna      1      1      D  11-12
('17/03/12', 'T1')
                        home           away  hgoal  agoal result season
date     league                                                        
17/03/12 T1      Antalyaspor  Eskisehirspor      0      0      D  11-12
         T1        Bursaspor     Ankaragucu      2      1      H  11-12
         T1       Fenerbahce    Galatasaray      2      2      D  11-12
         T1        Sivasspor       Orduspor      1      1      D  11-12
('17/03/13', 'D1')
                          home       away  hgoal  agoal result season
date     league                                                      
17/03/13 D1      Ein Frankfurt  Stuttgart      1      2      A  12-13
         D1         M'gladbach   Hannover      1      0      H  12-13
('17/03/13', 'I1')
                       home      away  hgoal  agoal result season
date     league                                                  
17/03/13 I1      Fiorentina     Genoa      3      2      H  12-13
         I1           Milan   Palermo      2      0      H  12-13
         I1          Napoli  Atalanta      3      2      H  12-13
         I1         Pescara    Chievo      0      2      A  12-13
         I1            Roma     Parma      2      0      H  12-13
         I1           Siena  Cagliari      0      0      D  12-13
         I1          Torino     Lazio      1      0      H  12-13
('17/03/13', 'SP1')
                      home        away  hgoal  agoal result season
date     league                                                   
17/03/13 SP1     Barcelona   Vallecano      3      1      H  12-13
         SP1       Granada     Levante      1      1      D  12-13
         SP1        Malaga     Espanol      0      2      A  12-13
         SP1       Osasuna  Ath Madrid      0      2      A  12-13
         SP1       Sevilla    Zaragoza      4      0      H  12-13
('17/03/13', 'T1')
                                 home           away  hgoal  agoal result  \
date     league                                                             
17/03/13 T1      Akhisar Belediyespor      Sivasspor      2      1      H   
         T1               Antalyaspor     Fenerbahce      1      2      A   
         T1               Kayserispor    Galatasaray      1      3      A   
         T1                  Orduspor  Gaziantepspor      2      3      A   

                season  
date     league         
17/03/13 T1      12-13  
         T1      12-13  
         T1      12-13  
         T1      12-13  
('17/03/14', 'E2')
                    home              away  hgoal  agoal result season
date     league                                                       
17/03/14 E2      Preston  Sheffield United      0      0      D  13-14
('17/03/14', 'I1')
                   home     away  hgoal  agoal result season
date     league                                             
17/03/14 I1        Roma  Udinese      3      2      H  13-14
         I1      Torino   Napoli      0      1      A  13-14
('17/03/14', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
17/03/14 SP1     Villarreal  Ath Bilbao      1      1      D  13-14
('17/03/14', 'T1')
                        home       away  hgoal  agoal result season
date     league                                                    
17/03/14 T1      Kayserispor  Bursaspor      2      0      H  13-14
('17/03/15', 'E2')
                           home                away  hgoal  agoal result  \
date     league                                                            
17/03/15 E2        Bristol City               Crewe      3      0      H   
         E2        Chesterfield          Gillingham      3      0      H   
         E2          Colchester              Yeovil      2      0      H   
         E2           Doncaster             Swindon      1      2      A   
         E2      Fleetwood Town            Coventry      0      2      A   
         E2       Leyton Orient            Barnsley      0      0      D   
         E2        Notts County            Rochdale      1      2      A   
         E2              Oldham  Milton Keynes Dons      1      3      A   
         E2           Port Vale        Crawley Town      2      3      A   
         E2             Preston           Peterboro      2      0      H   
         E2             Walsall    Sheffield United      1      1      D   

                season  
date     league         
17/03/15 E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
('17/04/12', 'E2')
                      home      away  hgoal  agoal result season
date     league                                                 
17/04/12 E2      Stevenage  Carlisle      1      0      H  11-12
('17/04/14', 'D1')
                          home      away  hgoal  agoal result season
date     league                                                     
17/04/14 D1      Ein Frankfurt  Hannover      2      3      A  13-14
('17/04/15', 'D1')
                          home        away  hgoal  agoal result season
date     league                                                       
17/04/15 D1      Ein Frankfurt  M'gladbach      0      0      D  14-15
('17/04/15', 'E2')
                      home     away  hgoal  agoal result season
date     league                                                
17/04/15 E2      Port Vale  Preston      2      2      D  14-15
('17/04/15', 'T1')
                          home       away  hgoal  agoal result season
date     league                                                      
17/04/15 T1      Gaziantepspor  Konyaspor      1      1      D  14-15
('17/04/16', 'D1')
                     home     away  hgoal  agoal result season
date     league                                               
17/04/16 D1      Dortmund  Hamburg      3      0      H  15-16
         D1         Mainz  FC Koln      2      3      A  15-16
('17/04/16', 'I1')
                       home       away  hgoal  agoal result season
date     league                                                   
17/04/16 I1        Atalanta       Roma      3      3      D  15-16
         I1      Fiorentina   Sassuolo      3      1      H  15-16
         I1        Juventus    Palermo      4      0      H  15-16
         I1           Lazio     Empoli      2      0      H  15-16
         I1       Sampdoria      Milan      0      1      A  15-16
         I1         Udinese     Chievo      0      0      D  15-16
         I1          Verona  Frosinone      1      2      A  15-16
('17/04/16', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
17/04/16 SP1     Ath Madrid     Granada      3      0      H  15-16
         SP1      Barcelona    Valencia      1      2      A  15-16
         SP1         Malaga  Ath Bilbao      0      1      A  15-16
         SP1        Sevilla   La Coruna      1      1      D  15-16
         SP1      Vallecano  Villarreal      2      1      H  15-16
('17/04/16', 'T1')
                       home                  away  hgoal  agoal result season
date     league                                                              
17/04/16 T1       Bursaspor  Akhisar Belediyespor      0      2      A  15-16
         T1      Buyuksehyr         Gaziantepspor      4      1      H  15-16
         T1      Fenerbahce    Mersin Idman Yurdu      4      1      H  15-16
         T1       Kasimpasa           Kayserispor      1      2      A  15-16
('17/05/13', 'T1')
                               home           away  hgoal  agoal result season
date     league                                                               
17/05/13 T1      Mersin Idman Yurdu  Gaziantepspor      1      2      A  12-13
('17/05/14', 'I1')
                    home       away  hgoal  agoal result season
date     league                                                
17/05/14 I1      Udinese  Sampdoria      3      3      D  13-14
('17/05/14', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
17/05/14 SP1       Barcelona  Ath Madrid      1      1      D  13-14
         SP1     Real Madrid     Espanol      3      1      H  13-14
         SP1        Valencia       Celta      2      1      H  13-14
('17/05/14', 'T1')
                        home            away  hgoal  agoal result season
date     league                                                         
17/05/14 T1         Besiktas  Genclerbirligi      1      1      D  13-14
         T1        Bursaspor   Gaziantepspor      3      1      H  13-14
         T1      Galatasaray     Erciyesspor      2      1      H  13-14
         T1         Rizespor      Elazigspor      3      1      H  13-14
('17/05/15', 'I1')
                     home     away  hgoal  agoal result season
date     league                                               
17/05/15 I1      Atalanta    Genoa      1      4      A  14-15
         I1      Cagliari  Palermo      0      1      A  14-15
         I1          Roma  Udinese      2      1      H  14-15
         I1      Sassuolo    Milan      3      2      H  14-15
         I1        Torino   Chievo      2      0      H  14-15
         I1        Verona   Empoli      2      1      H  14-15
('17/05/15', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
17/05/15 SP1     Ath Madrid    Barcelona      0      1      A  14-15
         SP1        Cordoba    Vallecano      1      2      A  14-15
         SP1          Elche   Ath Bilbao      2      3      A  14-15
         SP1        Espanol  Real Madrid      1      4      A  14-15
         SP1         Getafe        Eibar      1      1      D  14-15
         SP1      La Coruna      Levante      2      0      H  14-15
         SP1        Sevilla      Almeria      2      1      H  14-15
         SP1       Sociedad      Granada      0      3      A  14-15
         SP1       Valencia        Celta      1      1      D  14-15
         SP1     Villarreal       Malaga      2      1      H  14-15
('17/05/15', 'T1')
                               home           away  hgoal  agoal result season
date     league                                                               
17/05/15 T1               Bursaspor  Gaziantepspor      2      0      H  14-15
         T1             Erciyesspor     Buyuksehyr      0      1      A  14-15
         T1           Eskisehirspor    Trabzonspor      2      0      H  14-15
         T1      Mersin Idman Yurdu     Fenerbahce      0      1      A  14-15
('17/08/12', 'T1')
                          home                  away  hgoal  agoal result  \
date     league                                                             
17/08/12 T1      Eskisehirspor  Akhisar Belediyespor      0      1      A   

                season  
date     league         
17/08/12 T1      12-13  
('17/08/13', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
17/08/13 D1      Ein Frankfurt  Bayern Munich      0      1      A  13-14
         D1           Freiburg          Mainz      1      2      A  13-14
         D1            Hamburg     Hoffenheim      1      5      A  13-14
         D1         M'gladbach       Hannover      3      0      H  13-14
         D1          Stuttgart     Leverkusen      0      1      A  13-14
         D1      Werder Bremen       Augsburg      1      0      H  13-14
         D1          Wolfsburg     Schalke 04      4      0      H  13-14
('17/08/13', 'E2')
                             home                away  hgoal  agoal result  \
date     league                                                              
17/08/13 E2          Bristol City              Wolves      1      2      A   
         E2              Carlisle            Coventry      0      4      A   
         E2          Crawley Town           Rotherham      1      2      A   
         E2                 Crewe            Tranmere      2      1      H   
         E2            Gillingham           Brentford      1      1      D   
         E2             Peterboro              Oldham      2      1      H   
         E2             Port Vale            Bradford      2      1      H   
         E2               Preston  Milton Keynes Dons      2      2      D   
         E2      Sheffield United          Colchester      1      1      D   
         E2            Shrewsbury             Swindon      2      0      H   
         E2             Stevenage       Leyton Orient      0      1      A   
         E2               Walsall        Notts County      1      1      D   

                season  
date     league         
17/08/13 E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
('17/08/13', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
17/08/13 SP1       Sociedad      Getafe      2      0      H  13-14
         SP1       Valencia      Malaga      1      0      H  13-14
         SP1     Valladolid  Ath Bilbao      1      2      A  13-14
('17/08/13', 'T1')
                        home            away  hgoal  agoal result season
date     league                                                         
17/08/13 T1      Karabukspor       Kasimpasa      2      0      H  13-14
         T1        Konyaspor      Fenerbahce      3      2      H  13-14
         T1         Rizespor  Genclerbirligi      1      0      H  13-14
('17/08/15', 'T1')
                           home      away  hgoal  agoal result season
date     league                                                      
17/08/15 T1      Genclerbirligi  Rizespor      2      3      A  15-16
('17/09/11', 'D1')
                           home           away  hgoal  agoal result season
date     league                                                           
17/09/11 D1             Hamburg     M'gladbach      0      1      A  11-12
         D1              Hertha       Augsburg      2      2      D  11-12
         D1          Hoffenheim      Wolfsburg      3      1      H  11-12
         D1      Kaiserslautern          Mainz      3      1      H  11-12
         D1          Leverkusen        FC Koln      1      4      A  11-12
         D1            Nurnberg  Werder Bremen      1      1      D  11-12
('17/09/11', 'E2')
                               home            away  hgoal  agoal result  \
date     league                                                            
17/09/11 E2               Brentford         Preston      1      3      A   
         E2            Chesterfield        Carlisle      4      1      H   
         E2                  Exeter     Bournemouth      0      2      A   
         E2              Hartlepool            Bury      3      0      H   
         E2           Leyton Orient          Oldham      1      3      A   
         E2      Milton Keynes Dons    Huddersfield      1      1      D   
         E2                Rochdale        Charlton      2      3      A   
         E2        Sheffield United      Colchester      3      0      H   
         E2               Stevenage    Notts County      0      2      A   
         E2                Tranmere         Wycombe      2      0      H   
         E2                 Walsall      Scunthorpe      2      2      D   
         E2                  Yeovil  Sheffield Weds      2      3      A   

                season  
date     league         
17/09/11 E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
('17/09/11', 'I1')
                     home    away  hgoal  agoal result season
date     league                                              
17/09/11 I1      Cagliari  Novara      2      1      H  11-12
         I1         Inter    Roma      0      0      D  11-12
('17/09/11', 'SP1')
                      home        away  hgoal  agoal result season
date     league                                                   
17/09/11 SP1     Barcelona     Osasuna      8      0      H  11-12
         SP1       Granada  Villarreal      1      0      H  11-12
         SP1      Mallorca      Malaga      0      1      A  11-12
         SP1       Sevilla    Sociedad      1      0      H  11-12
         SP1      Sp Gijon    Valencia      0      1      A  11-12
('17/09/11', 'T1')
                           home         away  hgoal  agoal result season
date     league                                                         
17/09/11 T1      Genclerbirligi  Karabukspor      2      1      H  11-12
         T1            Orduspor   Manisaspor      1      0      H  11-12
         T1         Trabzonspor   Buyuksehyr      0      1      A  11-12
('17/09/12', 'SP1')
                       home   away  hgoal  agoal result season
date     league                                               
17/09/12 SP1     Valladolid  Betis      0      1      A  12-13
('17/09/12', 'T1')
                     home         away  hgoal  agoal result season
date     league                                                   
17/09/12 T1      Besiktas   Elazigspor      3      0      H  12-13
         T1      Orduspor  Kayserispor      3      2      H  12-13
('17/09/13', 'E2')
                          home          away  hgoal  agoal result season
date     league                                                         
17/09/13 E2       Bristol City    Shrewsbury      1      1      D  13-14
         E2      Leyton Orient  Notts County      5      1      H  13-14
         E2             Wolves       Walsall      0      1      A  13-14
('17/09/14', 'E2')
                           home      away  hgoal  agoal result season
date     league                                                      
17/09/14 E2      Fleetwood Town  Barnsley      0      0      D  14-15
('17/10/11', 'SP1')
                       home     away  hgoal  agoal result season
date     league                                                 
17/10/11 SP1     Ath Bilbao  Osasuna      3      1      H  11-12
('17/10/11', 'T1')
                               home        away  hgoal  agoal result season
date     league                                                            
17/10/11 T1      Mersin Idman Yurdu  Fenerbahce      1      2      A  11-12
('17/10/14', 'SP1')
                    home       away  hgoal  agoal result season
date     league                                                
17/10/14 SP1     Granada  Vallecano      0      1      A  14-15
('17/10/15', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
17/10/15 D1           Augsburg      Darmstadt      0      2      A  15-16
         D1      Ein Frankfurt     M'gladbach      1      5      A  15-16
         D1            Hamburg     Leverkusen      0      0      D  15-16
         D1         Schalke 04         Hertha      2      1      H  15-16
         D1      Werder Bremen  Bayern Munich      0      1      A  15-16
         D1          Wolfsburg     Hoffenheim      4      2      H  15-16
('17/10/15', 'E2')
                           home              away  hgoal  agoal result season
date     league                                                              
17/10/15 E2                Bury          Rochdale      0      0      D  15-16
         E2            Coventry         Blackpool      0      0      D  15-16
         E2               Crewe        Gillingham      0      1      A  15-16
         E2           Doncaster          Bradford      0      1      A  15-16
         E2      Fleetwood Town            Burton      4      0      H  15-16
         E2            Millwall           Swindon      2      0      H  15-16
         E2              Oldham  Sheffield United      1      1      D  15-16
         E2           Port Vale         Peterboro      1      1      D  15-16
         E2          Scunthorpe        Shrewsbury      2      1      H  15-16
         E2            Southend          Barnsley      2      1      H  15-16
         E2             Walsall      Chesterfield      1      2      A  15-16
         E2               Wigan        Colchester      5      0      H  15-16
('17/10/15', 'I1')
                   home    away  hgoal  agoal result season
date     league                                            
17/10/15 I1        Roma  Empoli      3      1      H  15-16
         I1      Torino   Milan      1      1      D  15-16
('17/10/15', 'SP1')
                        home       away  hgoal  agoal result season
date     league                                                    
17/10/15 SP1       Barcelona  Vallecano      5      2      H  15-16
         SP1           Betis    Espanol      1      3      A  15-16
         SP1           Eibar    Sevilla      1      1      D  15-16
         SP1     Real Madrid    Levante      3      0      H  15-16
         SP1        Valencia     Malaga      3      0      H  15-16
('17/10/15', 'T1')
                        home            away  hgoal  agoal result season
date     league                                                         
17/10/15 T1        Bursaspor     Antalyaspor      0      2      A  15-16
         T1      Galatasaray  Genclerbirligi      4      1      H  15-16
         T1        Konyaspor   Gaziantepspor      2      1      H  15-16
('17/11/12', 'D1')
                          home            away  hgoal  agoal result season
date     league                                                           
17/11/12 D1           Dortmund  Greuther Furth      3      1      H  12-13
         D1      Ein Frankfurt        Augsburg      4      2      H  12-13
         D1            Hamburg           Mainz      1      0      H  12-13
         D1           Hannover        Freiburg      1      2      A  12-13
         D1         Leverkusen      Schalke 04      2      0      H  12-13
         D1         M'gladbach       Stuttgart      1      2      A  12-13
         D1           Nurnberg   Bayern Munich      1      1      D  12-13
('17/11/12', 'E2')
                             home           away  hgoal  agoal result season
date     league                                                             
17/11/12 E2           Bournemouth         Oldham      4      1      H  12-13
         E2              Carlisle  Leyton Orient      1      4      A  12-13
         E2            Colchester           Bury      2      0      H  12-13
         E2          Crawley Town        Walsall      2      2      D  12-13
         E2            Hartlepool       Coventry      0      5      A  12-13
         E2            Portsmouth      Doncaster      0      1      A  12-13
         E2               Preston      Brentford      1      1      D  12-13
         E2            Scunthorpe   Notts County      2      2      D  12-13
         E2      Sheffield United      Stevenage      4      1      H  12-13
         E2            Shrewsbury          Crewe      1      0      H  12-13
         E2               Swindon         Yeovil      4      1      H  12-13
('17/11/12', 'I1')
                     home   away  hgoal  agoal result season
date     league                                             
17/11/12 I1      Juventus  Lazio      0      0      D  12-13
         I1        Napoli  Milan      2      2      D  12-13
('17/11/12', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
17/11/12 SP1       Barcelona    Zaragoza      3      1      H  12-13
         SP1         Osasuna      Malaga      0      0      D  12-13
         SP1     Real Madrid  Ath Bilbao      5      1      H  12-13
         SP1        Valencia     Espanol      2      1      H  12-13
('17/11/12', 'T1')
                           home        away  hgoal  agoal result season
date     league                                                        
17/11/12 T1          Buyuksehyr  Elazigspor      1      1      D  12-13
         T1       Eskisehirspor  Fenerbahce      1      1      D  12-13
         T1      Genclerbirligi   Sivasspor      1      1      D  12-13
('17/11/13', 'E2')
                     home      away  hgoal  agoal result season
date     league                                                
17/11/13 E2      Bradford  Coventry      3      3      D  13-14
('17/12/11', 'D1')
                       home           away  hgoal  agoal result season
date     league                                                       
17/12/11 D1        Freiburg       Dortmund      1      4      A  11-12
         D1         Hamburg       Augsburg      1      1      D  11-12
         D1      Hoffenheim         Hertha      1      1      D  11-12
         D1      Leverkusen       Nurnberg      0      3      A  11-12
         D1      Schalke 04  Werder Bremen      5      0      H  11-12
         D1       Wolfsburg      Stuttgart      1      0      H  11-12
('17/12/11', 'E2')
                               home              away  hgoal  agoal result  \
date     league                                                              
17/12/11 E2             Bournemouth  Sheffield United      0      2      A   
         E2                    Bury         Brentford      1      1      D   
         E2                Carlisle           Wycombe      2      2      D   
         E2                Charlton            Oldham      1      1      D   
         E2            Chesterfield           Walsall      1      1      D   
         E2                  Exeter        Scunthorpe      0      0      D   
         E2              Hartlepool        Colchester      0      1      A   
         E2      Milton Keynes Dons           Preston      0      1      A   
         E2            Notts County     Leyton Orient      1      2      A   
         E2                Rochdale            Yeovil      0      0      D   
         E2          Sheffield Weds      Huddersfield      4      4      D   
         E2               Stevenage          Tranmere      2      1      H   

                season  
date     league         
17/12/11 E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
('17/12/11', 'I1')
                       home      away  hgoal  agoal result season
date     league                                                  
17/12/11 I1          Chievo  Cagliari      2      0      H  11-12
         I1      Fiorentina  Atalanta      2      2      D  11-12
         I1           Milan     Siena      2      0      H  11-12
('17/12/11', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
17/12/11 SP1     Ath Bilbao     Zaragoza      2      1      H  11-12
         SP1       Mallorca       Getafe      1      2      A  11-12
         SP1        Sevilla  Real Madrid      2      6      A  11-12
         SP1       Sp Gijon      Espanol      1      2      A  11-12
('17/12/11', 'T1')
                          home                away  hgoal  agoal result season
date     league                                                               
17/12/11 T1         Ankaragucu       Gaziantepspor      0      0      D  11-12
         T1          Bursaspor         Antalyaspor      0      0      D  11-12
         T1      Eskisehirspor         Kayserispor      1      0      H  11-12
         T1        Karabukspor  Mersin Idman Yurdu      3      5      A  11-12
('17/12/12', 'SP1')
                      home        away  hgoal  agoal result season
date     league                                                   
17/12/12 SP1         Celta       Betis      0      1      A  12-13
         SP1     La Coruna  Valladolid      0      0      D  12-13
('17/12/12', 'T1')
                        home       away  hgoal  agoal result season
date     league                                                    
17/12/12 T1      Kayserispor  Kasimpasa      1      0      H  12-13
('17/12/14', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
17/12/14 D1           Dortmund      Wolfsburg      2      2      D  14-15
         D1      Ein Frankfurt         Hertha      4      4      D  14-15
         D1         Hoffenheim     Leverkusen      0      1      A  14-15
         D1         M'gladbach  Werder Bremen      4      1      H  14-15
         D1          Paderborn     Schalke 04      1      2      A  14-15
('18/01/13', 'D1')
                       home      away  hgoal  agoal result season
date     league                                                  
18/01/13 D1      Schalke 04  Hannover      5      4      H  12-13
('18/01/13', 'SP1')
                    home      away  hgoal  agoal result season
date     league                                               
18/01/13 SP1     Espanol  Mallorca      3      2      H  12-13
('18/01/13', 'T1')
                      home         away  hgoal  agoal result season
date     league                                                    
18/01/13 T1      Kasimpasa  Galatasaray      2      1      H  12-13
('18/01/14', 'E2')
                         home                away  hgoal  agoal result season
date     league                                                              
18/01/14 E2      Bristol City  Milton Keynes Dons      2      2      D  13-14
         E2          Carlisle          Colchester      2      4      A  13-14
         E2             Crewe       Leyton Orient      1      2      A  13-14
         E2        Gillingham             Swindon      2      0      H  13-14
         E2         Peterboro            Tranmere      3      0      H  13-14
         E2           Walsall           Brentford      1      1      D  13-14
('18/01/14', 'I1')
                     home       away  hgoal  agoal result season
date     league                                                 
18/01/14 I1      Juventus  Sampdoria      4      2      H  13-14
         I1          Roma    Livorno      3      0      H  13-14
('18/01/14', 'SP1')
                    home         away  hgoal  agoal result season
date     league                                                  
18/01/14 SP1       Betis  Real Madrid      0      5      A  13-14
         SP1       Elche    Vallecano      2      0      H  13-14
         SP1     Espanol        Celta      1      0      H  13-14
         SP1     Granada      Osasuna      0      0      D  13-14
('18/01/15', 'I1')
                     home        away  hgoal  agoal result season
date     league                                                  
18/01/15 I1        Cesena      Torino      2      3      A  14-15
         I1        Chievo  Fiorentina      1      2      A  14-15
         I1         Genoa    Sassuolo      3      3      D  14-15
         I1      Juventus      Verona      4      0      H  14-15
         I1         Lazio      Napoli      0      1      A  14-15
         I1         Milan    Atalanta      0      1      A  14-15
         I1         Parma   Sampdoria      0      2      A  14-15
         I1       Udinese    Cagliari      2      2      D  14-15
('18/01/15', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
18/01/15 SP1     Ath Madrid      Granada      2      0      H  14-15
         SP1          Elche      Levante      1      0      H  14-15
         SP1         Getafe  Real Madrid      0      3      A  14-15
         SP1      La Coruna    Barcelona      0      4      A  14-15
         SP1        Sevilla       Malaga      2      0      H  14-15
('18/01/16', 'SP1')
                  home     away  hgoal  agoal result season
date     league                                            
18/01/16 SP1     Eibar  Granada      5      1      H  15-16
('18/01/16', 'T1')
                          home        away  hgoal  agoal result season
date     league                                                       
18/01/16 T1      Eskisehirspor  Fenerbahce      0      3      A  15-16
('18/02/12', 'D1')
                           home           away  hgoal  agoal result season
date     league                                                           
18/02/12 D1            Freiburg  Bayern Munich      0      0      D  11-12
         D1             Hamburg  Werder Bremen      1      3      A  11-12
         D1              Hertha       Dortmund      0      1      A  11-12
         D1      Kaiserslautern     M'gladbach      1      2      A  11-12
         D1          Leverkusen       Augsburg      4      1      H  11-12
         D1            Nurnberg        FC Koln      2      1      H  11-12
('18/02/12', 'E2')
                               home            away  hgoal  agoal result  \
date     league                                                            
18/02/12 E2            Chesterfield  Sheffield Weds      1      0      H   
         E2                  Exeter            Bury      3      2      H   
         E2              Hartlepool    Notts County      3      0      H   
         E2           Leyton Orient      Scunthorpe      1      3      A   
         E2      Milton Keynes Dons          Oldham      5      0      H   
         E2                Rochdale     Bournemouth      1      0      H   
         E2        Sheffield United         Preston      2      1      H   
         E2                Tranmere        Charlton      1      1      D   
         E2                 Walsall         Wycombe      2      0      H   
         E2                  Yeovil      Colchester      3      2      H   

                season  
date     league         
18/02/12 E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
('18/02/12', 'I1')
                     home     away  hgoal  agoal result season
date     league                                               
18/02/12 I1      Juventus  Catania      3      1      H  11-12
('18/02/12', 'SP1')
                        home       away  hgoal  agoal result season
date     league                                                    
18/02/12 SP1          Getafe    Espanol      1      1      D  11-12
         SP1     Real Madrid  Santander      4      0      H  11-12
         SP1         Sevilla    Osasuna      2      0      H  11-12
('18/02/12', 'T1')
                        home        away  hgoal  agoal result season
date     league                                                     
18/02/12 T1       Ankaragucu  Samsunspor      0      3      A  11-12
         T1      Antalyaspor  Manisaspor      2      1      H  11-12
         T1       Fenerbahce   Sivasspor      4      2      H  11-12
('18/02/13', 'I1')
                  home   away  hgoal  agoal result season
date     league                                          
18/02/13 I1      Siena  Lazio      3      0      H  12-13
('18/02/13', 'T1')
                      home       away  hgoal  agoal result season
date     league                                                  
18/02/13 T1      Kasimpasa  Sivasspor      1      0      H  12-13
('18/02/14', 'E2')
                               home       away  hgoal  agoal result season
date     league                                                           
18/02/14 E2                Bradford  Port Vale      1      0      H  13-14
         E2                Coventry   Carlisle      1      2      A  13-14
         E2           Leyton Orient  Stevenage      2      0      H  13-14
         E2      Milton Keynes Dons    Preston      0      0      D  13-14
('18/02/15', 'E2')
                          home      away  hgoal  agoal result season
date     league                                                     
18/02/15 E2      Leyton Orient  Bradford      0      2      A  14-15
('18/03/12', 'D1')
                           home        away  hgoal  agoal result season
date     league                                                        
18/03/12 D1            Hannover     FC Koln      4      1      H  11-12
         D1      Kaiserslautern  Schalke 04      1      4      A  11-12
('18/03/12', 'I1')
                     home      away  hgoal  agoal result season
date     league                                                
18/03/12 I1       Bologna    Chievo      2      2      D  11-12
         I1      Cagliari    Cesena      3      0      H  11-12
         I1       Catania     Lazio      1      0      H  11-12
         I1         Inter  Atalanta      0      0      D  11-12
         I1         Lecce   Palermo      1      1      D  11-12
         I1         Siena    Novara      0      2      A  11-12
         I1       Udinese    Napoli      2      2      D  11-12
('18/03/12', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
18/03/12 SP1      Ath Bilbao    Valencia      0      3      A  11-12
         SP1         Levante  Villarreal      1      0      H  11-12
         SP1        Mallorca  Ath Madrid      2      1      H  11-12
         SP1     Real Madrid      Malaga      1      1      D  11-12
('18/03/12', 'T1')
                               home         away  hgoal  agoal result season
date     league                                                             
18/03/12 T1           Gaziantepspor  Karabukspor      3      0      H  11-12
         T1             Kayserispor   Samsunspor      2      0      H  11-12
         T1      Mersin Idman Yurdu   Buyuksehyr      2      0      H  11-12
('18/03/14', 'E2')
                         home        away  hgoal  agoal result season
date     league                                                      
18/03/14 E2        Colchester  Shrewsbury      1      0      H  13-14
         E2      Crawley Town      Wolves      2      1      H  13-14
('18/03/16', 'D1')
                       home        away  hgoal  agoal result season
date     league                                                    
18/03/16 D1      Schalke 04  M'gladbach      2      1      H  15-16
('18/03/16', 'SP1')
                   home   away  hgoal  agoal result season
date     league                                           
18/03/16 SP1     Getafe  Eibar      1      1      D  15-16
('18/03/16', 'T1')
                                 home           away  hgoal  agoal result  \
date     league                                                             
18/03/16 T1      Akhisar Belediyespor       Rizespor      1      1      D   
         T1               Kayserispor  Eskisehirspor      0      0      D   

                season  
date     league         
18/03/16 T1      15-16  
         T1      15-16  
('18/04/14', 'E2')
                             home                away  hgoal  agoal result  \
date     league                                                              
18/04/14 E2              Bradford           Peterboro      1      0      H   
         E2             Brentford             Preston      1      0      H   
         E2          Bristol City        Notts County      2      1      H   
         E2              Carlisle             Walsall      1      1      D   
         E2            Colchester              Oldham      0      1      A   
         E2              Coventry             Swindon      1      2      A   
         E2          Crawley Town       Leyton Orient      2      1      H   
         E2            Gillingham            Tranmere      2      0      H   
         E2             Port Vale  Milton Keynes Dons      1      0      H   
         E2      Sheffield United           Stevenage      1      0      H   
         E2            Shrewsbury               Crewe      1      3      A   
         E2                Wolves           Rotherham      6      4      H   

                season  
date     league         
18/04/14 E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
('18/04/14', 'SP1')
                       home   away  hgoal  agoal result season
date     league                                               
18/04/14 SP1     Ath Madrid  Elche      2      0      H  13-14
('18/04/14', 'T1')
                        home         away  hgoal  agoal result season
date     league                                                      
18/04/14 T1      Erciyesspor  Trabzonspor      0      5      A  13-14
('18/04/15', 'D1')
                       home           away  hgoal  agoal result season
date     league                                                       
18/04/15 D1        Augsburg      Stuttgart      2      1      H  14-15
         D1        Dortmund      Paderborn      3      0      H  14-15
         D1        Freiburg          Mainz      2      3      A  14-15
         D1          Hertha        FC Koln      0      0      D  14-15
         D1      Hoffenheim  Bayern Munich      0      2      A  14-15
         D1      Leverkusen       Hannover      4      0      H  14-15
('18/04/15', 'E2')
                               home            away  hgoal  agoal result  \
date     league                                                            
18/04/15 E2                Barnsley       Peterboro      1      1      D   
         E2            Bristol City        Coventry      0      0      D   
         E2              Colchester      Scunthorpe      2      2      D   
         E2            Crawley Town    Notts County      2      0      H   
         E2                   Crewe         Walsall      1      1      D   
         E2               Doncaster  Fleetwood Town      0      0      D   
         E2              Gillingham        Rochdale      1      0      H   
         E2      Milton Keynes Dons   Leyton Orient      6      1      H   
         E2                  Oldham    Chesterfield      0      0      D   
         E2        Sheffield United        Bradford      1      1      D   
         E2                 Swindon          Yeovil      0      1      A   

                season  
date     league         
18/04/15 E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
('18/04/15', 'I1')
                      home    away  hgoal  agoal result season
date     league                                               
18/04/15 I1       Juventus   Lazio      2      0      H  14-15
         I1      Sampdoria  Cesena      0      0      D  14-15
('18/04/15', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
18/04/15 SP1      Ath Bilbao      Getafe      4      0      H  14-15
         SP1       Barcelona    Valencia      2      0      H  14-15
         SP1       La Coruna  Ath Madrid      1      2      A  14-15
         SP1     Real Madrid      Malaga      3      1      H  14-15
('18/04/15', 'T1')
                        home            away  hgoal  agoal result season
date     league                                                         
18/04/15 T1      Karabukspor  Genclerbirligi      2      1      H  14-15
         T1        Kasimpasa        Besiktas      1      5      A  14-15
('18/04/16', 'T1')
                           home         away  hgoal  agoal result season
date     league                                                         
18/04/16 T1      Genclerbirligi  Trabzonspor      3      1      H  15-16
('18/05/13', 'D1')
                          home                away  hgoal  agoal result season
date     league                                                               
18/05/13 D1           Augsburg      Greuther Furth      3      1      H  12-13
         D1           Dortmund          Hoffenheim      1      2      A  12-13
         D1      Ein Frankfurt           Wolfsburg      2      2      D  12-13
         D1           Freiburg          Schalke 04      1      2      A  12-13
         D1            Hamburg          Leverkusen      0      1      A  12-13
         D1           Hannover  Fortuna Dusseldorf      3      0      H  12-13
         D1         M'gladbach       Bayern Munich      3      4      A  12-13
         D1           Nurnberg       Werder Bremen      3      2      H  12-13
         D1          Stuttgart               Mainz      2      2      D  12-13
('18/05/13', 'I1')
                      home      away  hgoal  agoal result season
date     league                                                 
18/05/13 I1      Sampdoria  Juventus      3      2      H  12-13
('18/05/13', 'SP1')
                    home      away  hgoal  agoal result season
date     league                                               
18/05/13 SP1      Getafe  Valencia      0      1      A  12-13
         SP1     Granada   Osasuna      3      0      H  12-13
         SP1     Sevilla  Sociedad      1      2      A  12-13
('18/05/13', 'T1')
                        home                  away  hgoal  agoal result season
date     league                                                               
18/05/13 T1       Buyuksehyr             Kasimpasa      1      2      A  12-13
         T1      Galatasaray           Trabzonspor      2      0      H  12-13
         T1      Karabukspor            Fenerbahce      3      2      H  12-13
         T1         Orduspor  Akhisar Belediyespor      0      2      A  12-13
('18/05/14', 'I1')
                       home      away  hgoal  agoal result season
date     league                                                  
18/05/14 I1         Catania  Atalanta      2      1      H  13-14
         I1          Chievo     Inter      2      1      H  13-14
         I1      Fiorentina    Torino      2      2      D  13-14
         I1           Genoa      Roma      1      0      H  13-14
         I1        Juventus  Cagliari      3      0      H  13-14
         I1           Lazio   Bologna      1      0      H  13-14
         I1           Milan  Sassuolo      2      1      H  13-14
         I1          Napoli    Verona      5      1      H  13-14
         I1           Parma   Livorno      2      0      H  13-14
('18/05/14', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
18/05/14 SP1        Almeria  Ath Bilbao      0      0      D  13-14
         SP1        Osasuna       Betis      2      1      H  13-14
         SP1        Sevilla       Elche      3      1      H  13-14
         SP1       Sociedad  Villarreal      1      2      A  13-14
         SP1     Valladolid     Granada      0      1      A  13-14
         SP1      Vallecano      Getafe      1      2      A  13-14
('18/05/14', 'T1')
                                 home         away  hgoal  agoal result season
date     league                                                               
18/05/14 T1      Akhisar Belediyespor    Kasimpasa      1      3      A  13-14
         T1               Antalyaspor  Trabzonspor      0      2      A  13-14
         T1               Karabukspor    Sivasspor      1      0      H  13-14
('18/05/15', 'I1')
                       home    away  hgoal  agoal result season
date     league                                                
18/05/15 I1      Fiorentina   Parma      3      0      H  14-15
         I1          Napoli  Cesena      3      2      H  14-15
('18/05/15', 'T1')
                     home                  away  hgoal  agoal result season
date     league                                                            
18/05/15 T1      Besiktas             Konyaspor      0      1      A  14-15
         T1      Rizespor  Akhisar Belediyespor      3      1      H  14-15
('18/05/16', 'T1')
                               home       away  hgoal  agoal result season
date     league                                                           
18/05/16 T1              Buyuksehyr   Rizespor      1      0      H  15-16
         T1               Konyaspor   Besiktas      2      1      H  15-16
         T1      Mersin Idman Yurdu  Bursaspor      2      5      A  15-16
('18/08/12', 'E2')
                               home           away  hgoal  agoal result season
date     league                                                               
18/08/12 E2                    Bury      Brentford      0      0      D  12-13
         E2            Crawley Town     Scunthorpe      3      0      H  12-13
         E2                   Crewe   Notts County      1      2      A  12-13
         E2              Hartlepool        Swindon      0      0      D  12-13
         E2      Milton Keynes Dons         Oldham      2      0      H  12-13
         E2              Portsmouth    Bournemouth      1      1      D  12-13
         E2                 Preston     Colchester      0      0      D  12-13
         E2        Sheffield United     Shrewsbury      1      0      H  12-13
         E2               Stevenage       Carlisle      1      1      D  12-13
         E2                Tranmere  Leyton Orient      3      1      H  12-13
         E2                 Walsall      Doncaster      0      3      A  12-13
         E2                  Yeovil       Coventry      1      1      D  12-13
('18/08/12', 'SP1')
                     home     away  hgoal  agoal result season
date     league                                               
18/08/12 SP1        Celta   Malaga      0      1      A  12-13
         SP1     Mallorca  Espanol      2      1      H  12-13
         SP1      Sevilla   Getafe      2      1      H  12-13
('18/08/12', 'T1')
                          home         away  hgoal  agoal result season
date     league                                                        
18/08/12 T1         Elazigspor   Fenerbahce      1      1      D  12-13
         T1      Gaziantepspor    Sivasspor      0      1      A  12-13
         T1        Karabukspor  Trabzonspor      1      1      D  12-13
('18/08/13', 'D1')
                     home          away  hgoal  agoal result season
date     league                                                    
18/08/13 D1      Dortmund  Braunschweig      2      1      H  13-14
         D1      Nurnberg        Hertha      2      2      D  13-14
('18/08/13', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
18/08/13 SP1       Barcelona     Levante      7      0      H  13-14
         SP1         Osasuna     Granada      1      2      A  13-14
         SP1     Real Madrid       Betis      2      1      H  13-14
         SP1         Sevilla  Ath Madrid      1      3      A  13-14
('18/08/13', 'T1')
                                 home         away  hgoal  agoal result season
date     league                                                               
18/08/13 T1      Akhisar Belediyespor   Elazigspor      3      1      H  13-14
         T1                  Besiktas  Trabzonspor      2      0      H  13-14
         T1             Eskisehirspor    Bursaspor      2      0      H  13-14
('18/08/15', 'E2')
                       home              away  hgoal  agoal result season
date     league                                                          
18/08/15 E2       Blackpool            Burton      1      2      A  15-16
         E2        Bradford        Gillingham      1      2      A  15-16
         E2            Bury    Fleetwood Town      3      4      A  15-16
         E2      Colchester            Oldham      0      0      D  15-16
         E2        Coventry             Crewe      3      2      H  15-16
         E2        Millwall          Barnsley      2      3      A  15-16
         E2       Peterboro  Sheffield United      1      3      A  15-16
         E2        Rochdale           Walsall      1      2      A  15-16
         E2      Shrewsbury      Chesterfield      1      2      A  15-16
         E2         Swindon         Port Vale      2      2      D  15-16
('18/09/11', 'D1')
                       home           away  hgoal  agoal result season
date     league                                                       
18/09/11 D1        Hannover       Dortmund      2      1      H  11-12
         D1      Schalke 04  Bayern Munich      0      2      A  11-12
('18/09/11', 'I1')
                     home        away  hgoal  agoal result season
date     league                                                  
18/09/11 I1      Atalanta     Palermo      1      0      H  11-12
         I1       Bologna       Lecce      0      2      A  11-12
         I1       Catania      Cesena      1      0      H  11-12
         I1         Lazio       Genoa      1      2      A  11-12
         I1        Napoli       Milan      3      1      H  11-12
         I1         Parma      Chievo      2      1      H  11-12
         I1         Siena    Juventus      0      1      A  11-12
         I1       Udinese  Fiorentina      2      0      H  11-12
('18/09/11', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
18/09/11 SP1     Ath Bilbao        Betis      2      3      A  11-12
         SP1     Ath Madrid    Santander      4      0      H  11-12
         SP1         Getafe    Vallecano      0      1      A  11-12
         SP1        Levante  Real Madrid      1      0      H  11-12
         SP1       Zaragoza      Espanol      2      1      H  11-12
('18/09/11', 'T1')
                               home           away  hgoal  agoal result season
date     league                                                               
18/09/11 T1             Galatasaray     Samsunspor      3      1      H  11-12
         T1      Mersin Idman Yurdu      Bursaspor      1      3      A  11-12
         T1               Sivasspor  Eskisehirspor      0      4      A  11-12
('18/09/12', 'E2')
                               home          away  hgoal  agoal result season
date     league                                                              
18/09/12 E2             Bournemouth     Brentford      2      2      D  12-13
         E2                Carlisle         Crewe      0      0      D  12-13
         E2              Colchester  Crawley Town      1      1      D  12-13
         E2           Leyton Orient        Yeovil      4      1      H  12-13
         E2      Milton Keynes Dons  Notts County      1      1      D  12-13
         E2                  Oldham    Scunthorpe      1      1      D  12-13
         E2              Portsmouth       Swindon      1      2      A  12-13
         E2                 Preston    Hartlepool      5      0      H  12-13
         E2        Sheffield United     Doncaster      0      0      D  12-13
         E2              Shrewsbury      Coventry      4      1      H  12-13
         E2               Stevenage       Walsall      3      1      H  12-13
         E2                Tranmere          Bury      3      0      H  12-13
('18/09/15', 'D1')
                  home        away  hgoal  agoal result season
date     league                                               
18/09/15 D1      Mainz  Hoffenheim      3      1      H  15-16
('18/09/15', 'SP1')
                   home    away  hgoal  agoal result season
date     league                                            
18/09/15 SP1     Getafe  Malaga      1      0      H  15-16
('18/09/15', 'T1')
                               home                  away  hgoal  agoal  \
date     league                                                           
18/09/15 T1              Buyuksehyr  Akhisar Belediyespor      2      0   
         T1      Mersin Idman Yurdu           Osmanlispor      0      4   

                result season  
date     league                
18/09/15 T1          H  15-16  
         T1          A  15-16  
('18/10/13', 'D1')
                       home        away  hgoal  agoal result season
date     league                                                    
18/10/13 D1      Hoffenheim  Leverkusen      1      2      A  13-14
('18/10/13', 'E2')
                    home          away  hgoal  agoal result season
date     league                                                   
18/10/13 E2      Swindon  Notts County      2      0      H  13-14
('18/10/13', 'I1')
                 home    away  hgoal  agoal result season
date     league                                          
18/10/13 I1      Roma  Napoli      2      0      H  13-14
('18/10/14', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
18/10/14 D1      Bayern Munich  Werder Bremen      6      0      H  14-15
         D1            FC Koln       Dortmund      2      1      H  14-15
         D1           Freiburg      Wolfsburg      1      2      A  14-15
         D1           Hannover     M'gladbach      0      3      A  14-15
         D1              Mainz       Augsburg      2      1      H  14-15
         D1         Schalke 04         Hertha      2      0      H  14-15
         D1          Stuttgart     Leverkusen      3      3      D  14-15
('18/10/14', 'E2')
                           home                away  hgoal  agoal result  \
date     league                                                            
18/10/14 E2            Bradford    Sheffield United      0      2      A   
         E2        Chesterfield              Oldham      1      1      D   
         E2            Coventry        Bristol City      1      3      A   
         E2      Fleetwood Town           Doncaster      3      1      H   
         E2       Leyton Orient  Milton Keynes Dons      0      0      D   
         E2        Notts County        Crawley Town      5      3      H   
         E2           Peterboro            Barnsley      2      1      H   
         E2             Preston           Port Vale      2      0      H   
         E2            Rochdale          Gillingham      1      1      D   
         E2          Scunthorpe          Colchester      1      1      D   
         E2             Walsall               Crewe      0      1      A   
         E2              Yeovil             Swindon      1      1      D   

                season  
date     league         
18/10/14 E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
('18/10/14', 'I1')
                     home      away  hgoal  agoal result season
date     league                                                
18/10/14 I1          Roma    Chievo      3      0      H  14-15
         I1      Sassuolo  Juventus      1      1      D  14-15
('18/10/14', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
18/10/14 SP1     Ath Bilbao        Celta      1      1      D  14-15
         SP1      Barcelona        Eibar      3      0      H  14-15
         SP1        Cordoba       Malaga      1      2      A  14-15
         SP1        Levante  Real Madrid      0      5      A  14-15
('18/10/14', 'T1')
                          home         away  hgoal  agoal result season
date     league                                                        
18/10/14 T1        Galatasaray   Fenerbahce      2      1      H  14-15
         T1      Gaziantepspor  Karabukspor      1      0      H  14-15
         T1          Konyaspor   Buyuksehyr      0      0      D  14-15
('18/10/15', 'D1')
                      home        away  hgoal  agoal result season
date     league                                                   
18/10/15 D1        FC Koln    Hannover      0      1      A  15-16
         D1      Stuttgart  Ingolstadt      1      0      H  15-16
('18/10/15', 'I1')
                      home        away  hgoal  agoal result season
date     league                                                   
18/10/15 I1       Atalanta       Carpi      3      0      H  15-16
         I1        Bologna     Palermo      0      1      A  15-16
         I1      Frosinone   Sampdoria      2      0      H  15-16
         I1          Genoa      Chievo      3      2      H  15-16
         I1          Inter    Juventus      0      0      D  15-16
         I1         Napoli  Fiorentina      2      1      H  15-16
         I1       Sassuolo       Lazio      2      1      H  15-16
         I1         Verona     Udinese      1      1      D  15-16
('18/10/15', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
18/10/15 SP1         Getafe  Las Palmas      4      0      H  15-16
         SP1      La Coruna  Ath Bilbao      2      2      D  15-16
         SP1       Sociedad  Ath Madrid      0      2      A  15-16
         SP1     Villarreal       Celta      1      2      A  15-16
('18/10/15', 'T1')
                                 home           away  hgoal  agoal result  \
date     league                                                             
18/10/15 T1      Akhisar Belediyespor  Eskisehirspor      1      0      H   
         T1                  Besiktas       Rizespor      1      0      H   
         T1                 Kasimpasa      Sivasspor      2      1      H   
         T1               Kayserispor     Fenerbahce      0      1      A   

                season  
date     league         
18/10/15 T1      15-16  
         T1      15-16  
         T1      15-16  
         T1      15-16  
('18/11/11', 'D1')
                           home        away  hgoal  agoal result season
date     league                                                        
18/11/11 D1      Kaiserslautern  Leverkusen      0      2      A  11-12
('18/11/11', 'T1')
                               home         away  hgoal  agoal result season
date     league                                                             
18/11/11 T1      Mersin Idman Yurdu  Trabzonspor      1      1      D  11-12
('18/11/12', 'D1')
                          home                away  hgoal  agoal result season
date     league                                                               
18/11/12 D1         Hoffenheim           Wolfsburg      1      3      A  12-13
         D1      Werder Bremen  Fortuna Dusseldorf      2      1      H  12-13
('18/11/12', 'I1')
                       home      away  hgoal  agoal result season
date     league                                                  
18/11/12 I1         Bologna   Palermo      3      0      H  12-13
         I1         Catania    Chievo      2      1      H  12-13
         I1      Fiorentina  Atalanta      4      1      H  12-13
         I1           Inter  Cagliari      2      2      D  12-13
         I1       Sampdoria     Genoa      3      1      H  12-13
         I1           Siena   Pescara      1      0      H  12-13
         I1         Udinese     Parma      2      2      D  12-13
('18/11/12', 'SP1')
                      home        away  hgoal  agoal result season
date     league                                                   
18/11/12 SP1         Celta    Mallorca      1      1      D  12-13
         SP1        Getafe  Valladolid      2      1      H  12-13
         SP1       Granada  Ath Madrid      0      1      A  12-13
         SP1     La Coruna     Levante      0      2      A  12-13
         SP1       Sevilla       Betis      5      1      H  12-13
('18/11/12', 'T1')
                                 home                away  hgoal  agoal  \
date     league                                                           
18/11/12 T1      Akhisar Belediyespor           Kasimpasa      0      2   
         T1               Antalyaspor            Besiktas      3      5   
         T1                 Bursaspor  Mersin Idman Yurdu      3      0   
         T1               Kayserispor       Gaziantepspor      1      1   

                result season  
date     league                
18/11/12 T1          A  12-13  
         T1          A  12-13  
         T1          H  12-13  
         T1          D  12-13  
('18/11/13', 'E2')
                    home       away  hgoal  agoal result season
date     league                                                
18/11/13 E2      Walsall  Peterboro      2      0      H  13-14
('18/12/11', 'D1')
                           home      away  hgoal  agoal result season
date     league                                                      
18/12/11 D1      Kaiserslautern  Hannover      1      1      D  11-12
         D1          M'gladbach     Mainz      1      0      H  11-12
('18/12/11', 'I1')
                     home     away  hgoal  agoal result season
date     league                                               
18/12/11 I1       Catania  Palermo      2      0      H  11-12
         I1        Cesena    Inter      0      1      A  11-12
         I1         Genoa  Bologna      2      1      H  11-12
         I1      Juventus   Novara      2      0      H  11-12
         I1         Lazio  Udinese      2      2      D  11-12
         I1        Napoli     Roma      1      3      A  11-12
         I1         Parma    Lecce      3      3      D  11-12
('18/12/11', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
18/12/11 SP1     Ath Madrid       Betis      0      2      A  11-12
         SP1        Granada     Levante      2      1      H  11-12
         SP1        Osasuna  Villarreal      2      1      H  11-12
         SP1      Santander    Sociedad      0      0      D  11-12
         SP1       Valencia      Malaga      2      0      H  11-12
('18/12/11', 'T1')
                       home            away  hgoal  agoal result season
date     league                                                        
18/12/11 T1      Buyuksehyr       Sivasspor      1      1      D  11-12
         T1      Fenerbahce     Trabzonspor      1      0      H  11-12
         T1      Manisaspor  Genclerbirligi      0      1      A  11-12
         T1      Samsunspor        Besiktas      1      1      D  11-12
('18/12/14', 'I1')
                     home      away  hgoal  agoal result season
date     league                                                
18/12/14 I1      Cagliari  Juventus      1      3      A  14-15
         I1        Napoli     Parma      2      0      H  14-15
('18/12/15', 'D1')
                       home        away  hgoal  agoal result season
date     league                                                    
18/12/15 D1      Schalke 04  Hoffenheim      1      0      H  15-16
('18/12/15', 'E2')
                     home  away  hgoal  agoal result season
date     league                                            
18/12/15 E2      Southend  Bury      4      1      H  15-16
('19/01/13', 'D1')
                          home            away  hgoal  agoal result season
date     league                                                           
19/01/13 D1      Bayern Munich  Greuther Furth      2      0      H  12-13
         D1         Hoffenheim      M'gladbach      0      0      D  12-13
         D1         Leverkusen   Ein Frankfurt      3      1      H  12-13
         D1              Mainz        Freiburg      0      0      D  12-13
         D1      Werder Bremen        Dortmund      0      5      A  12-13
         D1          Wolfsburg       Stuttgart      2      0      H  12-13
('19/01/13', 'E2')
                         home              away  hgoal  agoal result season
date     league                                                            
19/01/13 E2         Brentford          Tranmere      1      2      A  12-13
         E2          Coventry            Oldham      2      1      H  12-13
         E2         Doncaster     Leyton Orient      2      0      H  12-13
         E2      Notts County  Sheffield United      1      1      D  12-13
         E2           Swindon        Shrewsbury      2      0      H  12-13
         E2           Walsall       Bournemouth      3      1      H  12-13
('19/01/13', 'I1')
                     home     away  hgoal  agoal result season
date     league                                               
19/01/13 I1      Juventus  Udinese      4      0      H  12-13
         I1         Milan  Bologna      2      1      H  12-13
         I1       Palermo    Lazio      2      2      D  12-13
('19/01/13', 'SP1')
                     home       away  hgoal  agoal result season
date     league                                                 
19/01/13 SP1       Getafe    Sevilla      1      1      D  12-13
         SP1      Granada  Vallecano      2      0      H  12-13
         SP1       Malaga      Celta      1      1      D  12-13
         SP1     Sociedad  Barcelona      3      2      H  12-13
('19/01/13', 'T1')
                      home           away  hgoal  agoal result season
date     league                                                      
19/01/13 T1       Besiktas     Buyuksehyr      2      2      D  12-13
         T1      Bursaspor    Kayserispor      2      1      H  12-13
         T1      Sivasspor  Gaziantepspor      0      0      D  12-13
('19/01/14', 'I1')
                     home        away  hgoal  agoal result season
date     league                                                  
19/01/14 I1      Atalanta    Cagliari      1      0      H  13-14
         I1       Bologna      Napoli      2      2      D  13-14
         I1       Catania  Fiorentina      0      3      A  13-14
         I1        Chievo       Parma      1      2      A  13-14
         I1         Genoa       Inter      1      0      H  13-14
         I1         Milan      Verona      1      0      H  13-14
         I1      Sassuolo      Torino      0      2      A  13-14
         I1       Udinese       Lazio      2      3      A  13-14
('19/01/14', 'SP1')
                       home       away  hgoal  agoal result season
date     league                                                   
19/01/14 SP1     Ath Madrid    Sevilla      1      1      D  13-14
         SP1         Getafe   Sociedad      2      2      D  13-14
         SP1        Levante  Barcelona      1      1      D  13-14
         SP1     Villarreal    Almeria      2      0      H  13-14
('19/02/12', 'D1')
                       home       away  hgoal  agoal result season
date     league                                                   
19/02/12 D1        Hannover  Stuttgart      4      2      H  11-12
         D1      Schalke 04  Wolfsburg      4      0      H  11-12
('19/02/12', 'I1')
                    home      away  hgoal  agoal result season
date     league                                               
19/02/12 I1       Cesena     Milan      1      3      A  11-12
         I1        Genoa    Chievo      0      1      A  11-12
         I1        Lecce     Siena      4      1      H  11-12
         I1       Novara  Atalanta      0      0      D  11-12
         I1      Palermo     Lazio      5      1      H  11-12
         I1         Roma     Parma      1      0      H  11-12
         I1      Udinese  Cagliari      0      0      D  11-12
('19/02/12', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
19/02/12 SP1     Ath Bilbao      Malaga      3      0      H  11-12
         SP1      Barcelona    Valencia      5      1      H  11-12
         SP1        Granada    Sociedad      4      1      H  11-12
         SP1        Levante   Vallecano      3      5      A  11-12
         SP1       Mallorca  Villarreal      4      0      H  11-12
         SP1       Sp Gijon  Ath Madrid      1      1      D  11-12
('19/02/12', 'T1')
                          home            away  hgoal  agoal result season
date     league                                                           
19/02/12 T1           Besiktas  Genclerbirligi      3      2      H  11-12
         T1      Eskisehirspor     Karabukspor      1      2      A  11-12
         T1      Gaziantepspor        Orduspor      1      0      H  11-12
         T1        Kayserispor     Trabzonspor      3      3      D  11-12
('19/02/13', 'E2')
                     home     away  hgoal  agoal result season
date     league                                               
19/02/13 E2      Tranmere  Swindon      1      3      A  12-13
('19/02/14', 'E2')
                       home              away  hgoal  agoal result season
date     league                                                          
19/02/14 E2      Gillingham  Sheffield United      0      1      A  13-14
('19/02/16', 'D1')
                          home     away  hgoal  agoal result season
date     league                                                    
19/02/16 D1      Ein Frankfurt  Hamburg      0      0      D  15-16
('19/02/16', 'I1')
                    home      away  hgoal  agoal result season
date     league                                               
19/02/16 I1      Bologna  Juventus      0      0      D  15-16
('19/02/16', 'SP1')
                    home    away  hgoal  agoal result season
date     league                                             
19/02/16 SP1     Levante  Getafe      3      0      H  15-16
('19/02/16', 'T1')
                      home       away  hgoal  agoal result season
date     league                                                  
19/02/16 T1      Konyaspor  Sivasspor      2      1      H  15-16
('19/03/12', 'I1')
                 home   away  hgoal  agoal result season
date     league                                         
19/03/12 I1      Roma  Genoa      1      0      H  11-12
('19/03/12', 'SP1')
                    home       away  hgoal  agoal result season
date     league                                                
19/03/12 SP1     Espanol  Santander      3      1      H  11-12
('19/03/12', 'T1')
                     home        away  hgoal  agoal result season
date     league                                                  
19/03/12 T1      Besiktas  Manisaspor      4      1      H  11-12
('19/03/13', 'E2')
                   home                away  hgoal  agoal result season
date     league                                                        
19/03/13 E2        Bury           Stevenage      2      0      H  12-13
         E2       Crewe  Milton Keynes Dons      2      1      H  12-13
         E2      Oldham          Hartlepool      3      0      H  12-13
         E2      Yeovil             Swindon      0      2      A  12-13
('19/03/16', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
19/03/16 D1      Ein Frankfurt       Hannover      1      0      H  15-16
         D1            FC Koln  Bayern Munich      0      1      A  15-16
         D1            Hamburg     Hoffenheim      1      3      A  15-16
         D1             Hertha     Ingolstadt      2      1      H  15-16
         D1      Werder Bremen          Mainz      1      1      D  15-16
         D1          Wolfsburg      Darmstadt      1      1      D  15-16
('19/03/16', 'E2')
                           home              away  hgoal  agoal result season
date     league                                                              
19/03/16 E2                Bury        Shrewsbury      2      2      D  15-16
         E2            Coventry           Swindon      0      0      D  15-16
         E2               Crewe         Blackpool      1      2      A  15-16
         E2           Doncaster         Peterboro      1      2      A  15-16
         E2      Fleetwood Town          Barnsley      0      2      A  15-16
         E2            Millwall  Sheffield United      1      0      H  15-16
         E2              Oldham          Rochdale      2      3      A  15-16
         E2           Port Vale            Burton      0      4      A  15-16
         E2          Scunthorpe      Chesterfield      1      1      D  15-16
         E2            Southend        Gillingham      1      1      D  15-16
         E2             Walsall        Colchester      2      1      H  15-16
         E2               Wigan          Bradford      1      0      H  15-16
('19/03/16', 'I1')
                   home     away  hgoal  agoal result season
date     league                                             
19/03/16 I1      Empoli  Palermo      0      0      D  15-16
         I1        Roma    Inter      1      1      D  15-16
('19/03/16', 'SP1')
                      home        away  hgoal  agoal result season
date     league                                                   
19/03/16 SP1         Betis      Malaga      0      1      A  15-16
         SP1       Granada   Vallecano      2      2      D  15-16
         SP1     La Coruna     Levante      2      1      H  15-16
         SP1      Sociedad  Las Palmas      0      1      A  15-16
         SP1      Sp Gijon  Ath Madrid      2      1      H  15-16
('19/03/16', 'T1')
                        home            away  hgoal  agoal result season
date     league                                                         
19/03/16 T1         Besiktas     Antalyaspor      1      0      H  15-16
         T1      Osmanlispor  Genclerbirligi      3      1      H  15-16
         T1      Trabzonspor       Sivasspor      1      0      H  15-16
('19/04/13', 'D1')
                       home      away  hgoal  agoal result season
date     league                                                  
19/04/13 D1      M'gladbach  Augsburg      1      0      H  12-13
('19/04/13', 'T1')
                        home        away  hgoal  agoal result season
date     league                                                     
19/04/13 T1      Galatasaray  Elazigspor      3      1      H  12-13
('19/04/14', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
19/04/14 D1           Augsburg         Hertha      0      0      D  13-14
         D1       Braunschweig  Bayern Munich      0      2      A  13-14
         D1           Dortmund          Mainz      4      2      H  13-14
         D1           Freiburg     M'gladbach      4      2      H  13-14
         D1            Hamburg      Wolfsburg      1      3      A  13-14
         D1      Werder Bremen     Hoffenheim      3      1      H  13-14
('19/04/14', 'I1')
                       home       away  hgoal  agoal result season
date     league                                                   
19/04/14 I1        Atalanta     Verona      1      2      A  13-14
         I1         Catania  Sampdoria      2      1      H  13-14
         I1          Chievo   Sassuolo      0      1      A  13-14
         I1      Fiorentina       Roma      0      1      A  13-14
         I1           Genoa   Cagliari      1      2      A  13-14
         I1        Juventus    Bologna      1      0      H  13-14
         I1           Lazio     Torino      3      3      D  13-14
         I1           Milan    Livorno      3      0      H  13-14
         I1           Parma      Inter      0      2      A  13-14
         I1         Udinese     Napoli      1      1      D  13-14
('19/04/14', 'SP1')
                     home      away  hgoal  agoal result season
date     league                                                
19/04/14 SP1      Levante    Getafe      0      0      D  13-14
         SP1      Osasuna  Valencia      1      1      D  13-14
         SP1     Sociedad   Espanol      2      1      H  13-14
('19/04/14', 'T1')
                                 home            away  hgoal  agoal result  \
date     league                                                              
19/04/14 T1      Akhisar Belediyespor     Kayserispor      2      2      D   
         T1                 Bursaspor      Elazigspor      1      0      H   
         T1               Galatasaray       Kasimpasa      0      4      A   
         T1             Gaziantepspor  Genclerbirligi      0      1      A   

                season  
date     league         
19/04/14 T1      13-14  
         T1      13-14  
         T1      13-14  
         T1      13-14  
('19/04/15', 'D1')
                          home        away  hgoal  agoal result season
date     league                                                       
19/04/15 D1      Werder Bremen     Hamburg      1      0      H  14-15
         D1          Wolfsburg  Schalke 04      1      1      D  14-15
('19/04/15', 'I1')
                     home     away  hgoal  agoal result season
date     league                                               
19/04/15 I1      Cagliari   Napoli      0      3      A  14-15
         I1        Chievo  Udinese      1      1      D  14-15
         I1        Empoli    Parma      2      2      D  14-15
         I1         Inter    Milan      0      0      D  14-15
('19/04/15', 'SP1')
                       home     away  hgoal  agoal result season
date     league                                                 
19/04/15 SP1          Eibar    Celta      0      1      A  14-15
         SP1        Granada  Sevilla      1      1      D  14-15
         SP1      Vallecano  Almeria      2      0      H  14-15
         SP1     Villarreal  Cordoba      0      0      D  14-15
('19/04/15', 'T1')
                        home           away  hgoal  agoal result season
date     league                                                        
19/04/15 T1       Buyuksehyr       Rizespor      3      1      H  14-15
         T1      Erciyesspor  Eskisehirspor      0      1      A  14-15
         T1        Sivasspor  Balikesirspor      1      1      D  14-15
         T1      Trabzonspor    Galatasaray      2      1      H  14-15
('19/04/16', 'E2')
                         home              away  hgoal  agoal result season
date     league                                                            
19/04/16 E2          Barnsley         Peterboro      1      0      H  15-16
         E2            Burton             Wigan      1      1      D  15-16
         E2      Chesterfield         Doncaster      1      1      D  15-16
         E2          Coventry          Bradford      1      0      H  15-16
         E2             Crewe        Colchester      1      1      D  15-16
         E2          Millwall    Fleetwood Town      1      0      H  15-16
         E2          Rochdale        Gillingham      1      1      D  15-16
         E2        Scunthorpe              Bury      2      1      H  15-16
         E2        Shrewsbury  Sheffield United      1      2      A  15-16
         E2          Southend            Oldham      0      1      A  15-16
         E2           Walsall           Swindon      1      1      D  15-16
('19/04/16', 'I1')
                   home     away  hgoal  agoal result season
date     league                                             
19/04/16 I1      Napoli  Bologna      6      0      H  15-16
('19/04/16', 'SP1')
                    home        away  hgoal  agoal result season
date     league                                                 
19/04/16 SP1       Betis  Las Palmas      1      0      H  15-16
         SP1     Espanol       Celta      1      1      D  15-16
('19/05/13', 'I1')
                     home        away  hgoal  agoal result season
date     league                                                  
19/05/13 I1      Atalanta      Chievo      2      2      D  12-13
         I1       Bologna       Genoa      0      0      D  12-13
         I1      Cagliari       Lazio      1      0      H  12-13
         I1         Inter     Udinese      2      5      A  12-13
         I1       Palermo       Parma      1      3      A  12-13
         I1       Pescara  Fiorentina      1      5      A  12-13
         I1          Roma      Napoli      2      1      H  12-13
         I1         Siena       Milan      1      2      A  12-13
         I1        Torino     Catania      2      2      D  12-13
('19/05/13', 'SP1')
                      home        away  hgoal  agoal result season
date     league                                                   
19/05/13 SP1     Barcelona  Valladolid      2      1      H  12-13
         SP1     La Coruna     Espanol      2      0      H  12-13
         SP1       Levante   Vallecano      2      3      A  12-13
         SP1      Zaragoza  Ath Bilbao      1      2      A  12-13
('19/05/13', 'T1')
                           home         away  hgoal  agoal result season
date     league                                                         
19/05/13 T1          Elazigspor    Sivasspor      0      0      D  12-13
         T1       Eskisehirspor  Antalyaspor      3      1      H  12-13
         T1      Genclerbirligi    Bursaspor      2      2      D  12-13
         T1         Kayserispor     Besiktas      2      0      H  12-13
('19/05/16', 'T1')
                           home                  away  hgoal  agoal result  \
date     league                                                              
19/05/16 T1         Galatasaray           Kayserispor      6      0      H   
         T1       Gaziantepspor           Antalyaspor      2      0      H   
         T1      Genclerbirligi         Eskisehirspor      3      1      H   
         T1         Osmanlispor  Akhisar Belediyespor      1      0      H   
         T1           Sivasspor            Fenerbahce      2      2      D   
         T1         Trabzonspor             Kasimpasa      0      6      A   

                season  
date     league         
19/05/16 T1      15-16  
         T1      15-16  
         T1      15-16  
         T1      15-16  
         T1      15-16  
         T1      15-16  
('19/08/11', 'D1')
                       home       away  hgoal  agoal result season
date     league                                                   
19/08/11 D1      M'gladbach  Wolfsburg      4      1      H  11-12
('19/08/12', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
19/08/12 SP1      Ath Bilbao       Betis      3      5      A  12-13
         SP1       Barcelona    Sociedad      5      1      H  12-13
         SP1         Levante  Ath Madrid      1      1      D  12-13
         SP1     Real Madrid    Valencia      1      1      D  12-13
('19/08/12', 'T1')
                               home       away  hgoal  agoal result season
date     league                                                           
19/08/12 T1              Buyuksehyr   Besiktas      1      1      D  12-13
         T1             Kayserispor  Bursaspor      0      1      A  12-13
         T1      Mersin Idman Yurdu   Orduspor      0      0      D  12-13
('19/08/13', 'SP1')
                      home        away  hgoal  agoal result season
date     league                                                   
19/08/13 SP1       Almeria  Villarreal      2      3      A  13-14
         SP1         Celta     Espanol      2      2      D  13-14
         SP1     Vallecano       Elche      3      0      H  13-14
('19/08/13', 'T1')
                        home           away  hgoal  agoal result season
date     league                                                        
19/08/13 T1      Galatasaray  Gaziantepspor      2      1      H  13-14
         T1      Kayserispor      Sivasspor      1      0      H  13-14
('19/08/14', 'E2')
                         home                away  hgoal  agoal result season
date     league                                                              
19/08/14 E2      Bristol City       Leyton Orient      0      0      D  14-15
         E2      Chesterfield  Milton Keynes Dons      0      1      A  14-15
         E2          Coventry            Barnsley      2      2      D  14-15
         E2      Crawley Town            Bradford      1      3      A  14-15
         E2             Crewe            Rochdale      2      5      A  14-15
         E2         Doncaster             Preston      1      1      D  14-15
         E2        Gillingham             Swindon      2      2      D  14-15
         E2      Notts County          Colchester      2      1      H  14-15
         E2            Oldham           Port Vale      1      1      D  14-15
         E2         Peterboro    Sheffield United      1      2      A  14-15
         E2        Scunthorpe      Fleetwood Town      0      2      A  14-15
         E2           Walsall              Yeovil      1      2      A  14-15
('19/08/15', 'E2')
                      home        away  hgoal  agoal result season
date     league                                                   
19/08/15 E2      Doncaster    Southend      0      0      D  15-16
         E2          Wigan  Scunthorpe      3      0      H  15-16
('19/09/11', 'T1')
                     home        away  hgoal  agoal result season
date     league                                                  
19/09/11 T1      Besiktas  Ankaragucu      3      1      H  11-12
('19/09/14', 'D1')
                     home    away  hgoal  agoal result season
date     league                                              
19/09/14 D1      Freiburg  Hertha      2      2      D  14-15
('19/09/14', 'SP1')
                  home   away  hgoal  agoal result season
date     league                                          
19/09/14 SP1     Elche  Eibar      0      2      A  14-15
('19/09/14', 'T1')
                          home            away  hgoal  agoal result season
date     league                                                           
19/09/14 T1      Eskisehirspor  Genclerbirligi      0      2      A  14-15
('19/09/15', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
19/09/15 D1          Darmstadt  Bayern Munich      0      3      A  15-16
         D1            FC Koln     M'gladbach      1      0      H  15-16
         D1            Hamburg  Ein Frankfurt      0      0      D  15-16
         D1      Werder Bremen     Ingolstadt      0      1      A  15-16
         D1          Wolfsburg         Hertha      2      0      H  15-16
('19/09/15', 'E2')
                       home            away  hgoal  agoal result season
date     league                                                        
19/09/15 E2       Blackpool        Barnsley      1      1      D  15-16
         E2            Bury       Port Vale      1      0      H  15-16
         E2      Colchester      Gillingham      2      1      H  15-16
         E2        Coventry    Chesterfield      1      0      H  15-16
         E2       Doncaster          Oldham      1      1      D  15-16
         E2        Millwall        Southend      0      2      A  15-16
         E2       Peterboro         Walsall      1      1      D  15-16
         E2        Rochdale      Scunthorpe      2      1      H  15-16
         E2      Shrewsbury           Crewe      0      1      A  15-16
         E2         Swindon          Burton      0      1      A  15-16
         E2           Wigan  Fleetwood Town      2      1      H  15-16
('19/09/15', 'I1')
                    home     away  hgoal  agoal result season
date     league                                              
19/09/15 I1        Milan  Palermo      3      2      H  15-16
         I1      Udinese   Empoli      1      2      A  15-16
('19/09/15', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
19/09/15 SP1           Eibar  Ath Madrid      0      2      A  15-16
         SP1     Real Madrid     Granada      1      0      H  15-16
         SP1        Sociedad     Espanol      2      3      A  15-16
         SP1        Valencia       Betis      0      0      D  15-16
('19/09/15', 'T1')
                          home         away  hgoal  agoal result season
date     league                                                        
19/09/15 T1      Eskisehirspor    Kasimpasa      0      3      A  15-16
         T1           Rizespor  Antalyaspor      5      1      H  15-16
         T1          Sivasspor    Konyaspor      0      0      D  15-16
         T1        Trabzonspor  Galatasaray      0      1      A  15-16
('19/10/11', 'E2')
                    home              away  hgoal  agoal result season
date     league                                                       
19/10/11 E2      Preston  Sheffield United      2      4      A  11-12
('19/10/12', 'D1')
                       home            away  hgoal  agoal result season
date     league                                                        
19/10/12 D1      Hoffenheim  Greuther Furth      3      3      D  12-13
('19/10/12', 'T1')
                           home         away  hgoal  agoal result season
date     league                                                         
19/10/12 T1      Genclerbirligi  Galatasaray      3      3      D  12-13
('19/10/13', 'D1')
                          home        away  hgoal  agoal result season
date     league                                                       
19/10/13 D1      Bayern Munich       Mainz      4      1      H  13-14
         D1       Braunschweig  Schalke 04      2      3      A  13-14
         D1           Dortmund    Hannover      1      0      H  13-14
         D1      Ein Frankfurt    Nurnberg      1      1      D  13-14
         D1             Hertha  M'gladbach      1      0      H  13-14
         D1      Werder Bremen    Freiburg      0      0      D  13-14
('19/10/13', 'E2')
                               home           away  hgoal  agoal result season
date     league                                                               
19/10/13 E2               Brentford     Colchester      3      1      H  13-14
         E2            Crawley Town       Bradford      1      0      H  13-14
         E2                   Crewe   Bristol City      1      0      H  13-14
         E2              Gillingham        Preston      1      2      A  13-14
         E2      Milton Keynes Dons      Rotherham      3      2      H  13-14
         E2                  Oldham       Carlisle      1      0      H  13-14
         E2               Peterboro     Shrewsbury      1      0      H  13-14
         E2        Sheffield United      Port Vale      2      1      H  13-14
         E2                Tranmere  Leyton Orient      0      4      A  13-14
         E2                 Walsall      Stevenage      2      1      H  13-14
         E2                  Wolves       Coventry      1      1      D  13-14
('19/10/13', 'I1')
                     home     away  hgoal  agoal result season
date     league                                               
19/10/13 I1      Cagliari  Catania      2      1      H  13-14
         I1         Milan  Udinese      1      0      H  13-14
('19/10/13', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
19/10/13 SP1         Espanol  Ath Madrid      1      0      H  13-14
         SP1         Osasuna   Barcelona      0      0      D  13-14
         SP1     Real Madrid      Malaga      2      0      H  13-14
         SP1        Valencia    Sociedad      1      2      A  13-14
('19/10/13', 'T1')
                           home           away  hgoal  agoal result season
date     league                                                           
19/10/13 T1          Elazigspor  Eskisehirspor      0      2      A  13-14
         T1         Galatasaray    Karabukspor      2      1      H  13-14
         T1      Genclerbirligi      Kasimpasa      1      3      A  13-14
('19/10/14', 'D1')
                      home           away  hgoal  agoal result season
date     league                                                      
19/10/14 D1        Hamburg     Hoffenheim      1      1      D  14-15
         D1      Paderborn  Ein Frankfurt      3      1      H  14-15
('19/10/14', 'I1')
                       home       away  hgoal  agoal result season
date     league                                                   
19/10/14 I1        Atalanta      Parma      1      0      H  14-15
         I1        Cagliari  Sampdoria      2      2      D  14-15
         I1      Fiorentina      Lazio      0      2      A  14-15
         I1           Inter     Napoli      2      2      D  14-15
         I1         Palermo     Cesena      2      1      H  14-15
         I1          Torino    Udinese      1      0      H  14-15
         I1          Verona      Milan      1      3      A  14-15
('19/10/14', 'SP1')
                       home      away  hgoal  agoal result season
date     league                                                  
19/10/14 SP1     Ath Madrid   Espanol      2      0      H  14-15
         SP1          Elche   Sevilla      0      2      A  14-15
         SP1      La Coruna  Valencia      3      0      H  14-15
         SP1     Villarreal   Almeria      2      0      H  14-15
('19/10/14', 'T1')
                                 home                away  hgoal  agoal  \
date     league                                                           
19/10/14 T1      Akhisar Belediyespor           Kasimpasa      2      0   
         T1                  Besiktas           Sivasspor      3      2   
         T1                 Bursaspor       Eskisehirspor      2      2   
         T1               Trabzonspor  Mersin Idman Yurdu      3      1   

                result season  
date     league                
19/10/14 T1          H  14-15  
         T1          H  14-15  
         T1          D  14-15  
         T1          H  14-15  
('19/10/15', 'SP1')
                     home     away  hgoal  agoal result season
date     league                                               
19/10/15 SP1     Sp Gijon  Granada      3      3      D  15-16
('19/10/15', 'T1')
                               home         away  hgoal  agoal result season
date     league                                                             
19/10/15 T1      Mersin Idman Yurdu  Trabzonspor      3      2      H  15-16
         T1             Osmanlispor   Buyuksehyr      0      3      A  15-16
('19/11/11', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
19/11/11 D1      Bayern Munich       Dortmund      0      1      A  11-12
         D1           Freiburg         Hertha      2      2      D  11-12
         D1         M'gladbach  Werder Bremen      5      0      H  11-12
         D1         Schalke 04       Nurnberg      4      0      H  11-12
         D1          Wolfsburg       Hannover      4      1      H  11-12
('19/11/11', 'E2')
                             home                away  hgoal  agoal result  \
date     league                                                              
19/11/11 E2             Brentford            Charlton      0      1      A   
         E2            Colchester  Milton Keynes Dons      1      5      A   
         E2          Huddersfield        Notts County      2      1      H   
         E2         Leyton Orient           Stevenage      0      0      D   
         E2                Oldham        Chesterfield      5      2      H   
         E2               Preston            Rochdale      0      1      A   
         E2            Scunthorpe          Hartlepool      0      2      A   
         E2      Sheffield United            Carlisle      1      0      H   
         E2              Tranmere      Sheffield Weds      1      2      A   
         E2               Walsall                Bury      2      4      A   
         E2               Wycombe         Bournemouth      0      1      A   
         E2                Yeovil              Exeter      2      2      D   

                season  
date     league         
19/11/11 E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
('19/11/11', 'I1')
                       home      away  hgoal  agoal result season
date     league                                                  
19/11/11 I1      Fiorentina     Milan      0      0      D  11-12
         I1           Inter  Cagliari      2      1      H  11-12
         I1          Napoli     Lazio      0      0      D  11-12
('19/11/11', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
19/11/11 SP1      Barcelona     Zaragoza      4      0      H  11-12
         SP1       Valencia  Real Madrid      2      3      A  11-12
         SP1     Villarreal        Betis      1      0      H  11-12
('19/11/11', 'T1')
                        home           away  hgoal  agoal result season
date     league                                                        
19/11/11 T1       Ankaragucu    Karabukspor      2      1      H  11-12
         T1       Fenerbahce  Eskisehirspor      1      0      H  11-12
         T1      Kayserispor       Orduspor      1      0      H  11-12
('19/11/12', 'I1')
                 home    away  hgoal  agoal result season
date     league                                          
19/11/12 I1      Roma  Torino      2      0      H  12-13
('19/11/12', 'SP1')
                     home       away  hgoal  agoal result season
date     league                                                 
19/11/12 SP1     Sociedad  Vallecano      4      0      H  12-13
('19/11/12', 'T1')
                     home         away  hgoal  agoal result season
date     league                                                   
19/11/12 T1      Orduspor  Trabzonspor      1      2      A  12-13
('19/12/14', 'D1')
                  home           away  hgoal  agoal result season
date     league                                                  
19/12/14 D1      Mainz  Bayern Munich      1      2      A  14-15
('19/12/14', 'SP1')
                  home     away  hgoal  agoal result season
date     league                                            
19/12/14 SP1     Celta  Almeria      0      1      A  14-15
('19/12/14', 'T1')
                        home        away  hgoal  agoal result season
date     league                                                     
19/12/14 T1      Erciyesspor  Fenerbahce      0      1      A  14-15
('19/12/15', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
19/12/15 D1      Ein Frankfurt  Werder Bremen      2      1      H  15-16
         D1            FC Koln       Dortmund      2      1      H  15-16
         D1            Hamburg       Augsburg      0      1      A  15-16
         D1           Hannover  Bayern Munich      0      1      A  15-16
         D1         Ingolstadt     Leverkusen      0      1      A  15-16
         D1          Stuttgart      Wolfsburg      3      1      H  15-16
('19/12/15', 'E2')
                         home              away  hgoal  agoal result season
date     league                                                            
19/12/15 E2          Barnsley             Wigan      0      2      A  15-16
         E2         Blackpool         Peterboro      2      0      H  15-16
         E2            Burton         Doncaster      3      3      D  15-16
         E2      Chesterfield          Bradford      0      1      A  15-16
         E2          Coventry            Oldham      1      1      D  15-16
         E2             Crewe    Fleetwood Town      1      1      D  15-16
         E2          Millwall        Gillingham      0      3      A  15-16
         E2          Rochdale        Colchester      3      1      H  15-16
         E2        Scunthorpe  Sheffield United      0      1      A  15-16
         E2        Shrewsbury           Swindon      0      1      A  15-16
('19/12/15', 'I1')
                    home    away  hgoal  agoal result season
date     league                                             
19/12/15 I1      Bologna  Empoli      2      3      A  15-16
('19/12/15', 'SP1')
                      home        away  hgoal  agoal result season
date     league                                                   
19/12/15 SP1         Betis     Sevilla      0      0      D  15-16
         SP1       Espanol  Las Palmas      1      0      H  15-16
         SP1     La Coruna       Eibar      2      0      H  15-16
         SP1      Valencia      Getafe      2      2      D  15-16
('19/12/15', 'T1')
                               home         away  hgoal  agoal result season
date     league                                                             
19/12/15 T1           Gaziantepspor     Rizespor      2      0      H  15-16
         T1               Konyaspor    Bursaspor      1      0      H  15-16
         T1      Mersin Idman Yurdu    Kasimpasa      1      2      A  15-16
         T1             Trabzonspor  Antalyaspor      3      0      H  15-16
('20/01/12', 'D1')
                       home           away  hgoal  agoal result season
date     league                                                       
20/01/12 D1      M'gladbach  Bayern Munich      3      1      H  11-12
('20/01/12', 'T1')
                          home                away  hgoal  agoal result season
date     league                                                               
20/01/12 T1        Antalyaspor            Besiktas      1      2      A  11-12
         T1      Gaziantepspor  Mersin Idman Yurdu      1      0      H  11-12
('20/01/13', 'D1')
                               home      away  hgoal  agoal result season
date     league                                                          
20/01/13 D1      Fortuna Dusseldorf  Augsburg      2      3      A  12-13
         D1                Nurnberg   Hamburg      1      1      D  12-13
('20/01/13', 'I1')
                       home       away  hgoal  agoal result season
date     league                                                   
20/01/13 I1        Atalanta   Cagliari      1      1      D  12-13
         I1          Chievo      Parma      1      1      D  12-13
         I1      Fiorentina     Napoli      1      1      D  12-13
         I1           Genoa    Catania      0      2      A  12-13
         I1         Pescara     Torino      0      2      A  12-13
         I1            Roma      Inter      1      1      D  12-13
         I1           Siena  Sampdoria      1      0      H  12-13
('20/01/13', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
20/01/13 SP1     Ath Madrid      Levante      2      0      H  12-13
         SP1        Osasuna    La Coruna      2      1      H  12-13
         SP1       Valencia  Real Madrid      0      5      A  12-13
         SP1     Valladolid     Zaragoza      2      0      H  12-13
('20/01/13', 'T1')
                        home            away  hgoal  agoal result season
date     league                                                         
20/01/13 T1      Antalyaspor  Genclerbirligi      3      5      A  12-13
         T1       Fenerbahce      Elazigspor      2      2      D  12-13
         T1      Trabzonspor     Karabukspor      1      3      A  12-13
('20/01/14', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
20/01/14 SP1     Ath Bilbao  Valladolid      4      2      H  13-14
('20/01/15', 'E2')
                      home          away  hgoal  agoal result season
date     league                                                     
20/01/15 E2      Doncaster  Notts County      0      0      D  14-15
         E2        Preston        Yeovil      1      1      D  14-15
('20/01/16', 'I1')
                     home    away  hgoal  agoal result season
date     league                                              
20/01/16 I1      Sassuolo  Torino      1      1      D  15-16
('20/02/12', 'E2')
                      home      away  hgoal  agoal result season
date     league                                                 
20/02/12 E2      Brentford  Carlisle      4      0      H  11-12
('20/02/12', 'SP1')
                     home   away  hgoal  agoal result season
date     league                                             
20/02/12 SP1     Zaragoza  Betis      0      2      A  11-12
('20/02/12', 'T1')
                      home        away  hgoal  agoal result season
date     league                                                   
20/02/12 T1      Bursaspor  Buyuksehyr      2      1      H  11-12
('20/02/15', 'D1')
                      home      away  hgoal  agoal result season
date     league                                                 
20/02/15 D1      Stuttgart  Dortmund      2      3      A  14-15
('20/02/15', 'I1')
                     home      away  hgoal  agoal result season
date     league                                                
20/02/15 I1      Juventus  Atalanta      2      1      H  14-15
('20/02/15', 'SP1')
                   home     away  hgoal  agoal result season
date     league                                             
20/02/15 SP1     Getafe  Espanol      2      1      H  14-15
('20/02/15', 'T1')
                        home       away  hgoal  agoal result season
date     league                                                    
20/02/15 T1      Erciyesspor  Konyaspor      3      0      H  14-15
('20/02/16', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
20/02/16 D1      Bayern Munich      Darmstadt      3      1      H  15-16
         D1             Hertha      Wolfsburg      1      1      D  15-16
         D1         Hoffenheim          Mainz      3      2      H  15-16
         D1         Ingolstadt  Werder Bremen      2      0      H  15-16
         D1         M'gladbach        FC Koln      1      0      H  15-16
('20/02/16', 'E2')
                             home        away  hgoal  agoal result season
date     league                                                          
20/02/16 E2              Barnsley   Doncaster      1      0      H  15-16
         E2              Bradford    Rochdale      2      2      D  15-16
         E2                  Bury  Colchester      5      2      H  15-16
         E2          Chesterfield       Crewe      3      1      H  15-16
         E2        Fleetwood Town  Scunthorpe      2      1      H  15-16
         E2              Millwall   Peterboro      3      0      H  15-16
         E2                Oldham  Gillingham      2      1      H  15-16
         E2      Sheffield United   Port Vale      1      0      H  15-16
         E2               Swindon   Blackpool      3      2      H  15-16
         E2               Walsall       Wigan      1      2      A  15-16
('20/02/16', 'I1')
                   home       away  hgoal  agoal result season
date     league                                               
20/02/16 I1       Inter  Sampdoria      3      1      H  15-16
         I1      Verona     Chievo      3      1      H  15-16
('20/02/16', 'SP1')
                       home       away  hgoal  agoal result season
date     league                                                   
20/02/16 SP1          Betis   Sp Gijon      1      1      D  15-16
         SP1          Celta      Eibar      3      2      H  15-16
         SP1        Espanol  La Coruna      1      0      H  15-16
         SP1     Las Palmas  Barcelona      1      2      A  15-16
('20/02/16', 'T1')
                        home           away  hgoal  agoal result season
date     league                                                        
20/02/16 T1      Antalyaspor       Rizespor      2      1      H  15-16
         T1        Bursaspor     Fenerbahce      0      0      D  15-16
         T1        Kasimpasa  Eskisehirspor      2      1      H  15-16
('20/03/12', 'E2')
                               home              away  hgoal  agoal result  \
date     league                                                              
20/03/12 E2             Bournemouth         Brentford      1      0      H   
         E2                    Bury        Scunthorpe      0      0      D   
         E2                Carlisle           Preston      0      0      D   
         E2                Charlton            Yeovil      3      0      H   
         E2            Chesterfield      Huddersfield      0      2      A   
         E2                  Exeter           Wycombe      1      3      A   
         E2              Hartlepool            Oldham      0      1      A   
         E2      Milton Keynes Dons     Leyton Orient      4      1      H   
         E2            Notts County  Sheffield United      2      5      A   
         E2                Rochdale          Tranmere      0      2      A   
         E2          Sheffield Weds           Walsall      2      2      D   
         E2               Stevenage        Colchester      0      0      D   

                season  
date     league         
20/03/12 E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
('20/03/12', 'SP1')
                      home     away  hgoal  agoal result season
date     league                                                
20/03/12 SP1     Barcelona  Granada      5      3      H  11-12
         SP1       Osasuna   Getafe      0      0      D  11-12
('20/03/15', 'D1')
                    home    away  hgoal  agoal result season
date     league                                             
20/03/15 D1      Hamburg  Hertha      0      1      A  14-15
('20/03/15', 'SP1')
                  home      away  hgoal  agoal result season
date     league                                             
20/03/15 SP1     Elche  Valencia      0      4      A  14-15
('20/03/15', 'T1')
                          home           away  hgoal  agoal result season
date     league                                                          
20/03/15 T1      Balikesirspor  Eskisehirspor      4      1      H  14-15
         T1        Karabukspor      Konyaspor      0      1      A  14-15
('20/03/16', 'D1')
                      home        away  hgoal  agoal result season
date     league                                                   
20/03/16 D1       Augsburg    Dortmund      1      3      A  15-16
         D1      Stuttgart  Leverkusen      0      2      A  15-16
('20/03/16', 'I1')
                      home        away  hgoal  agoal result season
date     league                                                   
20/03/16 I1       Atalanta     Bologna      2      0      H  15-16
         I1      Frosinone  Fiorentina      0      0      D  15-16
         I1          Milan       Lazio      1      1      D  15-16
         I1         Napoli       Genoa      3      1      H  15-16
         I1      Sampdoria      Chievo      0      1      A  15-16
         I1       Sassuolo     Udinese      1      1      D  15-16
         I1         Torino    Juventus      1      4      A  15-16
         I1         Verona       Carpi      1      2      A  15-16
('20/03/16', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
20/03/16 SP1         Espanol  Ath Bilbao      2      1      H  15-16
         SP1     Real Madrid     Sevilla      4      0      H  15-16
         SP1        Valencia       Celta      0      2      A  15-16
         SP1      Villarreal   Barcelona      2      2      D  15-16
('20/03/16', 'T1')
                               home           away  hgoal  agoal result season
date     league                                                               
20/03/16 T1               Bursaspor      Kasimpasa      4      1      H  15-16
         T1               Konyaspor     Buyuksehyr      1      1      D  15-16
         T1      Mersin Idman Yurdu  Gaziantepspor      0      0      D  15-16
('20/04/12', 'D1')
                  home       away  hgoal  agoal result season
date     league                                              
20/04/12 D1      Mainz  Wolfsburg      0      0      D  11-12
('20/04/13', 'D1')
                          home                away  hgoal  agoal result season
date     league                                                               
20/04/13 D1           Dortmund               Mainz      2      0      H  12-13
         D1      Ein Frankfurt          Schalke 04      1      0      H  12-13
         D1            Hamburg  Fortuna Dusseldorf      2      1      H  12-13
         D1           Hannover       Bayern Munich      1      6      A  12-13
         D1         Leverkusen          Hoffenheim      5      0      H  12-13
         D1      Werder Bremen           Wolfsburg      0      3      A  12-13
('20/04/13', 'E2')
                               home              away  hgoal  agoal result  \
date     league                                                              
20/04/13 E2             Bournemouth          Carlisle      3      1      H   
         E2              Colchester        Shrewsbury      0      0      D   
         E2                Coventry     Leyton Orient      0      1      A   
         E2               Doncaster      Notts County      0      1      A   
         E2              Hartlepool         Brentford      1      1      D   
         E2      Milton Keynes Dons        Scunthorpe      0      1      A   
         E2                  Oldham      Crawley Town      2      1      H   
         E2              Portsmouth  Sheffield United      3      0      H   
         E2                 Preston          Tranmere      1      0      H   
         E2                 Swindon         Stevenage      3      0      H   
         E2                 Walsall              Bury      1      1      D   
         E2                  Yeovil             Crewe      1      0      H   

                season  
date     league         
20/04/13 E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
('20/04/13', 'I1')
                    home      away  hgoal  agoal result season
date     league                                               
20/04/13 I1        Genoa  Atalanta      1      1      D  12-13
         I1      Udinese     Lazio      1      0      H  12-13
('20/04/13', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
20/04/13 SP1       Barcelona     Levante      1      0      H  12-13
         SP1         Granada  Valladolid      1      1      D  12-13
         SP1     Real Madrid       Betis      3      1      H  12-13
         SP1        Valencia      Malaga      5      1      H  12-13
('20/04/13', 'T1')
                                 home                away  hgoal  agoal  \
date     league                                                           
20/04/13 T1      Akhisar Belediyespor            Besiktas      4      1   
         T1               Karabukspor  Mersin Idman Yurdu      1      0   
         T1                  Orduspor           Kasimpasa      0      2   

                result season  
date     league                
20/04/13 T1          H  12-13  
         T1          H  12-13  
         T1          A  12-13  
('20/04/14', 'D1')
                      home        away  hgoal  agoal result season
date     league                                                   
20/04/14 D1       Nurnberg  Leverkusen      1      4      A  13-14
         D1      Stuttgart  Schalke 04      3      1      H  13-14
('20/04/14', 'SP1')
                      home        away  hgoal  agoal result season
date     league                                                   
20/04/14 SP1       Almeria       Celta      2      4      A  13-14
         SP1     Barcelona  Ath Bilbao      2      1      H  13-14
         SP1       Sevilla     Granada      4      0      H  13-14
         SP1     Vallecano       Betis      3      1      H  13-14
('20/04/14', 'T1')
                     home        away  hgoal  agoal result season
date     league                                                  
20/04/14 T1      Besiktas  Fenerbahce      1      1      D  13-14
         T1      Rizespor   Konyaspor      3      1      H  13-14
('20/04/15', 'SP1')
                  home      away  hgoal  agoal result season
date     league                                             
20/04/15 SP1     Elche  Sociedad      1      0      H  14-15
('20/04/15', 'T1')
                               home                  away  hgoal  agoal  \
date     league                                                           
20/04/15 T1              Fenerbahce             Bursaspor      1      0   
         T1      Mersin Idman Yurdu  Akhisar Belediyespor      1      1   

                result season  
date     league                
20/04/15 T1          H  14-15  
         T1          D  14-15  
('20/04/16', 'I1')
                     home        away  hgoal  agoal result season
date     league                                                  
20/04/16 I1        Chievo   Frosinone      5      1      H  15-16
         I1        Empoli      Verona      1      0      H  15-16
         I1         Genoa       Inter      1      0      H  15-16
         I1      Juventus       Lazio      3      0      H  15-16
         I1       Palermo    Atalanta      2      2      D  15-16
         I1          Roma      Torino      3      2      H  15-16
         I1      Sassuolo   Sampdoria      0      0      D  15-16
         I1       Udinese  Fiorentina      2      1      H  15-16
('20/04/16', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
20/04/16 SP1      Ath Bilbao  Ath Madrid      0      1      A  15-16
         SP1       La Coruna   Barcelona      0      8      A  15-16
         SP1          Malaga   Vallecano      1      1      D  15-16
         SP1     Real Madrid  Villarreal      3      0      H  15-16
         SP1        Sp Gijon     Sevilla      2      1      H  15-16
         SP1        Valencia       Eibar      4      0      H  15-16
('20/05/13', 'SP1')
                     home   away  hgoal  agoal result season
date     league                                             
20/05/13 SP1     Mallorca  Betis      1      0      H  12-13
('20/08/11', 'D1')
                          home            away  hgoal  agoal result season
date     league                                                           
20/08/11 D1           Augsburg      Hoffenheim      0      2      A  11-12
         D1      Bayern Munich         Hamburg      5      0      H  11-12
         D1           Dortmund        Nurnberg      2      0      H  11-12
         D1            FC Koln  Kaiserslautern      1      1      D  11-12
         D1          Stuttgart      Leverkusen      0      1      A  11-12
         D1      Werder Bremen        Freiburg      5      3      H  11-12
('20/08/11', 'E2')
                               home              away  hgoal  agoal result  \
date     league                                                              
20/08/11 E2               Brentford     Leyton Orient      5      0      H   
         E2                Carlisle       Bournemouth      2      1      H   
         E2                Charlton        Scunthorpe      2      2      D   
         E2            Huddersfield        Colchester      3      2      H   
         E2      Milton Keynes Dons      Chesterfield      6      2      H   
         E2                  Oldham          Rochdale      2      0      H   
         E2                 Preston            Exeter      1      0      H   
         E2          Sheffield Weds      Notts County      2      1      H   
         E2               Stevenage        Hartlepool      2      2      D   
         E2                Tranmere  Sheffield United      1      1      D   
         E2                 Walsall            Yeovil      1      1      D   
         E2                 Wycombe              Bury      0      2      A   

                season  
date     league         
20/08/11 E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
('20/08/12', 'SP1')
                      home        away  hgoal  agoal result season
date     league                                                   
20/08/12 SP1     La Coruna     Osasuna      2      0      H  12-13
         SP1     Vallecano     Granada      1      0      H  12-13
         SP1      Zaragoza  Valladolid      0      1      A  12-13
('20/08/12', 'T1')
                           home         away  hgoal  agoal result season
date     league                                                         
20/08/12 T1         Galatasaray    Kasimpasa      2      1      H  12-13
         T1      Genclerbirligi  Antalyaspor      3      1      H  12-13
('20/09/11', 'I1')
                   home   away  hgoal  agoal result season
date     league                                           
20/09/11 I1      Novara  Inter      3      1      H  11-12
('20/09/11', 'SP1')
                       home      away  hgoal  agoal result season
date     league                                                  
20/09/11 SP1        Osasuna   Sevilla      0      0      D  11-12
         SP1       Sociedad   Granada      1      0      H  11-12
         SP1     Villarreal  Mallorca      2      0      H  11-12
('20/09/11', 'T1')
                          home         away  hgoal  agoal result season
date     league                                                        
20/09/11 T1         Buyuksehyr     Orduspor      1      1      D  11-12
         T1         Fenerbahce   Manisaspor      1      1      D  11-12
         T1      Gaziantepspor  Kayserispor      1      2      A  11-12
('20/09/13', 'D1')
                       home          away  hgoal  agoal result season
date     league                                                      
20/09/13 D1      M'gladbach  Braunschweig      4      1      H  13-14
('20/09/13', 'SP1')
                    home   away  hgoal  agoal result season
date     league                                            
20/09/13 SP1     Osasuna  Elche      2      1      H  13-14
('20/09/13', 'T1')
                                 home           away  hgoal  agoal result  \
date     league                                                             
20/09/13 T1      Akhisar Belediyespor  Gaziantepspor      2      0      H   
         T1               Karabukspor    Erciyesspor      0      0      D   

                season  
date     league         
20/09/13 T1      13-14  
         T1      13-14  
('20/09/14', 'D1')
                       home           away  hgoal  agoal result season
date     league                                                       
20/09/14 D1        Augsburg  Werder Bremen      4      2      H  14-15
         D1         Hamburg  Bayern Munich      0      0      D  14-15
         D1           Mainz       Dortmund      2      0      H  14-15
         D1       Paderborn       Hannover      2      0      H  14-15
         D1      Schalke 04  Ein Frankfurt      2      2      D  14-15
         D1       Stuttgart     Hoffenheim      0      2      A  14-15
('20/09/14', 'E2')
                               home              away  hgoal  agoal result  \
date     league                                                              
20/09/14 E2              Colchester          Bradford      0      0      D   
         E2               Doncaster      Chesterfield      3      2      H   
         E2          Fleetwood Town      Bristol City      3      3      D   
         E2              Gillingham           Walsall      0      0      D   
         E2      Milton Keynes Dons             Crewe      6      1      H   
         E2            Notts County            Oldham      0      0      D   
         E2               Port Vale          Barnsley      2      1      H   
         E2                 Preston      Crawley Town      2      0      H   
         E2                Rochdale          Coventry      1      0      H   
         E2              Scunthorpe     Leyton Orient      1      2      A   
         E2                 Swindon  Sheffield United      5      2      H   
         E2                  Yeovil         Peterboro      1      0      H   

                season  
date     league         
20/09/14 E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
('20/09/14', 'I1')
                   home      away  hgoal  agoal result season
date     league                                              
20/09/14 I1      Cesena    Empoli      2      2      D  14-15
         I1       Milan  Juventus      0      1      A  14-15
('20/09/14', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
20/09/14 SP1     Ath Bilbao      Granada      0      1      A  14-15
         SP1     Ath Madrid        Celta      2      2      D  14-15
         SP1        Espanol       Malaga      2      2      D  14-15
         SP1      La Coruna  Real Madrid      2      8      A  14-15
('20/09/14', 'T1')
                               home                  away  hgoal  agoal  \
date     league                                                           
20/09/14 T1           Balikesirspor           Galatasaray      2      0   
         T1             Erciyesspor  Akhisar Belediyespor      1      2   
         T1      Mersin Idman Yurdu              Rizespor      2      0   

                result season  
date     league                
20/09/14 T1          H  14-15  
         T1          A  14-15  
         T1          H  14-15  
('20/09/15', 'D1')
                      home        away  hgoal  agoal result season
date     league                                                   
20/09/15 D1       Augsburg    Hannover      2      0      H  15-16
         D1       Dortmund  Leverkusen      3      0      H  15-16
         D1      Stuttgart  Schalke 04      0      1      A  15-16
('20/09/15', 'E2')
                     home              away  hgoal  agoal result season
date     league                                                        
20/09/15 E2      Bradford  Sheffield United      2      2      D  15-16
('20/09/15', 'I1')
                     home        away  hgoal  agoal result season
date     league                                                  
20/09/15 I1      Atalanta      Verona      1      1      D  15-16
         I1       Bologna   Frosinone      1      0      H  15-16
         I1         Carpi  Fiorentina      0      1      A  15-16
         I1        Chievo       Inter      0      1      A  15-16
         I1         Genoa    Juventus      0      2      A  15-16
         I1        Napoli       Lazio      5      0      H  15-16
         I1          Roma    Sassuolo      2      2      D  15-16
         I1        Torino   Sampdoria      2      0      H  15-16
('20/09/15', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
20/09/15 SP1      Barcelona     Levante      4      1      H  15-16
         SP1      La Coruna    Sp Gijon      2      3      A  15-16
         SP1     Las Palmas   Vallecano      0      1      A  15-16
         SP1        Sevilla       Celta      1      2      A  15-16
         SP1     Villarreal  Ath Bilbao      3      1      H  15-16
('20/09/15', 'T1')
                          home         away  hgoal  agoal result season
date     league                                                        
20/09/15 T1         Fenerbahce    Bursaspor      2      1      H  15-16
         T1      Gaziantepspor  Kayserispor      1      0      H  15-16
('20/10/12', 'D1')
                               home           away  hgoal  agoal result season
date     league                                                               
20/10/12 D1                Dortmund     Schalke 04      1      2      A  12-13
         D1           Ein Frankfurt       Hannover      3      1      H  12-13
         D1      Fortuna Dusseldorf  Bayern Munich      0      5      A  12-13
         D1              Leverkusen          Mainz      2      2      D  12-13
         D1           Werder Bremen     M'gladbach      4      0      H  12-13
         D1               Wolfsburg       Freiburg      0      2      A  12-13
('20/10/12', 'E2')
                               home              away  hgoal  agoal result  \
date     league                                                              
20/10/12 E2             Bournemouth          Tranmere      3      1      H   
         E2              Colchester          Carlisle      2      0      H   
         E2                Coventry      Notts County      1      2      A   
         E2               Doncaster         Brentford      2      1      H   
         E2              Hartlepool      Crawley Town      0      1      A   
         E2      Milton Keynes Dons         Stevenage      0      1      A   
         E2                  Oldham     Leyton Orient      2      0      H   
         E2              Portsmouth        Shrewsbury      2      1      H   
         E2                 Preston  Sheffield United      0      1      A   
         E2                 Swindon        Scunthorpe      1      1      D   
         E2                 Walsall             Crewe      2      2      D   
         E2                  Yeovil              Bury      2      1      H   

                season  
date     league         
20/10/12 E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
('20/10/12', 'I1')
                     home    away  hgoal  agoal result season
date     league                                              
20/10/12 I1      Juventus  Napoli      2      0      H  12-13
         I1         Lazio   Milan      3      2      H  12-13
('20/10/12', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
20/10/12 SP1       La Coruna   Barcelona      4      5      A  12-13
         SP1          Malaga  Valladolid      2      1      H  12-13
         SP1     Real Madrid       Celta      2      0      H  12-13
         SP1        Valencia  Ath Bilbao      3      2      H  12-13
('20/10/12', 'T1')
                        home        away  hgoal  agoal result season
date     league                                                     
20/10/12 T1      Antalyaspor   Sivasspor      4      2      H  12-13
         T1        Bursaspor  Fenerbahce      1      1      D  12-13
         T1         Orduspor  Elazigspor      2      2      D  12-13
('20/10/13', 'D1')
                     home       away  hgoal  agoal result season
date     league                                                 
20/10/13 D1      Augsburg  Wolfsburg      1      2      A  13-14
         D1       Hamburg  Stuttgart      3      3      D  13-14
('20/10/13', 'I1')
                       home       away  hgoal  agoal result season
date     league                                                   
20/10/13 I1        Atalanta      Lazio      2      1      H  13-14
         I1      Fiorentina   Juventus      4      2      H  13-14
         I1           Genoa     Chievo      2      1      H  13-14
         I1         Livorno  Sampdoria      1      2      A  13-14
         I1        Sassuolo    Bologna      2      1      H  13-14
         I1          Torino      Inter      3      3      D  13-14
         I1          Verona      Parma      3      2      H  13-14
('20/10/13', 'SP1')
                       home       away  hgoal  agoal result season
date     league                                                   
20/10/13 SP1        Almeria  Vallecano      0      1      A  13-14
         SP1          Betis      Elche      1      2      A  13-14
         SP1        Granada     Getafe      0      2      A  13-14
         SP1     Valladolid    Sevilla      2      2      D  13-14
('20/10/13', 'T1')
                          home                  away  hgoal  agoal result  \
date     league                                                             
20/10/13 T1        Antalyaspor  Akhisar Belediyespor      1      0      H   
         T1        Erciyesspor            Fenerbahce      1      2      A   
         T1      Gaziantepspor             Konyaspor      3      3      D   
         T1        Trabzonspor             Sivasspor      0      0      D   

                season  
date     league         
20/10/13 T1      13-14  
         T1      13-14  
         T1      13-14  
         T1      13-14  
('20/10/14', 'I1')
                  home    away  hgoal  agoal result season
date     league                                           
20/10/14 I1      Genoa  Empoli      1      1      D  14-15
('20/10/14', 'SP1')
                     home    away  hgoal  agoal result season
date     league                                              
20/10/14 SP1     Sociedad  Getafe      1      2      A  14-15
('20/10/14', 'T1')
                           home           away  hgoal  agoal result season
date     league                                                           
20/10/14 T1      Genclerbirligi    Erciyesspor      0      0      D  14-15
         T1            Rizespor  Balikesirspor      2      2      D  14-15
('20/10/15', 'E2')
                             home            away  hgoal  agoal result season
date     league                                                              
20/10/15 E2              Barnsley         Walsall      0      2      A  15-16
         E2             Blackpool        Millwall      1      1      D  15-16
         E2              Bradford            Bury      2      1      H  15-16
         E2                Burton           Crewe      0      0      D  15-16
         E2          Chesterfield        Southend      3      0      H  15-16
         E2            Colchester       Port Vale      2      1      H  15-16
         E2            Gillingham      Scunthorpe      2      1      H  15-16
         E2             Peterboro           Wigan      2      3      A  15-16
         E2              Rochdale        Coventry      0      0      D  15-16
         E2      Sheffield United  Fleetwood Town      3      0      H  15-16
         E2            Shrewsbury       Doncaster      1      2      A  15-16
         E2               Swindon          Oldham      1      2      A  15-16
('20/11/11', 'D1')
                      home        away  hgoal  agoal result season
date     league                                                   
20/11/11 D1        Hamburg  Hoffenheim      2      0      H  11-12
         D1      Stuttgart    Augsburg      2      1      H  11-12
('20/11/11', 'I1')
                     home      away  hgoal  agoal result season
date     league                                                
20/11/11 I1       Bologna    Cesena      0      1      A  11-12
         I1       Catania    Chievo      1      2      A  11-12
         I1         Genoa    Novara      1      0      H  11-12
         I1      Juventus   Palermo      3      0      H  11-12
         I1         Parma   Udinese      2      0      H  11-12
         I1          Roma     Lecce      2      1      H  11-12
         I1         Siena  Atalanta      2      2      D  11-12
('20/11/11', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
20/11/11 SP1     Ath Madrid     Levante      3      2      H  11-12
         SP1        Osasuna   Vallecano      0      0      D  11-12
         SP1        Sevilla  Ath Bilbao      1      2      A  11-12
         SP1       Sociedad     Espanol      0      0      D  11-12
         SP1       Sp Gijon      Getafe      2      1      H  11-12
('20/11/11', 'T1')
                          home            away  hgoal  agoal result season
date     league                                                           
20/11/11 T1        Antalyaspor      Buyuksehyr      2      1      H  11-12
         T1           Besiktas     Galatasaray      0      0      D  11-12
         T1      Gaziantepspor      Manisaspor      1      1      D  11-12
         T1          Sivasspor  Genclerbirligi      1      1      D  11-12
('20/11/12', 'E2')
                             home                away  hgoal  agoal result  \
date     league                                                              
20/11/12 E2           Bournemouth           Stevenage      1      1      D   
         E2              Carlisle           Doncaster      1      3      A   
         E2            Colchester            Coventry      1      3      A   
         E2          Crawley Town              Yeovil      0      1      A   
         E2            Hartlepool              Oldham      1      2      A   
         E2            Portsmouth       Leyton Orient      2      3      A   
         E2               Preston        Notts County      0      0      D   
         E2            Scunthorpe                Bury      1      2      A   
         E2      Sheffield United               Crewe      3      3      D   
         E2            Shrewsbury  Milton Keynes Dons      2      2      D   
         E2               Swindon           Brentford      0      1      A   
         E2              Tranmere             Walsall      0      0      D   

                season  
date     league         
20/11/12 E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
('20/11/15', 'D1')
                    home      away  hgoal  agoal result season
date     league                                               
20/11/15 D1      Hamburg  Dortmund      3      1      H  15-16
('20/12/11', 'I1')
                     home        away  hgoal  agoal result season
date     league                                                  
20/12/11 I1      Cagliari       Milan      0      2      A  11-12
         I1         Siena  Fiorentina      0      0      D  11-12
('20/12/12', 'SP1')
                      home       away  hgoal  agoal result season
date     league                                                  
20/12/12 SP1       Espanol  La Coruna      2      0      H  12-13
         SP1      Sociedad    Sevilla      2      1      H  12-13
         SP1     Vallecano    Levante      3      0      H  12-13
('20/12/13', 'D1')
                          home      away  hgoal  agoal result season
date     league                                                     
20/12/13 D1      Ein Frankfurt  Augsburg      1      1      D  13-14
('20/12/13', 'E2')
                     home        away  hgoal  agoal result season
date     league                                                  
20/12/13 E2      Tranmere  Gillingham      1      2      A  13-14
('20/12/13', 'SP1')
                  home    away  hgoal  agoal result season
date     league                                           
20/12/13 SP1     Elche  Malaga      0      1      A  13-14
('20/12/13', 'T1')
                     home       away  hgoal  agoal result season
date     league                                                 
20/12/13 T1      Rizespor  Kasimpasa      0      0      D  13-14
('20/12/14', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
20/12/14 D1           Augsburg     M'gladbach      2      1      H  14-15
         D1         Leverkusen  Ein Frankfurt      1      1      D  14-15
         D1         Schalke 04        Hamburg      0      0      D  14-15
         D1          Stuttgart      Paderborn      0      0      D  14-15
         D1      Werder Bremen       Dortmund      2      1      H  14-15
         D1          Wolfsburg        FC Koln      2      1      H  14-15
('20/12/14', 'E2')
                               home            away  hgoal  agoal result  \
date     league                                                            
20/12/14 E2                Barnsley   Leyton Orient      2      0      H   
         E2                Bradford      Scunthorpe      1      1      D   
         E2                Coventry  Fleetwood Town      1      1      D   
         E2            Crawley Town       Port Vale      1      2      A   
         E2                   Crewe    Bristol City      1      0      H   
         E2              Gillingham    Chesterfield      2      3      A   
         E2      Milton Keynes Dons          Oldham      7      0      H   
         E2               Peterboro         Preston      0      1      A   
         E2                Rochdale    Notts County      2      2      D   
         E2        Sheffield United         Walsall      1      1      D   
         E2                 Swindon       Doncaster      0      1      A   
         E2                  Yeovil      Colchester      0      1      A   

                season  
date     league         
20/12/14 E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
('20/12/14', 'I1')
                     home    away  hgoal  agoal result season
date     league                                              
20/12/14 I1          Roma   Milan      0      0      D  14-15
         I1      Sassuolo  Cesena      1      1      D  14-15
('20/12/14', 'SP1')
                      home      away  hgoal  agoal result season
date     league                                                 
20/12/14 SP1     Barcelona   Cordoba      5      0      H  14-15
         SP1         Eibar  Valencia      0      1      A  14-15
         SP1       Levante  Sociedad      1      1      D  14-15
         SP1     Vallecano   Espanol      1      3      A  14-15
('20/12/14', 'T1')
                           home                away  hgoal  agoal result  \
date     league                                                            
20/12/14 T1       Eskisehirspor         Karabukspor      1      1      D   
         T1         Galatasaray  Mersin Idman Yurdu      3      2      H   
         T1      Genclerbirligi           Konyaspor      5      0      H   
         T1           Sivasspor          Buyuksehyr      0      2      A   

                season  
date     league         
20/12/14 T1      14-15  
         T1      14-15  
         T1      14-15  
         T1      14-15  
('20/12/15', 'D1')
                       home       away  hgoal  agoal result season
date     league                                                   
20/12/15 D1          Hertha      Mainz      2      0      H  15-16
         D1      M'gladbach  Darmstadt      3      2      H  15-16
('20/12/15', 'E2')
                    home       away  hgoal  agoal result season
date     league                                                
20/12/15 E2      Walsall  Port Vale      2      0      H  15-16
('20/12/15', 'I1')
                       home      away  hgoal  agoal result season
date     league                                                  
20/12/15 I1        Atalanta    Napoli      1      3      A  15-16
         I1           Carpi  Juventus      2      3      A  15-16
         I1      Fiorentina    Chievo      2      0      H  15-16
         I1       Frosinone     Milan      2      4      A  15-16
         I1           Inter     Lazio      1      2      A  15-16
         I1            Roma     Genoa      2      0      H  15-16
         I1       Sampdoria   Palermo      2      0      H  15-16
         I1          Torino   Udinese      0      1      A  15-16
         I1          Verona  Sassuolo      1      1      D  15-16
('20/12/15', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
20/12/15 SP1      Ath Bilbao     Levante      2      0      H  15-16
         SP1         Granada       Celta      0      2      A  15-16
         SP1          Malaga  Ath Madrid      1      0      H  15-16
         SP1     Real Madrid   Vallecano     10      2      H  15-16
         SP1        Sociedad  Villarreal      0      2      A  15-16
('20/12/15', 'T1')
                           home                  away  hgoal  agoal result  \
date     league                                                              
20/12/15 T1          Buyuksehyr         Eskisehirspor      2      1      H   
         T1         Galatasaray  Akhisar Belediyespor      3      2      H   
         T1      Genclerbirligi            Fenerbahce      0      1      A   
         T1           Sivasspor           Kayserispor      0      0      D   

                season  
date     league         
20/12/15 T1      15-16  
         T1      15-16  
         T1      15-16  
         T1      15-16  
('21/01/12', 'D1')
                           home           away  hgoal  agoal result season
date     league                                                           
21/01/12 D1            Freiburg       Augsburg      1      0      H  11-12
         D1          Hoffenheim       Hannover      0      0      D  11-12
         D1      Kaiserslautern  Werder Bremen      0      0      D  11-12
         D1            Nurnberg         Hertha      2      0      H  11-12
         D1          Schalke 04      Stuttgart      3      1      H  11-12
         D1           Wolfsburg        FC Koln      1      0      H  11-12
('21/01/12', 'E2')
                           home                away  hgoal  agoal result  \
date     league                                                            
21/01/12 E2        Huddersfield           Brentford      3      2      H   
         E2        Notts County  Milton Keynes Dons      1      1      D   
         E2              Oldham              Exeter      0      0      D   
         E2             Preston       Leyton Orient      0      2      A   
         E2          Scunthorpe           Stevenage      1      1      D   
         E2      Sheffield Weds          Hartlepool      2      2      D   
         E2             Wycombe            Rochdale      3      0      H   

                season  
date     league         
21/01/12 E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
('21/01/12', 'I1')
                     home      away  hgoal  agoal result season
date     league                                                
21/01/12 I1      Atalanta  Juventus      0      2      A  11-12
         I1          Roma    Cesena      5      1      H  11-12
('21/01/12', 'SP1')
                      home        away  hgoal  agoal result season
date     league                                                   
21/01/12 SP1         Betis     Sevilla      1      1      D  11-12
         SP1       Espanol     Granada      3      0      H  11-12
         SP1     Santander      Getafe      1      2      A  11-12
         SP1      Sociedad  Ath Madrid      0      4      A  11-12
('21/01/12', 'T1')
                        home         away  hgoal  agoal result season
date     league                                                      
21/01/12 T1        Bursaspor    Sivasspor      1      2      A  11-12
         T1       Buyuksehyr   Manisaspor      3      2      H  11-12
         T1       Fenerbahce  Kayserispor      4      0      H  11-12
         T1      Karabukspor  Trabzonspor      2      1      H  11-12
         T1       Samsunspor     Orduspor      2      0      H  11-12
('21/01/13', 'SP1')
                  home        away  hgoal  agoal result season
date     league                                               
21/01/13 SP1     Betis  Ath Bilbao      1      1      D  12-13
('21/01/13', 'T1')
                                 home                away  hgoal  agoal  \
date     league                                                           
21/01/13 T1      Akhisar Belediyespor       Eskisehirspor      1      1   
         T1                  Orduspor  Mersin Idman Yurdu      1      1   

                result season  
date     league                
21/01/13 T1          D  12-13  
         T1          D  12-13  
('21/01/14', 'E2')
                      home                away  hgoal  agoal result season
date     league                                                           
21/01/14 E2          Crewe  Milton Keynes Dons      2      0      H  13-14
         E2      Peterboro        Notts County      4      3      H  13-14
('21/02/12', 'E2')
                               home      away  hgoal  agoal result season
date     league                                                          
21/02/12 E2                Charlton  Rochdale      1      1      D  11-12
         E2      Milton Keynes Dons      Bury      2      1      H  11-12
         E2              Scunthorpe   Walsall      0      1      A  11-12
('21/02/12', 'I1')
                    home        away  hgoal  agoal result season
date     league                                                 
21/02/12 I1      Bologna  Fiorentina      2      0      H  11-12
('21/02/14', 'D1')
                       home   away  hgoal  agoal result season
date     league                                               
21/02/14 D1      Schalke 04  Mainz      0      0      D  13-14
('21/02/14', 'SP1')
                       home     away  hgoal  agoal result season
date     league                                                 
21/02/14 SP1     Valladolid  Levante      1      1      D  13-14
('21/02/14', 'T1')
                      home      away  hgoal  agoal result season
date     league                                                 
21/02/14 T1      Bursaspor  Rizespor      2      0      H  13-14
('21/02/15', 'D1')
                       home           away  hgoal  agoal result season
date     league                                                       
21/02/15 D1        Augsburg     Leverkusen      2      2      D  14-15
         D1         FC Koln       Hannover      1      1      D  14-15
         D1        Freiburg     Hoffenheim      1      1      D  14-15
         D1           Mainz  Ein Frankfurt      3      1      H  14-15
         D1       Paderborn  Bayern Munich      0      6      A  14-15
         D1      Schalke 04  Werder Bremen      1      1      D  14-15
('21/02/15', 'E2')
                               home          away  hgoal  agoal result season
date     league                                                              
21/02/15 E2                Barnsley         Crewe      2      0      H  14-15
         E2                Bradford       Walsall      1      1      D  14-15
         E2              Colchester  Bristol City      3      2      H  14-15
         E2          Fleetwood Town  Notts County      2      1      H  14-15
         E2           Leyton Orient        Oldham      3      0      H  14-15
         E2      Milton Keynes Dons     Peterboro      3      0      H  14-15
         E2               Port Vale     Doncaster      3      0      H  14-15
         E2                 Preston    Scunthorpe      2      0      H  14-15
         E2                Rochdale  Chesterfield      1      0      H  14-15
         E2        Sheffield United      Coventry      2      2      D  14-15
         E2                 Swindon  Crawley Town      1      2      A  14-15
         E2                  Yeovil    Gillingham      2      2      D  14-15
('21/02/15', 'SP1')
                       home      away  hgoal  agoal result season
date     league                                                  
21/02/15 SP1     Ath Madrid   Almeria      3      0      H  14-15
         SP1      Barcelona    Malaga      0      1      A  14-15
         SP1        Cordoba  Valencia      1      2      A  14-15
         SP1      La Coruna     Celta      0      2      A  14-15
('21/02/15', 'T1')
                       home           away  hgoal  agoal result season
date     league                                                       
21/02/15 T1       Bursaspor       Rizespor      1      1      D  14-15
         T1      Buyuksehyr  Gaziantepspor      1      0      H  14-15
         T1       Sivasspor    Galatasaray      2      3      A  14-15
('21/02/16', 'D1')
                       home       away  hgoal  agoal result season
date     league                                                   
21/02/16 D1        Hannover   Augsburg      0      1      A  15-16
         D1      Leverkusen   Dortmund      0      1      A  15-16
         D1      Schalke 04  Stuttgart      1      1      D  15-16
('21/02/16', 'I1')
                      home        away  hgoal  agoal result season
date     league                                                   
21/02/16 I1       Atalanta  Fiorentina      2      3      A  15-16
         I1      Frosinone       Lazio      0      0      D  15-16
         I1          Genoa     Udinese      2      1      H  15-16
         I1           Roma     Palermo      5      0      H  15-16
         I1       Sassuolo      Empoli      3      2      H  15-16
         I1         Torino       Carpi      0      0      D  15-16
('21/02/16', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
21/02/16 SP1     Ath Bilbao     Sociedad      0      1      A  15-16
         SP1     Ath Madrid   Villarreal      0      0      D  15-16
         SP1        Granada     Valencia      1      2      A  15-16
         SP1         Malaga  Real Madrid      1      1      D  15-16
         SP1      Vallecano      Sevilla      2      2      D  15-16
('21/02/16', 'T1')
                                 home                away  hgoal  agoal  \
date     league                                                           
21/02/16 T1      Akhisar Belediyespor          Buyuksehyr      0      0   
         T1               Galatasaray         Trabzonspor      2      1   
         T1               Kayserispor       Gaziantepspor      2      2   
         T1               Osmanlispor  Mersin Idman Yurdu      3      1   

                result season  
date     league                
21/02/16 T1          D  15-16  
         T1          H  15-16  
         T1          D  15-16  
         T1          H  15-16  
('21/03/12', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
21/03/12 SP1     Ath Madrid   Ath Bilbao      2      1      H  11-12
         SP1       Sociedad      Levante      1      3      A  11-12
         SP1       Sp Gijon     Mallorca      2      3      A  11-12
         SP1       Valencia     Zaragoza      1      2      A  11-12
         SP1     Villarreal  Real Madrid      1      1      D  11-12
('21/03/14', 'D1')
                     home           away  hgoal  agoal result season
date     league                                                     
21/03/14 D1      Freiburg  Werder Bremen      3      1      H  13-14
('21/03/14', 'SP1')
                  home    away  hgoal  agoal result season
date     league                                           
21/03/14 SP1     Celta  Malaga      0      2      A  13-14
('21/03/14', 'T1')
                        home       away  hgoal  agoal result season
date     league                                                    
21/03/14 T1      Trabzonspor  Kasimpasa      0      0      D  13-14
('21/03/15', 'D1')
                       home           away  hgoal  agoal result season
date     league                                                       
21/03/15 D1         FC Koln  Werder Bremen      1      1      D  14-15
         D1        Freiburg       Augsburg      2      0      H  14-15
         D1        Hannover       Dortmund      2      3      A  14-15
         D1       Paderborn     Hoffenheim      0      0      D  14-15
         D1      Schalke 04     Leverkusen      0      1      A  14-15
         D1       Stuttgart  Ein Frankfurt      3      1      H  14-15
('21/03/15', 'E2')
                               home            away  hgoal  agoal result  \
date     league                                                            
21/03/15 E2                Barnsley         Preston      1      1      D   
         E2                Bradford  Fleetwood Town      2      2      D   
         E2                Coventry       Doncaster      1      3      A   
         E2            Crawley Town   Leyton Orient      1      0      H   
         E2                   Crewe          Oldham      0      1      A   
         E2              Gillingham      Colchester      2      2      D   
         E2      Milton Keynes Dons    Notts County      4      1      H   
         E2               Peterboro    Chesterfield      1      0      H   
         E2                Rochdale      Scunthorpe      3      1      H   
         E2        Sheffield United       Port Vale      1      0      H   

                season  
date     league         
21/03/15 E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
('21/03/15', 'I1')
                   home      away  hgoal  agoal result season
date     league                                              
21/03/15 I1      Chievo   Palermo      1      0      H  14-15
         I1       Milan  Cagliari      3      1      H  14-15
('21/03/15', 'SP1')
                       home     away  hgoal  agoal result season
date     league                                                 
21/03/15 SP1     Ath Bilbao  Almeria      2      1      H  14-15
         SP1     Ath Madrid   Getafe      2      0      H  14-15
         SP1        Granada    Eibar      0      0      D  14-15
         SP1        Levante    Celta      0      1      A  14-15
         SP1      Vallecano   Malaga      1      0      H  14-15
('21/03/15', 'T1')
                               home           away  hgoal  agoal result season
date     league                                                               
21/03/15 T1             Erciyesspor       Rizespor      0      3      A  14-15
         T1               Kasimpasa    Galatasaray      2      3      A  14-15
         T1      Mersin Idman Yurdu  Gaziantepspor      0      1      A  14-15
         T1               Sivasspor      Bursaspor      4      1      H  14-15
('21/04/12', 'D1')
                          home            away  hgoal  agoal result season
date     league                                                           
21/04/12 D1           Dortmund      M'gladbach      2      0      H  11-12
         D1            FC Koln       Stuttgart      1      1      D  11-12
         D1             Hertha  Kaiserslautern      1      2      A  11-12
         D1         Hoffenheim      Leverkusen      0      1      A  11-12
         D1           Nurnberg         Hamburg      1      1      D  11-12
         D1      Werder Bremen   Bayern Munich      1      2      A  11-12
('21/04/12', 'E2')
                               home              away  hgoal  agoal result  \
date     league                                                              
21/04/12 E2             Bournemouth        Colchester      1      1      D   
         E2                Charlton           Wycombe      2      1      H   
         E2            Chesterfield          Rochdale      2      1      H   
         E2                  Exeter           Walsall      4      2      H   
         E2            Huddersfield        Scunthorpe      1      0      H   
         E2           Leyton Orient            Yeovil      2      2      D   
         E2      Milton Keynes Dons  Sheffield United      1      0      H   
         E2            Notts County              Bury      2      4      A   
         E2                  Oldham           Preston      1      1      D   
         E2          Sheffield Weds          Carlisle      2      1      H   
         E2               Stevenage         Brentford      2      1      H   
         E2                Tranmere        Hartlepool      1      1      D   

                season  
date     league         
21/04/12 E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
('21/04/12', 'I1')
                    home      away  hgoal  agoal result season
date     league                                               
21/04/12 I1      Catania  Atalanta      2      0      H  11-12
         I1       Chievo   Udinese      0      0      D  11-12
         I1       Napoli    Novara      2      0      H  11-12
         I1        Parma  Cagliari      3      0      H  11-12
('21/04/12', 'SP1')
                      home         away  hgoal  agoal result season
date     league                                                    
21/04/12 SP1     Barcelona  Real Madrid      1      2      A  11-12
         SP1      Mallorca     Zaragoza      1      0      H  11-12
         SP1       Sevilla      Levante      1      1      D  11-12
         SP1      Sp Gijon    Vallecano      2      1      H  11-12
('21/04/13', 'D1')
                      home            away  hgoal  agoal result season
date     league                                                       
21/04/13 D1       Nurnberg  Greuther Furth      0      1      A  12-13
         D1      Stuttgart        Freiburg      2      1      H  12-13
('21/04/13', 'I1')
                       home       away  hgoal  agoal result season
date     league                                                   
21/04/13 I1         Bologna  Sampdoria      1      1      D  12-13
         I1         Catania    Palermo      1      1      D  12-13
         I1      Fiorentina     Torino      4      3      H  12-13
         I1           Inter      Parma      1      0      H  12-13
         I1        Juventus      Milan      1      0      H  12-13
         I1          Napoli   Cagliari      3      2      H  12-13
         I1            Roma    Pescara      1      1      D  12-13
         I1           Siena     Chievo      0      1      A  12-13
('21/04/13', 'SP1')
                      home        away  hgoal  agoal result season
date     league                                                   
21/04/13 SP1        Getafe     Espanol      0      2      A  12-13
         SP1     La Coruna  Ath Bilbao      1      1      D  12-13
         SP1       Osasuna    Sociedad      0      0      D  12-13
         SP1       Sevilla  Ath Madrid      0      1      A  12-13
('21/04/13', 'T1')
                           home           away  hgoal  agoal result season
date     league                                                           
21/04/13 T1         Antalyaspor      Bursaspor      0      1      A  12-13
         T1          Buyuksehyr  Gaziantepspor      1      3      A  12-13
         T1      Genclerbirligi     Fenerbahce      2      0      H  12-13
         T1         Kayserispor      Sivasspor      1      1      D  12-13
('21/04/14', 'E2')
                               home              away  hgoal  agoal result  \
date     league                                                              
21/04/14 E2                   Crewe        Colchester      0      0      D   
         E2           Leyton Orient            Wolves      1      3      A   
         E2      Milton Keynes Dons         Brentford      2      2      D   
         E2            Notts County      Crawley Town      1      0      H   
         E2                  Oldham          Coventry      0      0      D   
         E2               Peterboro          Carlisle      4      1      H   
         E2                 Preston        Shrewsbury      5      2      H   
         E2               Rotherham         Port Vale      1      0      H   
         E2               Stevenage      Bristol City      1      3      A   
         E2                 Swindon          Bradford      1      0      H   
         E2                Tranmere  Sheffield United      0      0      D   
         E2                 Walsall        Gillingham      1      1      D   

                season  
date     league         
21/04/14 E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
('21/04/14', 'SP1')
                   home        away  hgoal  agoal result season
date     league                                                
21/04/14 SP1     Malaga  Villarreal      2      0      H  13-14
('21/04/14', 'T1')
                        home           away  hgoal  agoal result season
date     league                                                        
21/04/14 T1      Antalyaspor      Sivasspor      1      2      A  13-14
         T1      Karabukspor  Eskisehirspor      0      0      D  13-14
('21/04/15', 'E2')
                               home           away  hgoal  agoal result season
date     league                                                               
21/04/15 E2      Milton Keynes Dons      Doncaster      3      0      H  14-15
         E2            Notts County        Preston      1      3      A  14-15
         E2                Rochdale  Leyton Orient      1      0      H  14-15
         E2              Scunthorpe       Bradford      1      1      D  14-15
         E2                 Swindon        Walsall      3      3      D  14-15
('21/04/16', 'I1')
                  home   away  hgoal  agoal result season
date     league                                          
21/04/16 I1      Milan  Carpi      0      0      D  15-16
('21/04/16', 'SP1')
                     home     away  hgoal  agoal result season
date     league                                               
21/04/16 SP1      Granada  Levante      5      1      H  15-16
         SP1     Sociedad   Getafe      1      2      A  15-16
('21/08/11', 'D1')
                     home        away  hgoal  agoal result season
date     league                                                  
21/08/11 D1      Hannover      Hertha      1      1      D  11-12
         D1         Mainz  Schalke 04      2      4      A  11-12
('21/08/12', 'E2')
                          home                away  hgoal  agoal result season
date     league                                                               
21/08/12 E2        Bournemouth  Milton Keynes Dons      1      1      D  12-13
         E2          Brentford              Yeovil      1      3      A  12-13
         E2           Carlisle            Tranmere      0      3      A  12-13
         E2         Colchester          Portsmouth      2      2      D  12-13
         E2           Coventry    Sheffield United      1      1      D  12-13
         E2          Doncaster                Bury      2      1      H  12-13
         E2      Leyton Orient           Stevenage      0      1      A  12-13
         E2       Notts County          Hartlepool      2      0      H  12-13
         E2             Oldham             Walsall      1      1      D  12-13
         E2         Scunthorpe               Crewe      1      2      A  12-13
         E2         Shrewsbury             Preston      1      0      H  12-13
         E2            Swindon        Crawley Town      3      0      H  12-13
('21/08/15', 'D1')
                   home           away  hgoal  agoal result season
date     league                                                   
21/08/15 D1      Hertha  Werder Bremen      1      1      D  15-16
('21/08/15', 'SP1')
                   home     away  hgoal  agoal result season
date     league                                             
21/08/15 SP1     Malaga  Sevilla      0      0      D  15-16
('21/08/15', 'T1')
                      home        away  hgoal  agoal result season
date     league                                                   
21/08/15 T1      Kasimpasa  Buyuksehyr      1      0      H  15-16
('21/09/11', 'I1')
                       home      away  hgoal  agoal result season
date     league                                                  
21/09/11 I1          Cesena     Lazio      1      2      A  11-12
         I1          Chievo    Napoli      1      0      H  11-12
         I1      Fiorentina     Parma      3      0      H  11-12
         I1           Genoa   Catania      3      0      H  11-12
         I1        Juventus   Bologna      1      1      D  11-12
         I1           Lecce  Atalanta      1      2      A  11-12
         I1           Milan   Udinese      1      1      D  11-12
         I1         Palermo  Cagliari      3      2      H  11-12
('21/09/11', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
21/09/11 SP1     Ath Madrid     Sp Gijon      4      0      H  11-12
         SP1         Malaga   Ath Bilbao      1      0      H  11-12
         SP1      Santander  Real Madrid      0      0      D  11-12
         SP1       Valencia    Barcelona      2      2      D  11-12
         SP1      Vallecano      Levante      1      2      A  11-12
('21/09/11', 'T1')
                          home                away  hgoal  agoal result season
date     league                                                               
21/09/11 T1        Antalyaspor  Mersin Idman Yurdu      1      2      A  11-12
         T1      Eskisehirspor      Genclerbirligi      0      0      D  11-12
         T1        Karabukspor         Galatasaray      1      1      D  11-12
         T1         Samsunspor         Trabzonspor      1      1      D  11-12
('21/09/12', 'D1')
                     home           away  hgoal  agoal result season
date     league                                                     
21/09/12 D1      Nurnberg  Ein Frankfurt      1      2      A  12-13
('21/09/12', 'T1')
                        home         away  hgoal  agoal result season
date     league                                                      
21/09/12 T1      Karabukspor  Antalyaspor      1      0      H  12-13
('21/09/13', 'D1')
                       home           away  hgoal  agoal result season
date     league                                                       
21/09/13 D1         Hamburg  Werder Bremen      0      2      A  13-14
         D1        Hannover       Augsburg      2      1      H  13-14
         D1           Mainz     Leverkusen      1      4      A  13-14
         D1        Nurnberg       Dortmund      1      1      D  13-14
         D1      Schalke 04  Bayern Munich      0      4      A  13-14
         D1       Wolfsburg     Hoffenheim      2      1      H  13-14
('21/09/13', 'E2')
                             home                away  hgoal  agoal result  \
date     league                                                              
21/09/13 E2            Colchester        Crawley Town      1      1      D   
         E2            Gillingham            Bradford      0      1      A   
         E2          Notts County            Tranmere      2      0      H   
         E2                Oldham               Crewe      1      1      D   
         E2             Peterboro  Milton Keynes Dons      2      1      H   
         E2             Port Vale            Coventry      3      2      H   
         E2      Sheffield United             Preston      0      1      A   
         E2            Shrewsbury              Wolves      0      1      A   
         E2             Stevenage            Carlisle      1      3      A   
         E2               Swindon        Bristol City      3      2      H   
         E2               Walsall           Rotherham      1      1      D   

                season  
date     league         
21/09/13 E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
('21/09/13', 'I1')
                     home       away  hgoal  agoal result season
date     league                                                 
21/09/13 I1      Cagliari  Sampdoria      2      2      D  13-14
         I1        Chievo    Udinese      2      1      H  13-14
         I1         Genoa    Livorno      0      0      D  13-14
('21/09/13', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
21/09/13 SP1        Almeria     Levante      2      2      D  13-14
         SP1       Sociedad      Malaga      0      0      D  13-14
         SP1     Valladolid  Ath Madrid      0      2      A  13-14
         SP1      Vallecano   Barcelona      0      4      A  13-14
('21/09/13', 'T1')
                          home            away  hgoal  agoal result season
date     league                                                           
21/09/13 T1      Eskisehirspor     Antalyaspor      2      1      H  13-14
         T1         Fenerbahce      Elazigspor      4      0      H  13-14
         T1          Konyaspor  Genclerbirligi      1      0      H  13-14
         T1          Sivasspor       Kasimpasa      1      2      A  13-14
('21/09/14', 'D1')
                      home        away  hgoal  agoal result season
date     league                                                   
21/09/14 D1        FC Koln  M'gladbach      0      0      D  14-15
         D1      Wolfsburg  Leverkusen      4      1      H  14-15
('21/09/14', 'I1')
                     home        away  hgoal  agoal result season
date     league                                                  
21/09/14 I1      Atalanta  Fiorentina      0      1      A  14-15
         I1        Chievo       Parma      2      3      A  14-15
         I1         Genoa       Lazio      1      0      H  14-15
         I1       Palermo       Inter      1      1      D  14-15
         I1          Roma    Cagliari      2      0      H  14-15
         I1      Sassuolo   Sampdoria      0      0      D  14-15
         I1        Torino      Verona      0      1      A  14-15
         I1       Udinese      Napoli      1      0      H  14-15
('21/09/14', 'SP1')
                       home       away  hgoal  agoal result season
date     league                                                   
21/09/14 SP1        Cordoba    Sevilla      1      3      A  14-15
         SP1        Levante  Barcelona      0      5      A  14-15
         SP1       Sociedad    Almeria      1      2      A  14-15
         SP1     Villarreal  Vallecano      4      2      H  14-15
('21/09/14', 'T1')
                       home           away  hgoal  agoal result season
date     league                                                       
21/09/14 T1      Fenerbahce  Gaziantepspor      1      0      H  14-15
         T1       Kasimpasa    Karabukspor      2      1      H  14-15
         T1       Sivasspor      Konyaspor      0      0      D  14-15
('21/09/15', 'T1')
                           home      away  hgoal  agoal result season
date     league                                                      
21/09/15 T1      Genclerbirligi  Besiktas      1      1      D  15-16
('21/10/11', 'D1')
                     home           away  hgoal  agoal result season
date     league                                                     
21/10/11 D1      Augsburg  Werder Bremen      1      1      D  11-12
('21/10/11', 'T1')
                        home         away  hgoal  agoal result season
date     league                                                      
21/10/11 T1      Antalyaspor  Galatasaray      0      0      D  11-12
('21/10/12', 'D1')
                     home       away  hgoal  agoal result season
date     league                                                 
21/10/12 D1       Hamburg  Stuttgart      0      1      A  12-13
         D1      Nurnberg   Augsburg      0      0      D  12-13
('21/10/12', 'I1')
                     home        away  hgoal  agoal result season
date     league                                                  
21/10/12 I1      Atalanta       Siena      2      1      H  12-13
         I1      Cagliari     Bologna      1      0      H  12-13
         I1        Chievo  Fiorentina      1      1      D  12-13
         I1         Genoa        Roma      2      4      A  12-13
         I1         Inter     Catania      2      0      H  12-13
         I1       Palermo      Torino      0      0      D  12-13
         I1         Parma   Sampdoria      2      1      H  12-13
         I1       Udinese     Pescara      1      0      H  12-13
('21/10/12', 'SP1')
                     home        away  hgoal  agoal result season
date     league                                                  
21/10/12 SP1      Espanol   Vallecano      3      2      H  12-13
         SP1       Getafe     Levante      0      1      A  12-13
         SP1      Granada    Zaragoza      1      2      A  12-13
         SP1      Osasuna       Betis      0      0      D  12-13
         SP1     Sociedad  Ath Madrid      0      1      A  12-13
('21/10/12', 'T1')
                                 home                away  hgoal  agoal  \
date     league                                                           
21/10/12 T1      Akhisar Belediyespor       Gaziantepspor      0      0   
         T1                  Besiktas         Trabzonspor      1      1   
         T1             Eskisehirspor         Karabukspor      5      2   
         T1                 Kasimpasa  Mersin Idman Yurdu      2      2   

                result season  
date     league                
21/10/12 T1          D  12-13  
         T1          D  12-13  
         T1          H  12-13  
         T1          D  12-13  
('21/10/13', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
21/10/13 SP1     Ath Bilbao  Villarreal      2      0      H  13-14
         SP1          Celta     Levante      0      1      A  13-14
('21/10/13', 'T1')
                      home         away  hgoal  agoal result season
date     league                                                    
21/10/13 T1       Besiktas     Rizespor      0      0      D  13-14
         T1      Bursaspor  Kayserispor      2      0      H  13-14
('21/10/14', 'E2')
                               home            away  hgoal  agoal result  \
date     league                                                            
21/10/14 E2                Barnsley    Notts County      2      3      A   
         E2            Bristol City        Bradford      2      2      D   
         E2              Colchester    Chesterfield      2      1      H   
         E2            Crawley Town         Walsall      1      0      H   
         E2                   Crewe       Peterboro      1      0      H   
         E2               Doncaster   Leyton Orient      0      2      A   
         E2              Gillingham         Preston      0      1      A   
         E2      Milton Keynes Dons  Fleetwood Town      2      1      H   
         E2                  Oldham        Coventry      4      1      H   
         E2               Port Vale      Scunthorpe      2      2      D   
         E2        Sheffield United          Yeovil      2      0      H   
         E2                 Swindon        Rochdale      2      3      A   

                season  
date     league         
21/10/14 E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
('21/11/11', 'SP1')
                      home    away  hgoal  agoal result season
date     league                                               
21/11/11 SP1     Santander  Malaga      1      3      A  11-12
('21/11/11', 'T1')
                      home        away  hgoal  agoal result season
date     league                                                   
21/11/11 T1      Bursaspor  Samsunspor      1      0      H  11-12
('21/11/14', 'SP1')
                       home     away  hgoal  agoal result season
date     league                                                 
21/11/14 SP1     Ath Bilbao  Espanol      3      1      H  14-15
('21/11/15', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
21/11/15 D1      Ein Frankfurt     Leverkusen      1      3      A  15-16
         D1            FC Koln          Mainz      0      0      D  15-16
         D1         M'gladbach       Hannover      2      1      H  15-16
         D1         Schalke 04  Bayern Munich      1      3      A  15-16
         D1          Stuttgart       Augsburg      0      4      A  15-16
         D1          Wolfsburg  Werder Bremen      6      0      H  15-16
('21/11/15', 'E2')
                           home              away  hgoal  agoal result season
date     league                                                              
21/11/15 E2                Bury            Burton      1      0      H  15-16
         E2            Coventry        Gillingham      4      1      H  15-16
         E2               Crewe         Peterboro      1      5      A  15-16
         E2           Doncaster          Rochdale      0      2      A  15-16
         E2      Fleetwood Town           Swindon      5      1      H  15-16
         E2            Millwall        Colchester      4      1      H  15-16
         E2              Oldham          Barnsley      1      2      A  15-16
         E2           Port Vale      Chesterfield      3      2      H  15-16
         E2          Scunthorpe          Bradford      0      2      A  15-16
         E2            Southend         Blackpool      1      0      H  15-16
         E2             Walsall  Sheffield United      1      1      D  15-16
         E2               Wigan        Shrewsbury      1      0      H  15-16
('21/11/15', 'I1')
                     home   away  hgoal  agoal result season
date     league                                             
21/11/15 I1       Bologna   Roma      2      2      D  15-16
         I1      Juventus  Milan      1      0      H  15-16
('21/11/15', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
21/11/15 SP1         Espanol      Malaga      2      0      H  15-16
         SP1       La Coruna       Celta      2      0      H  15-16
         SP1     Real Madrid   Barcelona      0      4      A  15-16
         SP1        Sociedad     Sevilla      2      0      H  15-16
         SP1        Valencia  Las Palmas      1      1      D  15-16
('21/11/15', 'T1')
                                 home         away  hgoal  agoal result season
date     league                                                               
21/11/15 T1      Akhisar Belediyespor    Bursaspor      3      1      H  15-16
         T1               Galatasaray  Antalyaspor      3      3      D  15-16
         T1               Kayserispor    Kasimpasa      0      0      D  15-16
         T1        Mersin Idman Yurdu   Fenerbahce      1      3      A  15-16
('21/12/11', 'I1')
                     home      away  hgoal  agoal result season
date     league                                                
21/12/11 I1      Atalanta    Cesena      4      1      H  11-12
         I1       Bologna      Roma      0      2      A  11-12
         I1         Inter     Lecce      4      1      H  11-12
         I1         Lazio    Chievo      0      0      D  11-12
         I1        Napoli     Genoa      6      1      H  11-12
         I1        Novara   Palermo      2      2      D  11-12
         I1         Parma   Catania      3      3      D  11-12
         I1       Udinese  Juventus      0      0      D  11-12
('21/12/11', 'T1')
                               home           away  hgoal  agoal result season
date     league                                                               
21/12/11 T1             Antalyaspor     Fenerbahce      0      0      D  11-12
         T1             Galatasaray     Manisaspor      1      0      H  11-12
         T1             Kayserispor     Ankaragucu      3      0      H  11-12
         T1      Mersin Idman Yurdu  Eskisehirspor      0      0      D  11-12
         T1               Sivasspor     Samsunspor      3      2      H  11-12
('21/12/12', 'E2')
                    home        away  hgoal  agoal result season
date     league                                                 
21/12/12 E2         Bury  Shrewsbury      2      2      D  12-13
         E2      Swindon    Tranmere      5      0      H  12-13
('21/12/12', 'I1')
                     home      away  hgoal  agoal result season
date     league                                                
21/12/12 I1      Cagliari  Juventus      1      3      A  12-13
         I1       Pescara   Catania      2      1      H  12-13
('21/12/12', 'SP1')
                       home    away  hgoal  agoal result season
date     league                                                
21/12/12 SP1     Ath Madrid   Celta      1      0      H  12-13
         SP1       Valencia  Getafe      4      2      H  12-13
('21/12/12', 'T1')
                                 home         away  hgoal  agoal result season
date     league                                                               
21/12/12 T1      Akhisar Belediyespor     Orduspor      0      0      D  12-13
         T1                  Besiktas  Kayserispor      3      1      H  12-13
('21/12/13', 'D1')
                          home        away  hgoal  agoal result season
date     league                                                       
21/12/13 D1       Braunschweig  Hoffenheim      1      0      H  13-14
         D1           Dortmund      Hertha      1      2      A  13-14
         D1           Freiburg    Hannover      2      1      H  13-14
         D1            Hamburg       Mainz      2      3      A  13-14
         D1           Nurnberg  Schalke 04      0      0      D  13-14
         D1      Werder Bremen  Leverkusen      1      0      H  13-14
('21/12/13', 'E2')
                               home              away  hgoal  agoal result  \
date     league                                                              
21/12/13 E2                   Crewe        Shrewsbury      1      1      D   
         E2           Leyton Orient      Crawley Town      2      3      A   
         E2      Milton Keynes Dons         Port Vale      3      0      H   
         E2            Notts County      Bristol City      1      1      D   
         E2                  Oldham        Colchester      0      2      A   
         E2               Peterboro          Bradford      2      1      H   
         E2                 Preston         Brentford      0      3      A   
         E2               Rotherham            Wolves      3      3      D   
         E2               Stevenage  Sheffield United      0      0      D   
         E2                 Swindon          Coventry      2      1      H   
         E2                 Walsall          Carlisle      2      0      H   

                season  
date     league         
21/12/13 E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
('21/12/13', 'I1')
                     home     away  hgoal  agoal result season
date     league                                               
21/12/13 I1      Cagliari   Napoli      1      1      D  13-14
         I1       Livorno  Udinese      1      2      A  13-14
('21/12/13', 'SP1')
                       home      away  hgoal  agoal result season
date     league                                                  
21/12/13 SP1     Ath Madrid   Levante      3      2      H  13-14
         SP1          Betis   Almeria      0      1      A  13-14
         SP1        Granada  Sociedad      1      3      A  13-14
         SP1     Villarreal   Sevilla      1      2      A  13-14
('21/12/13', 'T1')
                     home        away  hgoal  agoal result season
date     league                                                  
21/12/13 T1      Besiktas  Elazigspor      4      1      H  13-14
('21/12/14', 'D1')
                     home        away  hgoal  agoal result season
date     league                                                  
21/12/14 D1      Freiburg    Hannover      2      2      D  14-15
         D1        Hertha  Hoffenheim      0      5      A  14-15
('21/12/14', 'I1')
                       home     away  hgoal  agoal result season
date     league                                                 
21/12/14 I1        Atalanta  Palermo      3      3      D  14-15
         I1      Fiorentina   Empoli      1      1      D  14-15
         I1           Inter    Lazio      2      2      D  14-15
         I1       Sampdoria  Udinese      2      2      D  14-15
         I1          Torino    Genoa      2      1      H  14-15
         I1          Verona   Chievo      0      1      A  14-15
('21/12/14', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
21/12/14 SP1     Ath Bilbao  Ath Madrid      1      4      A  14-15
         SP1          Elche      Malaga      1      2      A  14-15
         SP1        Granada      Getafe      1      1      D  14-15
         SP1     Villarreal   La Coruna      3      0      H  14-15
('21/12/14', 'T1')
                          home                  away  hgoal  agoal result  \
date     league                                                             
21/12/14 T1      Balikesirspor             Kasimpasa      5      3      H   
         T1           Besiktas  Akhisar Belediyespor      3      1      H   
         T1          Bursaspor           Trabzonspor      3      3      D   

                season  
date     league         
21/12/14 T1      14-15  
         T1      14-15  
         T1      14-15  
('21/12/15', 'T1')
                        home      away  hgoal  agoal result season
date     league                                                   
21/12/15 T1      Osmanlispor  Besiktas      2      3      A  15-16
('22/01/12', 'D1')
                       home      away  hgoal  agoal result season
date     league                                                  
22/01/12 D1         Hamburg  Dortmund      1      5      A  11-12
         D1      Leverkusen     Mainz      3      2      H  11-12
('22/01/12', 'I1')
                     home        away  hgoal  agoal result season
date     league                                                  
22/01/12 I1       Bologna       Parma      0      0      D  11-12
         I1      Cagliari  Fiorentina      0      0      D  11-12
         I1         Inter       Lazio      2      1      H  11-12
         I1         Lecce      Chievo      2      2      D  11-12
         I1        Novara       Milan      0      3      A  11-12
         I1       Palermo       Genoa      5      3      H  11-12
         I1         Siena      Napoli      1      1      D  11-12
         I1       Udinese     Catania      2      1      H  11-12
('22/01/12', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
22/01/12 SP1         Levante    Zaragoza      0      0      D  11-12
         SP1          Malaga   Barcelona      1      4      A  11-12
         SP1         Osasuna    Valencia      1      1      D  11-12
         SP1     Real Madrid  Ath Bilbao      4      1      H  11-12
         SP1       Vallecano    Mallorca      0      1      A  11-12
('22/01/12', 'T1')
                          home            away  hgoal  agoal result season
date     league                                                           
22/01/12 T1         Ankaragucu  Genclerbirligi      0      1      A  11-12
         T1      Eskisehirspor     Galatasaray      0      0      D  11-12
('22/01/13', 'E2')
                         home           away  hgoal  agoal result season
date     league                                                         
22/01/13 E2         Brentford  Leyton Orient      2      2      D  12-13
         E2        Hartlepool    Bournemouth      1      2      A  12-13
         E2      Notts County         Oldham      1      0      H  12-13
('22/01/16', 'D1')
                    home           away  hgoal  agoal result season
date     league                                                    
22/01/16 D1      Hamburg  Bayern Munich      1      2      A  15-16
('22/01/16', 'SP1')
                     home      away  hgoal  agoal result season
date     league                                                
22/01/16 SP1     Sp Gijon  Sociedad      5      1      H  15-16
('22/02/12', 'E2')
                         home       away  hgoal  agoal result season
date     league                                                     
22/02/12 E2      Notts County  Stevenage      1      0      H  11-12
('22/02/12', 'I1')
                  home     away  hgoal  agoal result season
date     league                                            
22/02/12 I1      Siena  Catania      0      1      A  11-12
('22/02/13', 'D1')
                     home           away  hgoal  agoal result season
date     league                                                     
22/02/13 D1      Freiburg  Ein Frankfurt      0      0      D  12-13
('22/02/13', 'E2')
                         home  away  hgoal  agoal result season
date     league                                                
22/02/13 E2      Notts County  Bury      4      1      H  12-13
('22/02/13', 'SP1')
                       home      away  hgoal  agoal result season
date     league                                                  
22/02/13 SP1     Ath Bilbao  Sociedad      1      3      A  12-13
('22/02/13', 'T1')
                          home       away  hgoal  agoal result season
date     league                                                      
22/02/13 T1      Gaziantepspor  Bursaspor      2      1      H  12-13
('22/02/14', 'D1')
                       home          away  hgoal  agoal result season
date     league                                                      
22/02/14 D1        Freiburg      Augsburg      2      4      A  13-14
         D1         Hamburg      Dortmund      3      0      H  13-14
         D1      M'gladbach    Hoffenheim      2      2      D  13-14
         D1        Nurnberg  Braunschweig      2      1      H  13-14
         D1       Stuttgart        Hertha      1      2      A  13-14
         D1       Wolfsburg    Leverkusen      3      1      H  13-14
('22/02/14', 'E2')
                             home                away  hgoal  agoal result  \
date     league                                                              
22/02/14 E2              Bradford  Milton Keynes Dons      1      0      H   
         E2             Brentford              Wolves      0      3      A   
         E2              Carlisle           Rotherham      1      2      A   
         E2            Colchester             Preston      1      2      A   
         E2         Leyton Orient             Swindon      2      0      H   
         E2          Notts County          Shrewsbury      2      3      A   
         E2                Oldham          Gillingham      1      0      H   
         E2             Port Vale               Crewe      1      3      A   
         E2      Sheffield United        Bristol City      3      0      H   
         E2             Stevenage           Peterboro      0      1      A   
         E2              Tranmere            Coventry      3      1      H   
         E2               Walsall        Crawley Town      1      2      A   

                season  
date     league         
22/02/14 E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
('22/02/14', 'I1')
                    home  away  hgoal  agoal result season
date     league                                           
22/02/14 I1      Bologna  Roma      0      1      A  13-14
('22/02/14', 'SP1')
                        home       away  hgoal  agoal result season
date     league                                                    
22/02/14 SP1         Almeria     Malaga      0      0      D  13-14
         SP1           Celta     Getafe      1      1      D  13-14
         SP1     Real Madrid      Elche      3      0      H  13-14
         SP1        Sociedad  Barcelona      3      1      H  13-14
('22/02/14', 'T1')
                          home                  away  hgoal  agoal result  \
date     league                                                             
22/02/14 T1        Erciyesspor           Karabukspor      2      1      H   
         T1        Galatasaray              Besiktas      1      0      H   
         T1      Gaziantepspor  Akhisar Belediyespor      1      1      D   

                season  
date     league         
22/02/14 T1      13-14  
         T1      13-14  
         T1      13-14  
('22/02/15', 'D1')
                      home        away  hgoal  agoal result season
date     league                                                   
22/02/15 D1        Hamburg  M'gladbach      1      1      D  14-15
         D1      Wolfsburg      Hertha      2      1      H  14-15
('22/02/15', 'I1')
                       home     away  hgoal  agoal result season
date     league                                                 
22/02/15 I1          Empoli   Chievo      3      0      H  14-15
         I1      Fiorentina   Torino      1      1      D  14-15
         I1           Lazio  Palermo      2      1      H  14-15
         I1           Milan   Cesena      2      0      H  14-15
         I1          Verona     Roma      1      1      D  14-15
('22/02/15', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
22/02/15 SP1     Ath Bilbao    Vallecano      1      0      H  14-15
         SP1          Elche  Real Madrid      0      2      A  14-15
         SP1       Sociedad      Sevilla      4      3      H  14-15
         SP1     Villarreal        Eibar      1      0      H  14-15
('22/02/15', 'T1')
                               home            away  hgoal  agoal result  \
date     league                                                            
22/02/15 T1           Balikesirspor  Genclerbirligi      0      1      A   
         T1           Eskisehirspor        Besiktas      1      0      H   
         T1               Kasimpasa     Trabzonspor      1      1      D   
         T1      Mersin Idman Yurdu     Karabukspor      2      1      H   

                season  
date     league         
22/02/15 T1      14-15  
         T1      14-15  
         T1      14-15  
         T1      14-15  
('22/02/16', 'E2')
                     home    away  hgoal  agoal result season
date     league                                              
22/02/16 E2      Southend  Burton      3      1      H  15-16
('22/02/16', 'I1')
                   home   away  hgoal  agoal result season
date     league                                           
22/02/16 I1      Napoli  Milan      1      1      D  15-16
('22/02/16', 'T1')
                     home            away  hgoal  agoal result season
date     league                                                      
22/02/16 T1      Besiktas  Genclerbirligi      1      0      H  15-16
('22/03/12', 'SP1')
                      home       away  hgoal  agoal result season
date     league                                                  
22/03/12 SP1         Betis    Espanol      1      1      D  11-12
         SP1        Malaga  Vallecano      4      2      H  11-12
         SP1     Santander    Sevilla      0      3      A  11-12
('22/03/14', 'D1')
                       home           away  hgoal  agoal result season
date     league                                                       
22/03/14 D1        Hannover       Dortmund      0      3      A  13-14
         D1           Mainz  Bayern Munich      0      2      A  13-14
         D1      M'gladbach         Hertha      3      0      H  13-14
         D1      Schalke 04   Braunschweig      3      1      H  13-14
         D1       Stuttgart        Hamburg      1      0      H  13-14
         D1       Wolfsburg       Augsburg      1      1      D  13-14
('22/03/14', 'E2')
                             home                away  hgoal  agoal result  \
date     league                                                              
22/03/14 E2             Brentford            Coventry      3      1      H   
         E2            Colchester        Bristol City      2      2      D   
         E2            Gillingham               Crewe      1      3      A   
         E2          Notts County            Carlisle      4      1      H   
         E2                Oldham        Crawley Town      1      0      H   
         E2             Peterboro           Rotherham      0      1      A   
         E2             Port Vale            Tranmere      3      2      H   
         E2      Sheffield United              Wolves      0      2      A   
         E2            Shrewsbury            Bradford      2      1      H   
         E2             Stevenage  Milton Keynes Dons      2      3      A   
         E2               Swindon             Preston      1      0      H   
         E2               Walsall       Leyton Orient      1      1      D   

                season  
date     league         
22/03/14 E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
('22/03/14', 'I1')
                   home     away  hgoal  agoal result season
date     league                                             
22/03/14 I1      Chievo     Roma      0      2      A  13-14
         I1      Torino  Livorno      3      1      H  13-14
('22/03/14', 'SP1')
                       home       away  hgoal  agoal result season
date     league                                                   
22/03/14 SP1     Ath Bilbao     Getafe      1      0      H  13-14
         SP1        Espanol    Levante      0      0      D  13-14
         SP1        Granada      Elche      1      0      H  13-14
         SP1     Valladolid  Vallecano      1      1      D  13-14
('22/03/14', 'T1')
                        home           away  hgoal  agoal result season
date     league                                                        
22/03/14 T1      Antalyaspor    Karabukspor      0      0      D  13-14
         T1        Bursaspor      Konyaspor      1      2      A  13-14
         T1      Galatasaray    Kayserispor      0      1      A  13-14
         T1         Rizespor  Eskisehirspor      0      0      D  13-14
('22/03/15', 'D1')
                          home        away  hgoal  agoal result season
date     league                                                       
22/03/15 D1      Bayern Munich  M'gladbach      0      2      A  14-15
         D1              Mainz   Wolfsburg      1      1      D  14-15
('22/03/15', 'I1')
                      home        away  hgoal  agoal result season
date     league                                                   
22/03/15 I1         Cesena        Roma      0      1      A  14-15
         I1         Empoli    Sassuolo      3      1      H  14-15
         I1       Juventus       Genoa      1      0      H  14-15
         I1          Lazio      Verona      2      0      H  14-15
         I1         Napoli    Atalanta      1      1      D  14-15
         I1          Parma      Torino      0      2      A  14-15
         I1      Sampdoria       Inter      1      0      H  14-15
         I1        Udinese  Fiorentina      2      2      D  14-15
('22/03/15', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
22/03/15 SP1      Barcelona  Real Madrid      2      1      H  14-15
         SP1      La Coruna      Espanol      0      0      D  14-15
         SP1       Sociedad      Cordoba      3      1      H  14-15
         SP1     Villarreal      Sevilla      0      2      A  14-15
('22/03/15', 'T1')
                        home                  away  hgoal  agoal result season
date     league                                                               
22/03/15 T1       Buyuksehyr        Genclerbirligi      3      1      H  14-15
         T1       Fenerbahce              Besiktas      1      0      H  14-15
         T1      Trabzonspor  Akhisar Belediyespor      2      0      H  14-15
('22/04/12', 'D1')
                     home        away  hgoal  agoal result season
date     league                                                  
22/04/12 D1      Augsburg  Schalke 04      1      1      D  11-12
         D1      Hannover    Freiburg      0      0      D  11-12
('22/04/12', 'I1')
                       home     away  hgoal  agoal result season
date     league                                                 
22/04/12 I1          Cesena  Palermo      2      2      D  11-12
         I1      Fiorentina    Inter      0      0      D  11-12
         I1           Genoa    Siena      1      4      A  11-12
         I1        Juventus     Roma      4      0      H  11-12
         I1           Lazio    Lecce      1      1      D  11-12
         I1           Milan  Bologna      1      1      D  11-12
('22/04/12', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
22/04/12 SP1     Ath Madrid     Espanol      3      1      H  11-12
         SP1        Granada      Getafe      1      0      H  11-12
         SP1      Santander  Ath Bilbao      0      1      A  11-12
         SP1       Sociedad  Villarreal      1      1      D  11-12
         SP1       Valencia       Betis      4      0      H  11-12
('22/04/13', 'SP1')
                  home      away  hgoal  agoal result season
date     league                                             
22/04/13 SP1     Celta  Zaragoza      2      1      H  12-13
('22/04/13', 'T1')
                          home         away  hgoal  agoal result season
date     league                                                        
22/04/13 T1      Eskisehirspor  Trabzonspor      0      1      A  12-13
('22/04/16', 'D1')
                    home           away  hgoal  agoal result season
date     league                                                    
22/04/16 D1      Hamburg  Werder Bremen      2      1      H  15-16
('22/04/16', 'SP1')
                       home     away  hgoal  agoal result season
date     league                                                 
22/04/16 SP1     Las Palmas  Espanol      4      0      H  15-16
('22/04/16', 'T1')
                        home       away  hgoal  agoal result season
date     league                                                    
22/04/16 T1      Kayserispor  Bursaspor      2      1      H  15-16
('22/05/15', 'T1')
                           home                away  hgoal  agoal result  \
date     league                                                            
22/05/15 T1      Genclerbirligi  Mersin Idman Yurdu      1      2      A   

                season  
date     league         
22/05/15 T1      14-15  
('22/08/14', 'D1')
                          home       away  hgoal  agoal result season
date     league                                                      
22/08/14 D1      Bayern Munich  Wolfsburg      2      1      H  14-15
('22/08/15', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
22/08/15 D1      Ein Frankfurt       Augsburg      1      1      D  15-16
         D1            FC Koln      Wolfsburg      1      1      D  15-16
         D1            Hamburg      Stuttgart      3      2      H  15-16
         D1           Hannover     Leverkusen      0      1      A  15-16
         D1         Hoffenheim  Bayern Munich      1      2      A  15-16
         D1         Schalke 04      Darmstadt      1      1      D  15-16
('22/08/15', 'E2')
                             home        away  hgoal  agoal result season
date     league                                                          
22/08/15 E2              Barnsley    Bradford      0      0      D  15-16
         E2                Burton   Peterboro      2      1      H  15-16
         E2          Chesterfield    Rochdale      0      0      D  15-16
         E2                 Crewe        Bury      3      3      D  15-16
         E2        Fleetwood Town  Colchester      4      0      H  15-16
         E2            Gillingham       Wigan      2      0      H  15-16
         E2                Oldham  Shrewsbury      1      1      D  15-16
         E2             Port Vale   Doncaster      3      0      H  15-16
         E2            Scunthorpe    Millwall      0      0      D  15-16
         E2      Sheffield United   Blackpool      2      0      H  15-16
         E2              Southend     Swindon      0      1      A  15-16
         E2               Walsall    Coventry      2      1      H  15-16
('22/08/15', 'I1')
                   home     away  hgoal  agoal result season
date     league                                             
22/08/15 I1       Lazio  Bologna      2      1      H  15-16
         I1      Verona     Roma      1      1      D  15-16
('22/08/15', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
22/08/15 SP1     Ath Madrid  Las Palmas      1      0      H  15-16
         SP1        Espanol      Getafe      1      0      H  15-16
         SP1      La Coruna    Sociedad      0      0      D  15-16
         SP1      Vallecano    Valencia      0      0      D  15-16
('22/08/15', 'T1')
                                 home                away  hgoal  agoal  \
date     league                                                           
22/08/15 T1      Akhisar Belediyespor  Mersin Idman Yurdu      2      0   
         T1                  Besiktas         Trabzonspor      1      2   
         T1               Kayserispor           Konyaspor      1      1   

                result season  
date     league                
22/08/15 T1          H  15-16  
         T1          A  15-16  
         T1          D  15-16  
('22/09/11', 'I1')
                 home   away  hgoal  agoal result season
date     league                                         
22/09/11 I1      Roma  Siena      1      1      D  11-12
('22/09/11', 'SP1')
                    home      away  hgoal  agoal result season
date     league                                               
22/09/11 SP1       Betis  Zaragoza      4      3      H  11-12
         SP1     Espanol    Getafe      1      0      H  11-12
('22/09/11', 'T1')
                       home       away  hgoal  agoal result season
date     league                                                   
22/09/11 T1      Ankaragucu  Sivasspor      1      2      A  11-12
         T1       Bursaspor   Besiktas      1      2      A  11-12
('22/09/12', 'D1')
                               home            away  hgoal  agoal result  \
date     league                                                            
22/09/12 D1      Fortuna Dusseldorf        Freiburg      0      0      D   
         D1                 Hamburg        Dortmund      3      2      H   
         D1                   Mainz        Augsburg      2      0      H   
         D1              Schalke 04   Bayern Munich      0      2      A   
         D1               Wolfsburg  Greuther Furth      1      1      D   

                season  
date     league         
22/09/12 D1      12-13  
         D1      12-13  
         D1      12-13  
         D1      12-13  
         D1      12-13  
('22/09/12', 'E2')
                         home                away  hgoal  agoal result season
date     league                                                              
22/09/12 E2         Brentford              Oldham      1      0      H  12-13
         E2              Bury  Milton Keynes Dons      1      4      A  12-13
         E2          Coventry            Carlisle      1      2      A  12-13
         E2      Crawley Town            Tranmere      2      5      A  12-13
         E2             Crewe       Leyton Orient      1      1      D  12-13
         E2         Doncaster           Stevenage      1      1      D  12-13
         E2        Hartlepool          Shrewsbury      2      2      D  12-13
         E2      Notts County          Portsmouth      3      0      H  12-13
         E2        Scunthorpe          Colchester      1      0      H  12-13
         E2           Swindon         Bournemouth      4      0      H  12-13
         E2           Walsall             Preston      3      1      H  12-13
         E2            Yeovil    Sheffield United      0      1      A  12-13
('22/09/12', 'I1')
                     home        away  hgoal  agoal result season
date     league                                                  
22/09/12 I1      Juventus      Chievo      2      0      H  12-13
         I1         Parma  Fiorentina      1      1      D  12-13
('22/09/12', 'SP1')
                      home     away  hgoal  agoal result season
date     league                                                
22/09/12 SP1     Barcelona  Granada      2      0      H  12-13
         SP1         Betis  Espanol      1      0      H  12-13
         SP1         Celta   Getafe      2      1      H  12-13
         SP1      Zaragoza  Osasuna      3      1      H  12-13
('22/09/12', 'T1')
                               home            away  hgoal  agoal result  \
date     league                                                            
22/09/12 T1              Buyuksehyr        Orduspor      1      1      D   
         T1           Gaziantepspor        Besiktas      3      2      H   
         T1             Kayserispor   Eskisehirspor      3      2      H   
         T1      Mersin Idman Yurdu  Genclerbirligi      1      1      D   

                season  
date     league         
22/09/12 T1      12-13  
         T1      12-13  
         T1      12-13  
         T1      12-13  
('22/09/13', 'D1')
                      home           away  hgoal  agoal result season
date     league                                                      
22/09/13 D1       Freiburg         Hertha      1      1      D  13-14
         D1      Stuttgart  Ein Frankfurt      1      1      D  13-14
('22/09/13', 'I1')
                     home        away  hgoal  agoal result season
date     league                                                  
22/09/13 I1      Atalanta  Fiorentina      0      2      A  13-14
         I1       Bologna      Torino      1      2      A  13-14
         I1       Catania       Parma      0      0      D  13-14
         I1      Juventus      Verona      2      1      H  13-14
         I1         Milan      Napoli      1      2      A  13-14
         I1          Roma       Lazio      2      0      H  13-14
         I1      Sassuolo       Inter      0      7      A  13-14
('22/09/13', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
22/09/13 SP1           Betis     Granada      0      0      D  13-14
         SP1           Celta  Villarreal      0      0      D  13-14
         SP1     Real Madrid      Getafe      4      1      H  13-14
         SP1        Valencia     Sevilla      3      1      H  13-14
('22/09/13', 'T1')
                     home         away  hgoal  agoal result season
date     league                                                   
22/09/13 T1      Besiktas  Galatasaray      0      3      A  13-14
         T1      Rizespor    Bursaspor      2      1      H  13-14
('22/09/14', 'SP1')
                   home      away  hgoal  agoal result season
date     league                                              
22/09/14 SP1     Getafe  Valencia      0      3      A  14-15
('22/09/14', 'T1')
                       home         away  hgoal  agoal result season
date     league                                                     
22/09/14 T1       Bursaspor     Besiktas      0      1      A  14-15
         T1      Buyuksehyr  Trabzonspor      1      1      D  14-15
('22/09/15', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
22/09/15 D1      Bayern Munich      Wolfsburg      5      1      H  15-16
         D1          Darmstadt  Werder Bremen      2      1      H  15-16
         D1             Hertha        FC Koln      2      0      H  15-16
         D1         Ingolstadt        Hamburg      0      1      A  15-16
('22/09/15', 'I1')
                    home   away  hgoal  agoal result season
date     league                                            
22/09/15 I1      Udinese  Milan      2      3      A  15-16
('22/09/15', 'SP1')
                       home      away  hgoal  agoal result season
date     league                                                  
22/09/15 SP1     Ath Madrid    Getafe      2      0      H  15-16
         SP1        Espanol  Valencia      1      0      H  15-16
         SP1        Granada  Sociedad      0      3      A  15-16
('22/10/11', 'D1')
                           home        away  hgoal  agoal result season
date     league                                                        
22/10/11 D1            Dortmund     FC Koln      5      0      H  11-12
         D1             Hamburg   Wolfsburg      1      1      D  11-12
         D1              Hertha       Mainz      0      0      D  11-12
         D1          Hoffenheim  M'gladbach      1      0      H  11-12
         D1      Kaiserslautern    Freiburg      1      0      H  11-12
         D1            Nurnberg   Stuttgart      2      2      D  11-12
('22/10/11', 'E2')
                               home              away  hgoal  agoal result  \
date     league                                                              
22/10/11 E2             Bournemouth              Bury      1      2      A   
         E2                Charlton          Carlisle      4      0      H   
         E2            Chesterfield        Hartlepool      2      3      A   
         E2                  Exeter          Rochdale      3      1      H   
         E2            Huddersfield           Preston      3      1      H   
         E2           Leyton Orient  Sheffield United      1      1      D   
         E2      Milton Keynes Dons        Scunthorpe      0      0      D   
         E2            Notts County         Brentford      1      1      D   
         E2                  Oldham           Wycombe      2      0      H   
         E2          Sheffield Weds        Colchester      2      0      H   
         E2               Stevenage            Yeovil      0      0      D   
         E2                Tranmere           Walsall      2      1      H   

                season  
date     league         
22/10/11 E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
('22/10/11', 'I1')
                       home     away  hgoal  agoal result season
date     league                                                 
22/10/11 I1      Fiorentina  Catania      2      2      D  11-12
         I1        Juventus    Genoa      2      2      D  11-12
('22/10/11', 'SP1')
                      home         away  hgoal  agoal result season
date     league                                                    
22/10/11 SP1     Barcelona      Sevilla      0      0      D  11-12
         SP1        Malaga  Real Madrid      0      4      A  11-12
         SP1     Santander      Espanol      0      1      A  11-12
         SP1      Sp Gijon      Granada      2      0      H  11-12
('22/10/11', 'T1')
                          home         away  hgoal  agoal result season
date     league                                                        
22/10/11 T1          Bursaspor  Trabzonspor      1      1      D  11-12
         T1      Eskisehirspor   Manisaspor      0      2      A  11-12
         T1        Karabukspor   Buyuksehyr      2      0      H  11-12
('22/10/12', 'SP1')
                    home      away  hgoal  agoal result season
date     league                                               
22/10/12 SP1     Sevilla  Mallorca      3      2      H  12-13
('22/10/12', 'T1')
                        home        away  hgoal  agoal result season
date     league                                                     
22/10/12 T1      Kayserispor  Buyuksehyr      0      1      A  12-13
('22/10/13', 'E2')
                               home              away  hgoal  agoal result  \
date     league                                                              
22/10/13 E2            Bristol City         Brentford      1      2      A   
         E2                Coventry     Leyton Orient      3      1      H   
         E2            Crawley Town         Port Vale      0      3      A   
         E2                   Crewe         Stevenage      0      3      A   
         E2              Gillingham      Notts County      2      1      H   
         E2      Milton Keynes Dons          Carlisle      0      1      A   
         E2               Peterboro  Sheffield United      0      0      D   
         E2                 Preston          Bradford      2      2      D   
         E2               Rotherham          Tranmere      1      1      D   
         E2              Shrewsbury        Colchester      1      1      D   
         E2                 Swindon           Walsall      1      3      A   
         E2                  Wolves            Oldham      2      0      H   

                season  
date     league         
22/10/13 E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
('22/11/13', 'D1')
                      home        away  hgoal  agoal result season
date     league                                                   
22/11/13 D1      Stuttgart  M'gladbach      0      2      A  13-14
('22/11/13', 'SP1')
                       home     away  hgoal  agoal result season
date     league                                                 
22/11/13 SP1     Valladolid  Osasuna      0      1      A  13-14
('22/11/14', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
22/11/14 D1      Bayern Munich     Hoffenheim      4      0      H  14-15
         D1            FC Koln         Hertha      1      2      A  14-15
         D1           Hannover     Leverkusen      1      3      A  14-15
         D1              Mainz       Freiburg      2      2      D  14-15
         D1         M'gladbach  Ein Frankfurt      1      3      A  14-15
         D1          Paderborn       Dortmund      2      2      D  14-15
         D1         Schalke 04      Wolfsburg      3      2      H  14-15
('22/11/14', 'E2')
                               home        away  hgoal  agoal result season
date     league                                                            
22/11/14 E2                Bradford  Gillingham      1      1      D  14-15
         E2            Bristol City     Preston      0      1      A  14-15
         E2            Chesterfield    Barnsley      2      1      H  14-15
         E2              Colchester    Coventry      0      1      A  14-15
         E2            Crawley Town  Scunthorpe      2      2      D  14-15
         E2          Fleetwood Town     Walsall      0      1      A  14-15
         E2           Leyton Orient       Crewe      4      1      H  14-15
         E2      Milton Keynes Dons   Port Vale      1      0      H  14-15
         E2            Notts County      Yeovil      1      2      A  14-15
         E2               Peterboro     Swindon      1      2      A  14-15
         E2                Rochdale   Doncaster      1      3      A  14-15
         E2        Sheffield United      Oldham      1      1      D  14-15
('22/11/14', 'I1')
                     home      away  hgoal  agoal result season
date     league                                                
22/11/14 I1      Atalanta      Roma      1      2      A  14-15
         I1         Lazio  Juventus      0      3      A  14-15
('22/11/14', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
22/11/14 SP1     Ath Madrid       Malaga      3      1      H  14-15
         SP1      Barcelona      Sevilla      5      1      H  14-15
         SP1          Eibar  Real Madrid      0      4      A  14-15
         SP1      La Coruna     Sociedad      0      0      D  14-15
('22/11/14', 'T1')
                                 home                away  hgoal  agoal  \
date     league                                                           
22/11/14 T1      Akhisar Belediyespor  Mersin Idman Yurdu      1      1   
         T1               Galatasaray         Trabzonspor      0      3   
         T1                  Rizespor          Buyuksehyr      0      2   

                result season  
date     league                
22/11/14 T1          D  14-15  
         T1          A  14-15  
         T1          A  14-15  
('22/11/15', 'D1')
                       home        away  hgoal  agoal result season
date     league                                                    
22/11/15 D1          Hertha  Hoffenheim      1      0      H  15-16
         D1      Ingolstadt   Darmstadt      3      1      H  15-16
('22/11/15', 'I1')
                       home       away  hgoal  agoal result season
date     league                                                   
22/11/15 I1        Atalanta     Torino      0      1      A  15-16
         I1           Carpi     Chievo      1      2      A  15-16
         I1      Fiorentina     Empoli      2      2      D  15-16
         I1           Genoa   Sassuolo      2      1      H  15-16
         I1           Inter  Frosinone      4      0      H  15-16
         I1           Lazio    Palermo      1      1      D  15-16
         I1         Udinese  Sampdoria      1      0      H  15-16
         I1          Verona     Napoli      0      2      A  15-16
('22/11/15', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
22/11/15 SP1          Betis  Ath Madrid      0      1      A  15-16
         SP1        Granada  Ath Bilbao      2      0      H  15-16
         SP1       Sp Gijon     Levante      0      3      A  15-16
         SP1     Villarreal       Eibar      1      1      D  15-16
('22/11/15', 'T1')
                        home            away  hgoal  agoal result season
date     league                                                         
22/11/15 T1         Besiktas       Sivasspor      2      0      H  15-16
         T1        Konyaspor   Eskisehirspor      3      2      H  15-16
         T1      Osmanlispor        Rizespor      0      1      A  15-16
         T1      Trabzonspor  Genclerbirligi      1      0      H  15-16
('22/12/11', 'T1')
                           home         away  hgoal  agoal result season
date     league                                                         
22/12/11 T1            Besiktas  Karabukspor      1      0      H  11-12
         T1       Gaziantepspor    Bursaspor      2      2      D  11-12
         T1      Genclerbirligi   Buyuksehyr      4      0      H  11-12
         T1         Trabzonspor     Orduspor      4      1      H  11-12
('22/12/12', 'E2')
                         home              away  hgoal  agoal result season
date     league                                                            
22/12/12 E2          Coventry           Preston      1      1      D  12-13
         E2      Crawley Town  Sheffield United      0      2      A  12-13
         E2           Walsall        Colchester      1      0      H  12-13
         E2            Yeovil            Oldham      4      1      H  12-13
('22/12/12', 'I1')
                      home        away  hgoal  agoal result season
date     league                                                   
22/12/12 I1       Atalanta     Udinese      1      1      D  12-13
         I1        Bologna       Parma      1      2      A  12-13
         I1          Inter       Genoa      1      1      D  12-13
         I1        Palermo  Fiorentina      0      3      A  12-13
         I1           Roma       Milan      4      2      H  12-13
         I1      Sampdoria       Lazio      0      1      A  12-13
         I1          Siena      Napoli      0      2      A  12-13
         I1         Torino      Chievo      2      0      H  12-13
('22/12/12', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
22/12/12 SP1     Ath Bilbao     Zaragoza      0      2      A  12-13
         SP1          Betis     Mallorca      1      2      A  12-13
         SP1         Malaga  Real Madrid      3      2      H  12-13
         SP1        Osasuna      Granada      1      2      A  12-13
         SP1     Valladolid    Barcelona      1      3      A  12-13
('22/12/12', 'T1')
                       home         away  hgoal  agoal result season
date     league                                                     
22/12/12 T1      Fenerbahce  Karabukspor      1      3      A  12-13
         T1       Kasimpasa   Buyuksehyr      0      2      A  12-13
('22/12/13', 'D1')
                       home       away  hgoal  agoal result season
date     league                                                   
22/12/13 D1      M'gladbach  Wolfsburg      2      2      D  13-14
('22/12/13', 'I1')
                      home        away  hgoal  agoal result season
date     league                                                   
22/12/13 I1       Atalanta    Juventus      1      4      A  13-14
         I1        Bologna       Genoa      1      0      H  13-14
         I1          Inter       Milan      1      0      H  13-14
         I1           Roma     Catania      4      0      H  13-14
         I1      Sampdoria       Parma      1      1      D  13-14
         I1       Sassuolo  Fiorentina      0      1      A  13-14
         I1         Torino      Chievo      4      1      H  13-14
         I1         Verona       Lazio      4      1      H  13-14
('22/12/13', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
22/12/13 SP1     Ath Bilbao    Vallecano      2      1      H  13-14
         SP1          Celta      Osasuna      1      1      D  13-14
         SP1        Espanol   Valladolid      4      2      H  13-14
         SP1         Getafe    Barcelona      2      5      A  13-14
         SP1       Valencia  Real Madrid      2      3      A  13-14
('22/12/13', 'T1')
                          home            away  hgoal  agoal result season
date     league                                                           
22/12/13 T1        Antalyaspor  Genclerbirligi      2      3      A  13-14
         T1      Eskisehirspor   Gaziantepspor      2      0      H  13-14
         T1        Galatasaray     Trabzonspor      2      1      H  13-14
         T1        Karabukspor      Fenerbahce      2      1      H  13-14
         T1        Kayserispor       Konyaspor      0      0      D  13-14
('22/12/14', 'T1')
                     home           away  hgoal  agoal result season
date     league                                                     
22/12/14 T1      Rizespor  Gaziantepspor      0      1      A  14-15
('23/01/12', 'SP1')
                       home      away  hgoal  agoal result season
date     league                                                  
23/01/12 SP1     Villarreal  Sp Gijon      3      0      H  11-12
('23/01/15', 'T1')
                        home       away  hgoal  agoal result season
date     league                                                    
23/01/15 T1        Konyaspor  Bursaspor      2      3      A  14-15
         T1      Trabzonspor  Sivasspor      3      1      H  14-15
('23/01/16', 'D1')
                       home        away  hgoal  agoal result season
date     league                                                    
23/01/16 D1         FC Koln   Stuttgart      1      3      A  15-16
         D1        Hannover   Darmstadt      1      2      A  15-16
         D1          Hertha    Augsburg      0      0      D  15-16
         D1      Hoffenheim  Leverkusen      1      1      D  15-16
         D1      Ingolstadt       Mainz      1      0      H  15-16
         D1      M'gladbach    Dortmund      1      3      A  15-16
('23/01/16', 'E2')
                             home        away  hgoal  agoal result season
date     league                                                          
23/01/16 E2                Burton  Shrewsbury      1      2      A  15-16
         E2          Chesterfield    Millwall      1      2      A  15-16
         E2                 Crewe       Wigan      1      1      D  15-16
         E2        Fleetwood Town   Doncaster      0      0      D  15-16
         E2            Gillingham   Peterboro      2      1      H  15-16
         E2                Oldham        Bury      0      1      A  15-16
         E2             Port Vale    Bradford      1      1      D  15-16
         E2            Scunthorpe  Colchester      3      0      H  15-16
         E2      Sheffield United     Swindon      1      1      D  15-16
         E2              Southend    Coventry      3      0      H  15-16
         E2               Walsall   Blackpool      1      1      D  15-16
('23/01/16', 'I1')
                      home      away  hgoal  agoal result season
date     league                                                 
23/01/16 I1         Empoli     Milan      2      2      D  15-16
         I1      Frosinone  Atalanta      0      0      D  15-16
('23/01/16', 'SP1')
                      home        away  hgoal  agoal result season
date     league                                                   
23/01/16 SP1       Espanol  Villarreal      2      2      D  15-16
         SP1       Granada      Getafe      3      2      H  15-16
         SP1        Malaga   Barcelona      1      2      A  15-16
         SP1     Vallecano       Celta      3      0      H  15-16
('23/01/16', 'T1')
                               home                  away  hgoal  agoal  \
date     league                                                           
23/01/16 T1               Konyaspor           Kayserispor      1      0   
         T1      Mersin Idman Yurdu  Akhisar Belediyespor      0      0   
         T1             Osmanlispor           Galatasaray      3      2   

                result season  
date     league                
23/01/16 T1          H  15-16  
         T1          D  15-16  
         T1          H  15-16  
('23/02/13', 'D1')
                          home                away  hgoal  agoal result season
date     league                                                               
23/02/13 D1           Augsburg          Hoffenheim      2      1      H  12-13
         D1      Bayern Munich       Werder Bremen      6      1      H  12-13
         D1           Hannover             Hamburg      5      1      H  12-13
         D1              Mainz           Wolfsburg      1      1      D  12-13
         D1         Schalke 04  Fortuna Dusseldorf      2      1      H  12-13
         D1          Stuttgart            Nurnberg      1      1      D  12-13
('23/02/13', 'E2')
                          home                away  hgoal  agoal result season
date     league                                                               
23/02/13 E2        Bournemouth    Sheffield United      0      1      A  12-13
         E2          Brentford             Walsall      0      0      D  12-13
         E2           Carlisle  Milton Keynes Dons      1      1      D  12-13
         E2         Colchester            Tranmere      1      5      A  12-13
         E2           Coventry               Crewe      1      2      A  12-13
         E2          Doncaster              Yeovil      1      1      D  12-13
         E2      Leyton Orient        Crawley Town      0      1      A  12-13
         E2             Oldham          Portsmouth      1      0      H  12-13
         E2         Scunthorpe          Hartlepool      1      2      A  12-13
         E2         Shrewsbury           Stevenage      2      1      H  12-13
         E2            Swindon             Preston      1      1      D  12-13
('23/02/13', 'I1')
                    home   away  hgoal  agoal result season
date     league                                            
23/02/13 I1      Palermo  Genoa      0      0      D  12-13
('23/02/13', 'SP1')
                      home         away  hgoal  agoal result season
date     league                                                    
23/02/13 SP1     Barcelona      Sevilla      2      1      H  12-13
         SP1     La Coruna  Real Madrid      1      2      A  12-13
         SP1      Mallorca       Getafe      1      3      A  12-13
         SP1      Zaragoza     Valencia      2      2      D  12-13
('23/02/13', 'T1')
                               home           away  hgoal  agoal result season
date     league                                                               
23/02/13 T1              Buyuksehyr  Eskisehirspor      2      2      D  12-13
         T1              Elazigspor    Antalyaspor      2      1      H  12-13
         T1      Mersin Idman Yurdu    Trabzonspor      0      1      A  12-13
         T1               Sivasspor       Besiktas      0      1      A  12-13
('23/02/14', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
23/02/14 D1      Ein Frankfurt  Werder Bremen      0      0      D  13-14
         D1           Hannover  Bayern Munich      0      4      A  13-14
('23/02/14', 'I1')
                      home      away  hgoal  agoal result season
date     league                                                 
23/02/14 I1         Chievo   Catania      2      0      H  13-14
         I1          Inter  Cagliari      1      1      D  13-14
         I1       Juventus    Torino      1      0      H  13-14
         I1          Lazio  Sassuolo      3      2      H  13-14
         I1        Livorno    Verona      2      3      A  13-14
         I1      Sampdoria     Milan      0      2      A  13-14
         I1        Udinese  Atalanta      1      1      D  13-14
('23/02/14', 'SP1')
                      home        away  hgoal  agoal result season
date     league                                                   
23/02/14 SP1         Betis  Ath Bilbao      0      2      A  13-14
         SP1       Osasuna  Ath Madrid      3      0      H  13-14
         SP1      Valencia     Granada      2      1      H  13-14
         SP1     Vallecano     Sevilla      0      1      A  13-14
('23/02/14', 'T1')
                           home           away  hgoal  agoal result season
date     league                                                           
23/02/14 T1         Antalyaspor  Eskisehirspor      0      0      D  13-14
         T1      Genclerbirligi      Konyaspor      2      2      D  13-14
         T1           Kasimpasa      Sivasspor      6      2      H  13-14
         T1         Trabzonspor    Kayserispor      2      1      H  13-14
('23/02/15', 'I1')
                     home      away  hgoal  agoal result season
date     league                                                
23/02/15 I1      Cagliari     Inter      1      2      A  14-15
         I1        Napoli  Sassuolo      2      0      H  14-15
('23/02/15', 'SP1')
                    home     away  hgoal  agoal result season
date     league                                              
23/02/15 SP1     Levante  Granada      2      1      H  14-15
('23/02/15', 'T1')
                       home                  away  hgoal  agoal result season
date     league                                                              
23/02/15 T1      Fenerbahce  Akhisar Belediyespor      1      2      A  14-15
('23/02/16', 'E2')
                      home            away  hgoal  agoal result season
date     league                                                       
23/02/16 E2           Bury        Barnsley      0      0      D  15-16
         E2      Peterboro          Oldham      1      2      A  15-16
         E2       Rochdale  Fleetwood Town      1      0      H  15-16
('23/03/12', 'D1')
                      home     away  hgoal  agoal result season
date     league                                                
23/03/12 D1      Wolfsburg  Hamburg      2      1      H  11-12
('23/03/13', 'E2')
                        home           away  hgoal  agoal result season
date     league                                                        
23/03/13 E2      Bournemouth           Bury      4      1      H  12-13
         E2         Carlisle         Yeovil      3      3      D  12-13
         E2       Hartlepool        Walsall      0      0      D  12-13
         E2       Portsmouth       Coventry      2      0      H  12-13
         E2          Preston  Leyton Orient      0      0      D  12-13
         E2       Scunthorpe      Doncaster      2      3      A  12-13
         E2          Swindon   Notts County      0      0      D  12-13
('23/03/14', 'D1')
                       home           away  hgoal  agoal result season
date     league                                                       
23/03/14 D1      Leverkusen     Hoffenheim      2      3      A  13-14
         D1        Nurnberg  Ein Frankfurt      2      5      A  13-14
('23/03/14', 'I1')
                      home        away  hgoal  agoal result season
date     league                                                   
23/03/14 I1        Bologna    Cagliari      1      0      H  13-14
         I1        Catania    Juventus      0      1      A  13-14
         I1          Inter    Atalanta      1      2      A  13-14
         I1          Lazio       Milan      1      1      D  13-14
         I1         Napoli  Fiorentina      0      1      A  13-14
         I1          Parma       Genoa      1      1      D  13-14
         I1      Sampdoria      Verona      5      0      H  13-14
         I1        Udinese    Sassuolo      1      0      H  13-14
('23/03/14', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
23/03/14 SP1           Betis  Ath Madrid      0      2      A  13-14
         SP1         Osasuna     Sevilla      1      2      A  13-14
         SP1     Real Madrid   Barcelona      3      4      A  13-14
         SP1        Valencia  Villarreal      2      1      H  13-14
('23/03/14', 'T1')
                           home                  away  hgoal  agoal result  \
date     league                                                              
23/03/14 T1            Besiktas  Akhisar Belediyespor      3      0      H   
         T1         Erciyesspor             Sivasspor      1      1      D   
         T1      Genclerbirligi            Elazigspor      3      1      H   

                season  
date     league         
23/03/14 T1      13-14  
         T1      13-14  
         T1      13-14  
('23/04/12', 'SP1')
                    home    away  hgoal  agoal result season
date     league                                             
23/04/12 SP1     Osasuna  Malaga      1      1      D  11-12
('23/04/13', 'E2')
                         home              away  hgoal  agoal result season
date     league                                                            
23/04/13 E2      Crawley Town           Preston      1      0      H  12-13
         E2             Crewe  Sheffield United      1      0      H  12-13
         E2        Shrewsbury            Oldham      1      0      H  12-13
('23/04/16', 'D1')
                       home           away  hgoal  agoal result season
date     league                                                       
23/04/16 D1         FC Koln      Darmstadt      4      1      H  15-16
         D1          Hertha  Bayern Munich      0      2      A  15-16
         D1      Ingolstadt       Hannover      2      2      D  15-16
         D1      Schalke 04     Leverkusen      2      3      A  15-16
         D1       Stuttgart       Dortmund      0      3      A  15-16
         D1       Wolfsburg       Augsburg      0      2      A  15-16
('23/04/16', 'E2')
                             home          away  hgoal  agoal result season
date     league                                                            
23/04/16 E2              Bradford       Walsall      4      0      H  15-16
         E2                  Bury      Millwall      1      3      A  15-16
         E2            Colchester        Burton      0      3      A  15-16
         E2             Doncaster      Coventry      2      0      H  15-16
         E2        Fleetwood Town     Blackpool      0      0      D  15-16
         E2            Gillingham    Shrewsbury      2      3      A  15-16
         E2                Oldham         Crewe      1      0      H  15-16
         E2             Peterboro    Scunthorpe      0      2      A  15-16
         E2             Port Vale      Rochdale      4      1      H  15-16
         E2      Sheffield United      Barnsley      0      0      D  15-16
         E2               Swindon  Chesterfield      1      0      H  15-16
         E2                 Wigan      Southend      4      1      H  15-16
('23/04/16', 'I1')
                  home     away  hgoal  agoal result season
date     league                                            
23/04/16 I1      Inter  Udinese      3      1      H  15-16
('23/04/16', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
23/04/16 SP1     Ath Madrid       Malaga      1      0      H  15-16
         SP1      Barcelona     Sp Gijon      6      0      H  15-16
         SP1          Eibar    La Coruna      1      1      D  15-16
         SP1      Vallecano  Real Madrid      2      3      A  15-16
('23/04/16', 'T1')
                                 home         away  hgoal  agoal result season
date     league                                                               
23/04/16 T1      Akhisar Belediyespor     Besiktas      3      3      D  15-16
         T1                Buyuksehyr    Sivasspor      2      2      D  15-16
         T1               Osmanlispor  Antalyaspor      3      0      H  15-16
('23/05/15', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
23/05/15 D1      Bayern Munich          Mainz      2      0      H  14-15
         D1           Dortmund  Werder Bremen      3      2      H  14-15
         D1      Ein Frankfurt     Leverkusen      2      1      H  14-15
         D1            FC Koln      Wolfsburg      2      2      D  14-15
         D1            Hamburg     Schalke 04      2      0      H  14-15
         D1           Hannover       Freiburg      2      1      H  14-15
         D1         Hoffenheim         Hertha      2      1      H  14-15
         D1         M'gladbach       Augsburg      1      3      A  14-15
         D1          Paderborn      Stuttgart      1      2      A  14-15
('23/05/15', 'I1')
                     home    away  hgoal  agoal result season
date     league                                              
23/05/15 I1         Genoa   Inter      3      2      H  14-15
         I1      Juventus  Napoli      3      1      H  14-15
('23/05/15', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
23/05/15 SP1         Almeria    Valencia      2      3      A  14-15
         SP1      Ath Bilbao  Villarreal      4      0      H  14-15
         SP1       Barcelona   La Coruna      2      2      D  14-15
         SP1           Celta     Espanol      3      2      H  14-15
         SP1           Eibar     Cordoba      3      0      H  14-15
         SP1         Granada  Ath Madrid      0      0      D  14-15
         SP1         Levante       Elche      0      0      D  14-15
         SP1          Malaga     Sevilla      2      3      A  14-15
         SP1     Real Madrid      Getafe      7      3      H  14-15
         SP1       Vallecano    Sociedad      2      4      A  14-15
('23/05/15', 'T1')
                        home           away  hgoal  agoal result season
date     league                                                        
23/05/15 T1        Kasimpasa    Erciyesspor      3      3      D  14-15
         T1        Konyaspor       Rizespor      1      1      D  14-15
         T1      Trabzonspor  Balikesirspor      3      2      H  14-15
('23/08/13', 'D1')
                     home           away  hgoal  agoal result season
date     league                                                     
23/08/13 D1      Dortmund  Werder Bremen      1      0      H  13-14
('23/08/13', 'E2')
                       home          away  hgoal  agoal result season
date     league                                                      
23/08/13 E2      Colchester      Carlisle      1      1      D  13-14
         E2          Wolves  Crawley Town      2      1      H  13-14
('23/08/13', 'SP1')
                       home     away  hgoal  agoal result season
date     league                                                 
23/08/13 SP1     Ath Bilbao  Osasuna      2      0      H  13-14
         SP1         Getafe  Almeria      2      2      D  13-14
('23/08/13', 'T1')
                           home                  away  hgoal  agoal result  \
date     league                                                              
23/08/13 T1      Genclerbirligi  Akhisar Belediyespor      3      0      H   

                season  
date     league         
23/08/13 T1      13-14  
('23/08/14', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
23/08/14 D1           Dortmund     Leverkusen      0      2      A  14-15
         D1      Ein Frankfurt       Freiburg      1      0      H  14-15
         D1            FC Koln        Hamburg      0      0      D  14-15
         D1           Hannover     Schalke 04      2      1      H  14-15
         D1             Hertha  Werder Bremen      2      2      D  14-15
         D1         Hoffenheim       Augsburg      2      0      H  14-15
('23/08/14', 'E2')
                               home          away  hgoal  agoal result season
date     league                                                              
23/08/14 E2                Barnsley    Gillingham      4      1      H  14-15
         E2                Bradford     Peterboro      0      1      A  14-15
         E2              Colchester     Doncaster      0      1      A  14-15
         E2          Fleetwood Town  Chesterfield      0      0      D  14-15
         E2           Leyton Orient       Walsall      0      0      D  14-15
         E2      Milton Keynes Dons      Coventry      0      0      D  14-15
         E2               Port Vale  Notts County      0      2      A  14-15
         E2                 Preston        Oldham      1      0      H  14-15
         E2                Rochdale  Bristol City      1      1      D  14-15
         E2        Sheffield United  Crawley Town      1      0      H  14-15
         E2                 Swindon         Crewe      2      0      H  14-15
         E2                  Yeovil    Scunthorpe      1      1      D  14-15
('23/08/14', 'SP1')
                    home        away  hgoal  agoal result season
date     league                                                 
23/08/14 SP1     Almeria     Espanol      1      1      D  14-15
         SP1     Granada   La Coruna      2      1      H  14-15
         SP1      Malaga  Ath Bilbao      1      0      H  14-15
         SP1     Sevilla    Valencia      1      1      D  14-15
('23/08/15', 'D1')
                       home      away  hgoal  agoal result season
date     league                                                  
23/08/15 D1      Ingolstadt  Dortmund      0      4      A  15-16
         D1      M'gladbach     Mainz      1      2      A  15-16
('23/08/15', 'I1')
                       home      away  hgoal  agoal result season
date     league                                                  
23/08/15 I1          Empoli    Chievo      1      3      A  15-16
         I1      Fiorentina     Milan      2      0      H  15-16
         I1       Frosinone    Torino      1      2      A  15-16
         I1           Inter  Atalanta      1      0      H  15-16
         I1        Juventus   Udinese      0      1      A  15-16
         I1         Palermo     Genoa      1      0      H  15-16
         I1       Sampdoria     Carpi      5      2      H  15-16
         I1        Sassuolo    Napoli      2      1      H  15-16
('23/08/15', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
23/08/15 SP1     Ath Bilbao    Barcelona      0      1      A  15-16
         SP1          Betis   Villarreal      1      1      D  15-16
         SP1        Levante        Celta      1      2      A  15-16
         SP1       Sp Gijon  Real Madrid      0      0      D  15-16
('23/08/15', 'T1')
                          home            away  hgoal  agoal result season
date     league                                                           
23/08/15 T1        Antalyaspor  Genclerbirligi      3      1      H  15-16
         T1          Bursaspor   Gaziantepspor      0      1      A  15-16
         T1      Eskisehirspor       Sivasspor      4      2      H  15-16
         T1           Rizespor      Fenerbahce      1      1      D  15-16
('23/09/11', 'D1')
                      home     away  hgoal  agoal result season
date     league                                                
23/09/11 D1      Stuttgart  Hamburg      1      2      A  11-12
('23/09/11', 'T1')
                        home        away  hgoal  agoal result season
date     league                                                     
23/09/11 T1      Kayserispor  Fenerbahce      0      1      A  11-12
('23/09/12', 'D1')
                          home        away  hgoal  agoal result season
date     league                                                       
23/09/12 D1         Hoffenheim    Hannover      3      1      H  12-13
         D1         Leverkusen  M'gladbach      1      1      D  12-13
         D1      Werder Bremen   Stuttgart      2      2      D  12-13
('23/09/12', 'I1')
                      home     away  hgoal  agoal result season
date     league                                                
23/09/12 I1       Atalanta  Palermo      1      0      H  12-13
         I1        Bologna  Pescara      1      1      D  12-13
         I1       Cagliari     Roma      0      3      A  12-13
         I1        Catania   Napoli      0      0      D  12-13
         I1          Inter    Siena      0      2      A  12-13
         I1          Lazio    Genoa      0      1      A  12-13
         I1      Sampdoria   Torino      1      1      D  12-13
         I1        Udinese    Milan      2      1      H  12-13
('23/09/12', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
23/09/12 SP1     Ath Bilbao      Malaga      0      0      D  12-13
         SP1     Ath Madrid  Valladolid      2      1      H  12-13
         SP1        Levante    Sociedad      2      1      H  12-13
         SP1       Mallorca    Valencia      2      0      H  12-13
('23/09/12', 'T1')
                        home                  away  hgoal  agoal result season
date     league                                                               
23/09/12 T1       Elazigspor             Bursaspor      1      1      D  12-13
         T1      Galatasaray  Akhisar Belediyespor      3      0      H  12-13
         T1        Sivasspor             Kasimpasa      1      0      H  12-13
('23/09/13', 'E2')
                      home           away  hgoal  agoal result season
date     league                                                      
23/09/13 E2      Brentford  Leyton Orient      0      2      A  13-14
('23/09/13', 'SP1')
                    home        away  hgoal  agoal result season
date     league                                                 
23/09/13 SP1     Espanol  Ath Bilbao      3      2      H  13-14
('23/09/13', 'T1')
                        home         away  hgoal  agoal result season
date     league                                                      
23/09/13 T1      Kayserispor  Trabzonspor      0      1      A  13-14
('23/09/14', 'D1')
                          home        away  hgoal  agoal result season
date     league                                                       
23/09/14 D1      Bayern Munich   Paderborn      4      0      H  14-15
         D1      Ein Frankfurt       Mainz      2      2      D  14-15
         D1         Hoffenheim    Freiburg      3      3      D  14-15
         D1      Werder Bremen  Schalke 04      0      3      A  14-15
('23/09/14', 'I1')
                   home   away  hgoal  agoal result season
date     league                                           
23/09/14 I1      Empoli  Milan      2      2      D  14-15
('23/09/14', 'SP1')
                        home       away  hgoal  agoal result season
date     league                                                    
23/09/14 SP1           Celta  La Coruna      2      1      H  14-15
         SP1     Real Madrid      Elche      5      1      H  14-15
('23/09/15', 'D1')
                       home           away  hgoal  agoal result season
date     league                                                       
23/09/15 D1        Hannover      Stuttgart      1      3      A  15-16
         D1      Hoffenheim       Dortmund      1      1      D  15-16
         D1      Leverkusen          Mainz      1      0      H  15-16
         D1      M'gladbach       Augsburg      4      2      H  15-16
         D1      Schalke 04  Ein Frankfurt      2      0      H  15-16
('23/09/15', 'I1')
                       home       away  hgoal  agoal result season
date     league                                                   
23/09/15 I1           Carpi     Napoli      0      0      D  15-16
         I1          Chievo     Torino      1      0      H  15-16
         I1      Fiorentina    Bologna      2      0      H  15-16
         I1           Inter     Verona      1      0      H  15-16
         I1        Juventus  Frosinone      1      1      D  15-16
         I1           Lazio      Genoa      2      0      H  15-16
         I1         Palermo   Sassuolo      0      1      A  15-16
         I1       Sampdoria       Roma      2      1      H  15-16
('23/09/15', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
23/09/15 SP1     Ath Bilbao  Real Madrid      1      2      A  15-16
         SP1          Celta    Barcelona      4      1      H  15-16
         SP1     Las Palmas      Sevilla      2      0      H  15-16
         SP1        Levante        Eibar      2      2      D  15-16
         SP1         Malaga   Villarreal      0      1      A  15-16
         SP1      Vallecano     Sp Gijon      2      1      H  15-16
('23/10/11', 'D1')
                       home           away  hgoal  agoal result season
date     league                                                       
23/10/11 D1        Hannover  Bayern Munich      2      1      H  11-12
         D1      Leverkusen     Schalke 04      0      1      A  11-12
('23/10/11', 'I1')
                     home      away  hgoal  agoal result season
date     league                                                
23/10/11 I1       Bologna     Lazio      0      2      A  11-12
         I1      Cagliari    Napoli      0      0      D  11-12
         I1         Inter    Chievo      1      0      H  11-12
         I1         Lecce     Milan      3      4      A  11-12
         I1         Parma  Atalanta      1      2      A  11-12
         I1          Roma   Palermo      1      0      H  11-12
         I1         Siena    Cesena      2      0      H  11-12
         I1       Udinese    Novara      3      0      H  11-12
('23/10/11', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
23/10/11 SP1     Ath Madrid    Mallorca      1      1      D  11-12
         SP1          Betis   Vallecano      0      2      A  11-12
         SP1        Osasuna    Zaragoza      3      0      H  11-12
         SP1       Sociedad      Getafe      0      0      D  11-12
         SP1       Valencia  Ath Bilbao      1      1      D  11-12
         SP1     Villarreal     Levante      0      3      A  11-12
('23/10/11', 'T1')
                          home            away  hgoal  agoal result season
date     league                                                           
23/10/11 T1         Ankaragucu        Orduspor      0      2      A  11-12
         T1         Fenerbahce      Samsunspor      0      0      D  11-12
         T1      Gaziantepspor  Genclerbirligi      3      0      H  11-12
         T1        Kayserispor       Sivasspor      6      2      H  11-12
('23/10/12', 'E2')
                             home                away  hgoal  agoal result  \
date     league                                                              
23/10/12 E2             Brentford            Coventry      2      1      H   
         E2                  Bury          Hartlepool      2      1      H   
         E2              Carlisle              Oldham      3      1      H   
         E2          Crawley Town  Milton Keynes Dons      2      0      H   
         E2                 Crewe             Swindon      2      1      H   
         E2         Leyton Orient          Colchester      0      2      A   
         E2          Notts County         Bournemouth      3      3      D   
         E2            Scunthorpe             Preston      2      3      A   
         E2      Sheffield United             Walsall      1      0      H   
         E2            Shrewsbury              Yeovil      1      3      A   
         E2             Stevenage          Portsmouth      2      1      H   
         E2              Tranmere           Doncaster      1      2      A   

                season  
date     league         
23/10/12 E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
('23/10/15', 'D1')
                       home     away  hgoal  agoal result season
date     league                                                 
23/10/15 D1      Hoffenheim  Hamburg      0      1      A  15-16
('23/10/15', 'SP1')
                      home     away  hgoal  agoal result season
date     league                                                
23/10/15 SP1     Vallecano  Espanol      3      0      H  15-16
('23/10/15', 'T1')
                          home                  away  hgoal  agoal result  \
date     league                                                             
23/10/15 T1      Eskisehirspor           Kayserispor      1      3      A   
         T1           Rizespor  Akhisar Belediyespor      0      2      A   

                season  
date     league         
23/10/15 T1      15-16  
         T1      15-16  
('23/11/12', 'D1')
                               home     away  hgoal  agoal result season
date     league                                                         
23/11/12 D1      Fortuna Dusseldorf  Hamburg      2      0      H  12-13
('23/11/12', 'SP1')
                     home     away  hgoal  agoal result season
date     league                                               
23/11/12 SP1     Sociedad  Osasuna      0      0      D  12-13
('23/11/12', 'T1')
                               home                  away  hgoal  agoal  \
date     league                                                           
23/11/12 T1                Besiktas  Akhisar Belediyespor      3      1   
         T1      Mersin Idman Yurdu           Karabukspor      2      1   

                result season  
date     league                
23/11/12 T1          H  12-13  
         T1          H  12-13  
('23/11/13', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
23/11/13 D1           Augsburg     Hoffenheim      2      0      H  13-14
         D1       Braunschweig       Freiburg      0      1      A  13-14
         D1           Dortmund  Bayern Munich      0      3      A  13-14
         D1      Ein Frankfurt     Schalke 04      3      3      D  13-14
         D1             Hertha     Leverkusen      0      1      A  13-14
         D1           Nurnberg      Wolfsburg      1      1      D  13-14
('23/11/13', 'E2')
                               home              away  hgoal  agoal result  \
date     league                                                              
23/11/13 E2            Bristol City  Sheffield United      0      1      A   
         E2                Coventry          Tranmere      1      5      A   
         E2            Crawley Town           Walsall      0      0      D   
         E2                   Crewe         Port Vale      1      2      A   
         E2              Gillingham            Oldham      0      1      A   
         E2      Milton Keynes Dons          Bradford      2      3      A   
         E2               Peterboro         Stevenage      0      1      A   
         E2                 Preston        Colchester      1      1      D   
         E2               Rotherham          Carlisle      0      0      D   
         E2              Shrewsbury      Notts County      1      0      H   
         E2                 Swindon     Leyton Orient      1      3      A   
         E2                  Wolves         Brentford      0      0      D   

                season  
date     league         
23/11/13 E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
('23/11/13', 'I1')
                   home    away  hgoal  agoal result season
date     league                                            
23/11/13 I1       Milan   Genoa      1      1      D  13-14
         I1      Napoli   Parma      0      1      A  13-14
         I1      Verona  Chievo      0      1      A  13-14
('23/11/13', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
23/11/13 SP1        Almeria  Real Madrid      0      5      A  13-14
         SP1     Ath Madrid       Getafe      7      0      H  13-14
         SP1      Barcelona      Granada      4      0      H  13-14
         SP1       Sociedad        Celta      4      3      H  13-14
('23/11/13', 'T1')
                        home         away  hgoal  agoal result season
date     league                                                      
23/11/13 T1        Bursaspor    Kasimpasa      1      1      D  13-14
         T1      Galatasaray    Sivasspor      2      1      H  13-14
         T1         Rizespor  Kayserispor      0      2      A  13-14
('23/11/14', 'D1')
                      home           away  hgoal  agoal result season
date     league                                                      
23/11/14 D1        Hamburg  Werder Bremen      2      0      H  14-15
         D1      Stuttgart       Augsburg      0      1      A  14-15
('23/11/14', 'I1')
                    home        away  hgoal  agoal result season
date     league                                                 
23/11/14 I1       Cesena   Sampdoria      1      1      D  14-15
         I1        Milan       Inter      1      1      D  14-15
         I1       Napoli    Cagliari      3      3      D  14-15
         I1        Parma      Empoli      0      2      A  14-15
         I1       Torino    Sassuolo      0      1      A  14-15
         I1      Udinese      Chievo      1      1      D  14-15
         I1       Verona  Fiorentina      1      2      A  14-15
('23/11/14', 'SP1')
                       home      away  hgoal  agoal result season
date     league                                                  
23/11/14 SP1          Elche   Cordoba      2      2      D  14-15
         SP1        Levante  Valencia      2      1      H  14-15
         SP1      Vallecano     Celta      1      0      H  14-15
         SP1     Villarreal    Getafe      2      1      H  14-15
('23/11/14', 'T1')
                           home           away  hgoal  agoal result season
date     league                                                           
23/11/14 T1            Besiktas      Kasimpasa      2      0      H  14-15
         T1       Eskisehirspor    Erciyesspor      2      1      H  14-15
         T1      Genclerbirligi    Karabukspor      2      2      D  14-15
         T1           Konyaspor  Gaziantepspor      2      0      H  14-15
('23/11/15', 'SP1')
                   home       away  hgoal  agoal result season
date     league                                               
23/11/15 SP1     Getafe  Vallecano      1      1      D  15-16
('23/11/15', 'T1')
                          home        away  hgoal  agoal result season
date     league                                                       
23/11/15 T1      Gaziantepspor  Buyuksehyr      0      1      A  15-16
('23/12/12', 'T1')
                          home                away  hgoal  agoal result season
date     league                                                               
23/12/12 T1        Antalyaspor       Eskisehirspor      2      1      H  12-13
         T1          Bursaspor      Genclerbirligi      0      0      D  12-13
         T1      Gaziantepspor  Mersin Idman Yurdu      2      1      H  12-13
         T1          Sivasspor          Elazigspor      3      1      H  12-13
         T1        Trabzonspor         Galatasaray      0      0      D  12-13
('23/12/13', 'T1')
                                 home         away  hgoal  agoal result season
date     league                                                               
23/12/13 T1      Akhisar Belediyespor    Sivasspor      2      1      H  13-14
         T1                 Bursaspor  Erciyesspor      3      1      H  13-14
('24/01/12', 'E2')
                         home                away  hgoal  agoal result season
date     league                                                              
24/01/12 E2      Notts County             Preston      0      0      D  11-12
         E2        Scunthorpe      Sheffield Weds      1      3      A  11-12
         E2         Stevenage  Milton Keynes Dons      4      2      H  11-12
('24/01/12', 'T1')
                               home           away  hgoal  agoal result season
date     league                                                               
24/01/12 T1                Besiktas  Gaziantepspor      3      2      H  11-12
         T1              Manisaspor     Samsunspor      1      1      D  11-12
         T1      Mersin Idman Yurdu    Kayserispor      1      2      A  11-12
         T1               Sivasspor    Antalyaspor      2      1      H  11-12
('24/01/14', 'D1')
                       home           away  hgoal  agoal result season
date     league                                                       
24/01/14 D1      M'gladbach  Bayern Munich      0      2      A  13-14
('24/01/14', 'E2')
                      home        away  hgoal  agoal result season
date     league                                                   
24/01/14 E2      Brentford  Gillingham      2      1      H  13-14
('24/01/14', 'SP1')
                  home   away  hgoal  agoal result season
date     league                                          
24/01/14 SP1     Celta  Betis      4      2      H  13-14
('24/01/14', 'T1')
                      home         away  hgoal  agoal result season
date     league                                                    
24/01/14 T1      Kasimpasa  Karabukspor      0      0      D  13-14
('24/01/15', 'E2')
                               home           away  hgoal  agoal result season
date     league                                                               
24/01/15 E2              Colchester  Leyton Orient      2      0      H  14-15
         E2          Fleetwood Town   Crawley Town      1      0      H  14-15
         E2              Gillingham         Oldham      3      2      H  14-15
         E2      Milton Keynes Dons       Barnsley      2      0      H  14-15
         E2            Notts County      Peterboro      1      2      A  14-15
('24/01/15', 'I1')
                     home      away  hgoal  agoal result season
date     league                                                
24/01/15 I1      Cagliari  Sassuolo      2      1      H  14-15
         I1         Lazio     Milan      3      1      H  14-15
('24/01/15', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
24/01/15 SP1     Ath Madrid    Vallecano      3      1      H  14-15
         SP1        Cordoba  Real Madrid      1      2      A  14-15
         SP1          Elche    Barcelona      0      6      A  14-15
         SP1       Sociedad        Eibar      1      0      H  14-15
         SP1     Villarreal      Levante      1      0      H  14-15
('24/01/15', 'T1')
                                 home                away  hgoal  agoal  \
date     league                                                           
24/01/15 T1      Akhisar Belediyespor       Eskisehirspor      2      2   
         T1                Buyuksehyr  Mersin Idman Yurdu      2      2   
         T1             Gaziantepspor       Balikesirspor      1      0   
         T1                 Kasimpasa          Fenerbahce      0      3   

                result season  
date     league                
24/01/15 T1          D  14-15  
         T1          D  14-15  
         T1          H  14-15  
         T1          A  14-15  
('24/01/16', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
24/01/16 D1      Ein Frankfurt      Wolfsburg      3      2      H  15-16
         D1         Schalke 04  Werder Bremen      1      3      A  15-16
('24/01/16', 'I1')
                       home     away  hgoal  agoal result season
date     league                                                 
24/01/16 I1      Fiorentina   Torino      2      0      H  15-16
         I1           Inter    Carpi      1      1      D  15-16
         I1        Juventus     Roma      1      0      H  15-16
         I1           Lazio   Chievo      4      1      H  15-16
         I1         Palermo  Udinese      4      1      H  15-16
         I1       Sampdoria   Napoli      2      4      A  15-16
         I1        Sassuolo  Bologna      0      2      A  15-16
         I1          Verona    Genoa      1      1      D  15-16
('24/01/16', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
24/01/16 SP1     Ath Bilbao        Eibar      5      2      H  15-16
         SP1     Ath Madrid      Sevilla      0      0      D  15-16
         SP1          Betis  Real Madrid      1      1      D  15-16
         SP1      La Coruna     Valencia      1      1      D  15-16
('24/01/16', 'T1')
                           home           away  hgoal  agoal result season
date     league                                                           
24/01/16 T1          Fenerbahce       Rizespor      2      1      H  15-16
         T1       Gaziantepspor      Bursaspor      2      3      A  15-16
         T1      Genclerbirligi    Antalyaspor      1      0      H  15-16
         T1           Sivasspor  Eskisehirspor      1      2      A  15-16
('24/02/12', 'D1')
                       home     away  hgoal  agoal result season
date     league                                                 
24/02/12 D1      M'gladbach  Hamburg      1      1      D  11-12
('24/02/12', 'T1')
                     home         away  hgoal  agoal result season
date     league                                                   
24/02/12 T1      Orduspor  Kayserispor      1      0      H  11-12
('24/02/13', 'D1')
                           home        away  hgoal  agoal result season
date     league                                                        
24/02/13 D1      Greuther Furth  Leverkusen      0      0      D  12-13
         D1          M'gladbach    Dortmund      1      1      D  12-13
('24/02/13', 'I1')
                      home     away  hgoal  agoal result season
date     league                                                
24/02/13 I1       Atalanta     Roma      2      3      A  12-13
         I1       Cagliari   Torino      4      3      H  12-13
         I1          Inter    Milan      1      1      D  12-13
         I1       Juventus    Siena      3      0      H  12-13
         I1          Parma  Catania      1      2      A  12-13
         I1      Sampdoria   Chievo      2      0      H  12-13
('24/02/13', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
24/02/13 SP1     Ath Madrid     Espanol      1      0      H  12-13
         SP1          Betis      Malaga      3      0      H  12-13
         SP1          Celta     Granada      2      1      H  12-13
         SP1      Vallecano  Valladolid      1      2      A  12-13
('24/02/13', 'T1')
                        home                  away  hgoal  agoal result season
date     league                                                               
24/02/13 T1       Fenerbahce             Kasimpasa      3      1      H  12-13
         T1      Karabukspor  Akhisar Belediyespor      0      2      A  12-13
         T1      Kayserispor        Genclerbirligi      1      0      H  12-13
('24/02/14', 'I1')
                   home        away  hgoal  agoal result season
date     league                                                
24/02/14 I1      Napoli       Genoa      1      1      D  13-14
         I1       Parma  Fiorentina      2      2      D  13-14
('24/02/14', 'SP1')
                    home        away  hgoal  agoal result season
date     league                                                 
24/02/14 SP1     Espanol  Villarreal      1      2      A  13-14
('24/02/14', 'T1')
                       home        away  hgoal  agoal result season
date     league                                                    
24/02/14 T1      Elazigspor  Fenerbahce      1      1      D  13-14
('24/02/15', 'E2')
                       home              away  hgoal  agoal result season
date     league                                                          
24/02/15 E2       Doncaster      Bristol City      1      3      A  14-15
         E2         Preston           Walsall      1      0      H  14-15
         E2        Rochdale  Sheffield United      1      2      A  14-15
         E2      Scunthorpe          Barnsley      0      1      A  14-15
         E2         Swindon          Bradford      2      1      H  14-15
('24/02/15', 'I1')
                      home   away  hgoal  agoal result season
date     league                                              
24/02/15 I1      Sampdoria  Genoa      1      1      D  14-15
('24/03/12', 'D1')
                          home            away  hgoal  agoal result season
date     league                                                           
24/03/12 D1      Bayern Munich        Hannover      2      1      H  11-12
         D1           Freiburg  Kaiserslautern      2      0      H  11-12
         D1              Mainz          Hertha      1      3      A  11-12
         D1         M'gladbach      Hoffenheim      1      2      A  11-12
         D1         Schalke 04      Leverkusen      2      0      H  11-12
         D1      Werder Bremen        Augsburg      1      1      D  11-12
('24/03/12', 'E2')
                          home                away  hgoal  agoal result season
date     league                                                               
24/03/12 E2          Brentford            Rochdale      2      0      H  11-12
         E2         Colchester            Carlisle      1      1      D  11-12
         E2       Huddersfield            Charlton      1      0      H  11-12
         E2      Leyton Orient      Sheffield Weds      0      1      A  11-12
         E2             Oldham         Bournemouth      1      0      H  11-12
         E2            Preston                Bury      1      1      D  11-12
         E2         Scunthorpe        Notts County      0      0      D  11-12
         E2           Tranmere              Exeter      2      0      H  11-12
         E2            Walsall           Stevenage      1      1      D  11-12
         E2            Wycombe  Milton Keynes Dons      1      1      D  11-12
         E2             Yeovil          Hartlepool      0      1      A  11-12
('24/03/12', 'I1')
                    home     away  hgoal  agoal result season
date     league                                              
24/03/12 I1        Milan     Roma      2      1      H  11-12
         I1      Palermo  Udinese      1      1      D  11-12
('24/03/12', 'SP1')
                        home       away  hgoal  agoal result season
date     league                                                    
24/03/12 SP1          Getafe   Valencia      3      1      H  11-12
         SP1        Mallorca  Barcelona      0      2      A  11-12
         SP1     Real Madrid   Sociedad      5      1      H  11-12
('24/03/12', 'T1')
                       home       away  hgoal  agoal result season
date     league                                                   
24/03/12 T1      Fenerbahce  Bursaspor      1      0      H  11-12
('24/03/13', 'E2')
                     home       away  hgoal  agoal result season
date     league                                                 
24/03/13 E2      Tranmere  Stevenage      3      1      H  12-13
('24/03/14', 'SP1')
                    home      away  hgoal  agoal result season
date     league                                               
24/03/14 SP1     Almeria  Sociedad      4      3      H  13-14
('24/03/14', 'T1')
                          home        away  hgoal  agoal result season
date     league                                                       
24/03/14 T1      Gaziantepspor  Fenerbahce      0      3      A  13-14
('24/03/15', 'E2')
                             home        away  hgoal  agoal result season
date     league                                                          
24/03/15 E2                Oldham    Rochdale      3      0      H  14-15
         E2      Sheffield United  Scunthorpe      4      0      H  14-15
('24/04/12', 'I1')
                     home     away  hgoal  agoal result season
date     league                                               
24/04/12 I1      Atalanta   Chievo      1      0      H  11-12
         I1      Cagliari  Catania      3      0      H  11-12
('24/04/15', 'D1')
                  home        away  hgoal  agoal result season
date     league                                               
24/04/15 D1      Mainz  Schalke 04      2      0      H  14-15
('24/04/15', 'SP1')
                    home        away  hgoal  agoal result season
date     league                                                 
24/04/15 SP1     Cordoba  Ath Bilbao      0      1      A  14-15
('24/04/15', 'T1')
                      home                away  hgoal  agoal result season
date     league                                                           
24/04/15 T1      Sivasspor  Mersin Idman Yurdu      1      2      A  14-15
('24/04/16', 'D1')
                          home        away  hgoal  agoal result season
date     league                                                       
24/04/16 D1      Ein Frankfurt       Mainz      2      1      H  15-16
         D1         M'gladbach  Hoffenheim      3      1      H  15-16
('24/04/16', 'I1')
                       home      away  hgoal  agoal result season
date     league                                                  
24/04/16 I1        Atalanta    Chievo      1      0      H  15-16
         I1         Bologna     Genoa      2      0      H  15-16
         I1      Fiorentina  Juventus      1      2      A  15-16
         I1       Frosinone   Palermo      0      2      A  15-16
         I1       Sampdoria     Lazio      2      1      H  15-16
         I1          Torino  Sassuolo      1      3      A  15-16
('24/04/16', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
24/04/16 SP1         Getafe    Valencia      2      2      D  15-16
         SP1        Levante  Ath Bilbao      2      2      D  15-16
         SP1        Sevilla       Betis      2      0      H  15-16
         SP1     Villarreal    Sociedad      0      0      D  15-16
('24/04/16', 'T1')
                               home           away  hgoal  agoal result season
date     league                                                               
24/04/16 T1             Galatasaray      Kasimpasa      4      1      H  15-16
         T1               Konyaspor       Rizespor      3      1      H  15-16
         T1      Mersin Idman Yurdu  Eskisehirspor      1      2      A  15-16
         T1             Trabzonspor     Fenerbahce      0      4      A  15-16
('24/05/15', 'I1')
                    home        away  hgoal  agoal result season
date     league                                                 
24/05/15 I1       Cesena    Cagliari      0      1      A  14-15
         I1       Chievo    Atalanta      1      1      D  14-15
         I1       Empoli   Sampdoria      1      1      D  14-15
         I1        Milan      Torino      3      0      H  14-15
         I1      Palermo  Fiorentina      2      3      A  14-15
         I1        Parma      Verona      2      2      D  14-15
         I1      Udinese    Sassuolo      0      1      A  14-15
('24/05/15', 'T1')
                          home           away  hgoal  agoal result season
date     league                                                          
24/05/15 T1        Galatasaray       Besiktas      2      0      H  14-15
         T1      Gaziantepspor  Eskisehirspor      3      2      H  14-15
         T1        Karabukspor      Sivasspor      2      1      H  14-15
('24/08/12', 'D1')
                     home           away  hgoal  agoal result season
date     league                                                     
24/08/12 D1      Dortmund  Werder Bremen      2      1      H  12-13
('24/08/12', 'T1')
                      home         away  hgoal  agoal result season
date     league                                                    
24/08/12 T1      Kasimpasa  Karabukspor      2      1      H  12-13
('24/08/13', 'D1')
                          home        away  hgoal  agoal result season
date     league                                                       
24/08/13 D1      Bayern Munich    Nurnberg      2      0      H  13-14
         D1           Hannover  Schalke 04      2      1      H  13-14
         D1             Hertha     Hamburg      1      0      H  13-14
         D1         Hoffenheim    Freiburg      3      3      D  13-14
         D1         Leverkusen  M'gladbach      4      2      H  13-14
         D1              Mainz   Wolfsburg      2      0      H  13-14
('24/08/13', 'E2')
                               home              away  hgoal  agoal result  \
date     league                                                              
24/08/13 E2                Bradford  Sheffield United      2      0      H   
         E2               Brentford           Walsall      1      0      H   
         E2           Leyton Orient             Crewe      2      0      H   
         E2      Milton Keynes Dons      Bristol City      2      2      D   
         E2            Notts County         Stevenage      0      1      A   
         E2                  Oldham         Port Vale      3      1      H   
         E2               Rotherham        Shrewsbury      2      2      D   
         E2                 Swindon        Gillingham      2      2      D   
         E2                Tranmere         Peterboro      0      5      A   

                season  
date     league         
24/08/13 E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
('24/08/13', 'I1')
                      home      away  hgoal  agoal result season
date     league                                                 
24/08/13 I1      Sampdoria  Juventus      0      1      A  13-14
         I1         Verona     Milan      2      1      H  13-14
('24/08/13', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
24/08/13 SP1          Elche    Sociedad      1      1      D  13-14
         SP1        Espanol    Valencia      3      1      H  13-14
         SP1     Villarreal  Valladolid      2      1      H  13-14
('24/08/13', 'T1')
                          home           away  hgoal  agoal result season
date     league                                                          
24/08/13 T1         Fenerbahce  Eskisehirspor      1      0      H  13-14
         T1      Gaziantepspor    Antalyaspor      0      0      D  13-14
         T1          Kasimpasa    Kayserispor      3      1      H  13-14
('24/08/14', 'D1')
                       home       away  hgoal  agoal result season
date     league                                                   
24/08/14 D1      M'gladbach  Stuttgart      1      1      D  14-15
         D1       Paderborn      Mainz      2      2      D  14-15
('24/08/14', 'SP1')
                      home        away  hgoal  agoal result season
date     league                                                   
24/08/14 SP1     Barcelona       Elche      3      0      H  14-15
         SP1         Celta      Getafe      3      1      H  14-15
         SP1         Eibar    Sociedad      1      0      H  14-15
         SP1       Levante  Villarreal      0      2      A  14-15
('24/08/15', 'SP1')
                    home   away  hgoal  agoal result season
date     league                                            
24/08/15 SP1     Granada  Eibar      1      3      A  15-16
('24/08/15', 'T1')
                        home         away  hgoal  agoal result season
date     league                                                      
24/08/15 T1      Galatasaray  Osmanlispor      1      2      A  15-16
('24/09/11', 'D1')
                          home            away  hgoal  agoal result season
date     league                                                           
24/09/11 D1           Augsburg        Hannover      0      0      D  11-12
         D1      Bayern Munich      Leverkusen      3      0      H  11-12
         D1              Mainz        Dortmund      1      2      A  11-12
         D1         M'gladbach        Nurnberg      1      0      H  11-12
         D1         Schalke 04        Freiburg      4      2      H  11-12
         D1          Wolfsburg  Kaiserslautern      1      0      H  11-12
('24/09/11', 'E2')
                           home                away  hgoal  agoal result  \
date     league                                                            
24/09/11 E2         Bournemouth          Hartlepool      1      2      A   
         E2                Bury  Milton Keynes Dons      0      0      D   
         E2            Carlisle           Stevenage      1      0      H   
         E2            Charlton        Chesterfield      3      1      H   
         E2          Colchester             Walsall      1      0      H   
         E2        Huddersfield       Leyton Orient      2      2      D   
         E2        Notts County            Rochdale      2      0      H   
         E2              Oldham           Brentford      0      2      A   
         E2             Preston            Tranmere      2      1      H   
         E2          Scunthorpe              Yeovil      2      1      H   
         E2      Sheffield Weds              Exeter      3      0      H   
         E2             Wycombe    Sheffield United      1      0      H   

                season  
date     league         
24/09/11 E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
('24/09/11', 'I1')
                    home        away  hgoal  agoal result season
date     league                                                 
24/09/11 I1      Bologna       Inter      1      3      A  11-12
         I1        Milan      Cesena      1      0      H  11-12
         I1       Napoli  Fiorentina      0      0      D  11-12
('24/09/11', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
24/09/11 SP1      Ath Bilbao  Villarreal      1      1      D  11-12
         SP1       Barcelona  Ath Madrid      5      0      H  11-12
         SP1     Real Madrid   Vallecano      6      2      H  11-12
         SP1         Sevilla    Valencia      1      0      H  11-12
('24/09/11', 'T1')
                               home           away  hgoal  agoal result season
date     league                                                               
24/09/11 T1              Manisaspor     Buyuksehyr      0      2      A  11-12
         T1      Mersin Idman Yurdu  Gaziantepspor      2      0      H  11-12
         T1             Trabzonspor    Karabukspor      3      1      H  11-12
('24/09/12', 'SP1')
                      home         away  hgoal  agoal result season
date     league                                                    
24/09/12 SP1     La Coruna      Sevilla      0      2      A  12-13
         SP1     Vallecano  Real Madrid      0      2      A  12-13
('24/09/12', 'T1')
                       home         away  hgoal  agoal result season
date     league                                                     
24/09/12 T1      Fenerbahce  Trabzonspor      0      0      D  12-13
('24/09/13', 'I1')
                    home   away  hgoal  agoal result season
date     league                                            
24/09/13 I1      Udinese  Genoa      1      0      H  13-14
('24/09/13', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
24/09/13 SP1     Ath Madrid     Osasuna      2      1      H  13-14
         SP1      Barcelona    Sociedad      4      1      H  13-14
         SP1        Levante  Valladolid      1      1      D  13-14
         SP1         Malaga     Almeria      2      0      H  13-14
('24/09/14', 'D1')
                       home       away  hgoal  agoal result season
date     league                                                   
24/09/14 D1        Dortmund  Stuttgart      2      2      D  14-15
         D1        Hannover    FC Koln      1      0      H  14-15
         D1          Hertha  Wolfsburg      1      0      H  14-15
         D1      Leverkusen   Augsburg      1      0      H  14-15
         D1      M'gladbach    Hamburg      1      0      H  14-15
('24/09/14', 'I1')
                       home      away  hgoal  agoal result season
date     league                                                  
24/09/14 I1        Cagliari    Torino      1      2      A  14-15
         I1      Fiorentina  Sassuolo      0      0      D  14-15
         I1           Inter  Atalanta      2      0      H  14-15
         I1        Juventus    Cesena      3      0      H  14-15
         I1          Napoli   Palermo      3      3      D  14-15
         I1           Parma      Roma      1      2      A  14-15
         I1       Sampdoria    Chievo      2      1      H  14-15
         I1          Verona     Genoa      2      2      D  14-15
('24/09/14', 'SP1')
                      home        away  hgoal  agoal result season
date     league                                                   
24/09/14 SP1       Almeria  Ath Madrid      0      1      A  14-15
         SP1         Eibar  Villarreal      1      1      D  14-15
         SP1       Granada     Levante      0      1      A  14-15
         SP1        Malaga   Barcelona      0      0      D  14-15
         SP1       Sevilla    Sociedad      1      0      H  14-15
         SP1     Vallecano  Ath Bilbao      2      1      H  14-15
('24/09/15', 'I1')
                   home      away  hgoal  agoal result season
date     league                                              
24/09/15 I1      Empoli  Atalanta      0      1      A  15-16
('24/09/15', 'SP1')
                  home       away  hgoal  agoal result season
date     league                                              
24/09/15 SP1     Betis  La Coruna      1      2      A  15-16
('24/10/11', 'T1')
                               home      away  hgoal  agoal result season
date     league                                                          
24/10/11 T1      Mersin Idman Yurdu  Besiktas      0      1      A  11-12
('24/10/14', 'D1')
                          home     away  hgoal  agoal result season
date     league                                                    
24/10/14 D1      Werder Bremen  FC Koln      0      1      A  14-15
('24/10/14', 'SP1')
                  home     away  hgoal  agoal result season
date     league                                            
24/10/14 SP1     Celta  Levante      3      0      H  14-15
('24/10/14', 'T1')
                        home                  away  hgoal  agoal result season
date     league                                                               
24/10/14 T1      Karabukspor  Akhisar Belediyespor      2      1      H  14-15
         T1        Kasimpasa             Konyaspor      2      0      H  14-15
('24/10/15', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
24/10/15 D1      Bayern Munich        FC Koln      4      0      H  15-16
         D1          Darmstadt      Wolfsburg      0      1      A  15-16
         D1           Hannover  Ein Frankfurt      1      2      A  15-16
         D1         Ingolstadt         Hertha      0      1      A  15-16
         D1         Leverkusen      Stuttgart      4      3      H  15-16
         D1              Mainz  Werder Bremen      1      3      A  15-16
('24/10/15', 'E2')
                             home            away  hgoal  agoal result season
date     league                                                              
24/10/15 E2              Barnsley  Fleetwood Town      0      1      A  15-16
         E2             Blackpool           Crewe      2      0      H  15-16
         E2              Bradford           Wigan      1      1      D  15-16
         E2                Burton       Port Vale      2      0      H  15-16
         E2          Chesterfield      Scunthorpe      0      3      A  15-16
         E2            Colchester         Walsall      4      4      D  15-16
         E2            Gillingham        Southend      1      1      D  15-16
         E2             Peterboro       Doncaster      4      0      H  15-16
         E2              Rochdale          Oldham      0      0      D  15-16
         E2      Sheffield United        Millwall      1      2      A  15-16
         E2            Shrewsbury            Bury      2      0      H  15-16
         E2               Swindon        Coventry      2      2      D  15-16
('24/10/15', 'I1')
                    home     away  hgoal  agoal result season
date     league                                              
24/10/15 I1        Carpi  Bologna      1      2      A  15-16
         I1       Empoli    Genoa      2      0      H  15-16
         I1      Palermo    Inter      1      1      D  15-16
('24/10/15', 'SP1')
                    home         away  hgoal  agoal result season
date     league                                                  
24/10/15 SP1       Celta  Real Madrid      1      3      A  15-16
         SP1     Granada        Betis      1      1      D  15-16
         SP1      Malaga    La Coruna      2      0      H  15-16
         SP1     Sevilla       Getafe      5      0      H  15-16
('24/10/15', 'T1')
                           home                away  hgoal  agoal result  \
date     league                                                            
24/10/15 T1       Gaziantepspor  Mersin Idman Yurdu      1      0      H   
         T1      Genclerbirligi         Osmanlispor      1      0      H   
         T1           Kasimpasa           Bursaspor      0      1      A   
         T1           Sivasspor         Trabzonspor      0      2      A   

                season  
date     league         
24/10/15 T1      15-16  
         T1      15-16  
         T1      15-16  
         T1      15-16  
('24/11/12', 'D1')
                           home           away  hgoal  agoal result season
date     league                                                           
24/11/12 D1       Bayern Munich       Hannover      5      0      H  12-13
         D1      Greuther Furth       Nurnberg      0      0      D  12-13
         D1               Mainz       Dortmund      1      2      A  12-13
         D1          Schalke 04  Ein Frankfurt      1      1      D  12-13
         D1           Wolfsburg  Werder Bremen      1      1      D  12-13
('24/11/12', 'E2')
                               home              away  hgoal  agoal result  \
date     league                                                              
24/11/12 E2               Brentford  Sheffield United      2      0      H   
         E2                    Bury       Bournemouth      2      2      D   
         E2                Coventry        Portsmouth      1      1      D   
         E2                   Crewe      Crawley Town      2      0      H   
         E2               Doncaster        Scunthorpe      4      0      H   
         E2           Leyton Orient           Preston      2      0      H   
         E2      Milton Keynes Dons        Colchester      5      1      H   
         E2            Notts County           Swindon      1      0      H   
         E2                  Oldham        Shrewsbury      1      0      H   
         E2               Stevenage          Tranmere      1      1      D   
         E2                 Walsall        Hartlepool      1      1      D   
         E2                  Yeovil          Carlisle      1      3      A   

                season  
date     league         
24/11/12 E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
('24/11/12', 'I1')
                    home     away  hgoal  agoal result season
date     league                                              
24/11/12 I1      Palermo  Catania      3      1      H  12-13
('24/11/12', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
24/11/12 SP1          Betis  Real Madrid      1      0      H  12-13
         SP1         Malaga     Valencia      4      0      H  12-13
         SP1     Valladolid      Granada      1      0      H  12-13
         SP1      Vallecano     Mallorca      2      0      H  12-13
('24/11/12', 'T1')
                       home         away  hgoal  agoal result season
date     league                                                     
24/11/12 T1       Bursaspor  Antalyaspor      1      1      D  12-13
         T1      Elazigspor  Galatasaray      0      1      A  12-13
         T1       Kasimpasa     Orduspor      1      1      D  12-13
('24/11/13', 'D1')
                          home      away  hgoal  agoal result season
date     league                                                     
24/11/13 D1            Hamburg  Hannover      3      1      H  13-14
         D1      Werder Bremen     Mainz      2      3      A  13-14
('24/11/13', 'I1')
                      home        away  hgoal  agoal result season
date     league                                                   
24/11/13 I1        Bologna       Inter      1      1      D  13-14
         I1        Livorno    Juventus      0      2      A  13-14
         I1      Sampdoria       Lazio      1      1      D  13-14
         I1       Sassuolo    Atalanta      2      0      H  13-14
         I1         Torino     Catania      4      1      H  13-14
         I1        Udinese  Fiorentina      1      0      H  13-14
('24/11/13', 'SP1')
                      home        away  hgoal  agoal result season
date     league                                                   
24/11/13 SP1         Elche    Valencia      2      1      H  13-14
         SP1       Levante  Villarreal      0      3      A  13-14
         SP1       Sevilla       Betis      4      0      H  13-14
         SP1     Vallecano     Espanol      1      4      A  13-14
('24/11/13', 'T1')
                          home            away  hgoal  agoal result season
date     league                                                           
24/11/13 T1        Antalyaspor      Fenerbahce      1      2      A  13-14
         T1        Erciyesspor  Genclerbirligi      1      0      H  13-14
         T1      Gaziantepspor      Elazigspor      3      1      H  13-14
         T1        Trabzonspor   Eskisehirspor      1      0      H  13-14
('24/11/14', 'I1')
                  home     away  hgoal  agoal result season
date     league                                            
24/11/14 I1      Genoa  Palermo      1      1      D  14-15
('24/11/14', 'SP1')
                    home     away  hgoal  agoal result season
date     league                                              
24/11/14 SP1     Granada  Almeria      0      0      D  14-15
('24/11/14', 'T1')
                          home        away  hgoal  agoal result season
date     league                                                       
24/11/14 T1      Balikesirspor   Sivasspor      1      3      A  14-15
         T1          Bursaspor  Fenerbahce      1      1      D  14-15
('24/11/15', 'E2')
                             home          away  hgoal  agoal result season
date     league                                                            
24/11/15 E2              Bradford      Coventry      0      0      D  15-16
         E2                  Bury    Scunthorpe      1      2      A  15-16
         E2            Colchester         Crewe      2      3      A  15-16
         E2             Doncaster  Chesterfield      3      0      H  15-16
         E2        Fleetwood Town      Millwall      2      1      H  15-16
         E2            Gillingham      Rochdale      2      0      H  15-16
         E2                Oldham      Southend      2      5      A  15-16
         E2             Peterboro      Barnsley      3      2      H  15-16
         E2             Port Vale     Blackpool      2      0      H  15-16
         E2      Sheffield United    Shrewsbury      2      4      A  15-16
         E2               Swindon       Walsall      2      1      H  15-16
         E2                 Wigan        Burton      0      1      A  15-16
('25/01/12', 'T1')
                           home           away  hgoal  agoal result season
date     league                                                           
25/01/12 T1          Buyuksehyr     Fenerbahce      3      2      H  11-12
         T1         Galatasaray     Ankaragucu      4      0      H  11-12
         T1      Genclerbirligi      Bursaspor      2      2      D  11-12
         T1            Orduspor    Karabukspor      3      2      H  11-12
         T1         Trabzonspor  Eskisehirspor      4      1      H  11-12
('25/01/13', 'D1')
                     home      away  hgoal  agoal result season
date     league                                                
25/01/13 D1      Dortmund  Nurnberg      3      0      H  12-13
('25/01/13', 'T1')
                        home       away  hgoal  agoal result season
date     league                                                    
25/01/13 T1      Karabukspor  Kasimpasa      0      3      A  12-13
('25/01/14', 'D1')
                          home        away  hgoal  agoal result season
date     league                                                       
25/01/14 D1           Dortmund    Augsburg      2      2      D  13-14
         D1      Ein Frankfurt      Hertha      1      0      H  13-14
         D1           Freiburg  Leverkusen      3      2      H  13-14
         D1           Nurnberg  Hoffenheim      4      0      H  13-14
         D1          Stuttgart       Mainz      1      2      A  13-14
         D1          Wolfsburg    Hannover      1      3      A  13-14
('25/01/14', 'E2')
                         home          away  hgoal  agoal result season
date     league                                                        
25/01/14 E2      Notts County       Walsall      1      5      A  13-14
         E2            Oldham     Peterboro      5      4      H  13-14
         E2         Rotherham  Crawley Town      2      2      D  13-14
         E2           Swindon    Shrewsbury      3      1      H  13-14
         E2          Tranmere         Crewe      1      0      H  13-14
         E2            Wolves  Bristol City      3      1      H  13-14
('25/01/14', 'I1')
                   home      away  hgoal  agoal result season
date     league                                              
25/01/14 I1       Lazio  Juventus      1      1      D  13-14
         I1      Napoli    Chievo      1      1      D  13-14
('25/01/14', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
25/01/14 SP1     Real Madrid     Granada      2      0      H  13-14
         SP1         Sevilla     Levante      2      3      A  13-14
         SP1        Valencia     Espanol      2      2      D  13-14
         SP1      Valladolid  Villarreal      1      0      H  13-14
('25/01/14', 'T1')
                           home           away  hgoal  agoal result season
date     league                                                           
25/01/14 T1           Bursaspor  Eskisehirspor      3      1      H  13-14
         T1      Genclerbirligi       Rizespor      3      1      H  13-14
         T1         Trabzonspor       Besiktas      1      1      D  13-14
('25/01/15', 'I1')
                       home      away  hgoal  agoal result season
date     league                                                  
25/01/15 I1      Fiorentina      Roma      1      1      D  14-15
         I1           Inter    Torino      0      1      A  14-15
         I1        Juventus    Chievo      2      0      H  14-15
         I1           Parma    Cesena      1      2      A  14-15
         I1       Sampdoria   Palermo      1      1      D  14-15
         I1          Verona  Atalanta      1      0      H  14-15
('25/01/15', 'SP1')
                       home     away  hgoal  agoal result season
date     league                                                 
25/01/15 SP1     Ath Bilbao   Malaga      1      1      D  14-15
         SP1        Espanol  Almeria      3      0      H  14-15
         SP1      La Coruna  Granada      2      2      D  14-15
         SP1       Valencia  Sevilla      3      1      H  14-15
('25/01/15', 'T1')
                        home         away  hgoal  agoal result season
date     league                                                      
25/01/15 T1      Galatasaray     Rizespor      2      0      H  14-15
         T1      Karabukspor  Erciyesspor      1      2      A  14-15
('25/01/16', 'SP1')
                    home        away  hgoal  agoal result season
date     league                                                 
25/01/16 SP1     Levante  Las Palmas      3      2      H  15-16
('25/01/16', 'T1')
                       home       away  hgoal  agoal result season
date     league                                                   
25/01/16 T1      Buyuksehyr  Kasimpasa      1      1      D  15-16
('25/02/12', 'D1')
                          home            away  hgoal  agoal result season
date     league                                                           
25/02/12 D1           Augsburg          Hertha      3      0      H  11-12
         D1            FC Koln      Leverkusen      0      2      A  11-12
         D1              Mainz  Kaiserslautern      4      0      H  11-12
         D1          Stuttgart        Freiburg      4      1      H  11-12
         D1      Werder Bremen        Nurnberg      0      1      A  11-12
         D1          Wolfsburg      Hoffenheim      1      2      A  11-12
('25/02/12', 'E2')
                         home                away  hgoal  agoal result season
date     league                                                              
25/02/12 E2       Bournemouth  Milton Keynes Dons      0      1      A  11-12
         E2              Bury       Leyton Orient      1      1      D  11-12
         E2          Carlisle              Yeovil      3      2      H  11-12
         E2          Charlton           Stevenage      2      0      H  11-12
         E2        Colchester            Rochdale      0      0      D  11-12
         E2      Huddersfield              Exeter      2      0      H  11-12
         E2      Notts County        Chesterfield      1      0      H  11-12
         E2            Oldham            Tranmere      1      0      H  11-12
         E2           Preston             Walsall      0      0      D  11-12
         E2        Scunthorpe           Brentford      0      0      D  11-12
         E2           Wycombe          Hartlepool      5      0      H  11-12
('25/02/12', 'I1')
                  home      away  hgoal  agoal result season
date     league                                             
25/02/12 I1      Genoa     Parma      2      2      D  11-12
         I1      Milan  Juventus      1      1      D  11-12
('25/02/12', 'SP1')
                      home      away  hgoal  agoal result season
date     league                                                 
25/02/12 SP1         Betis    Getafe      1      1      D  11-12
         SP1       Espanol   Levante      1      2      A  11-12
         SP1        Malaga  Zaragoza      5      1      H  11-12
         SP1     Santander  Sp Gijon      1      1      D  11-12
('25/02/12', 'T1')
                          home           away  hgoal  agoal result season
date     league                                                          
25/02/12 T1      Eskisehirspor     Fenerbahce      2      1      H  11-12
         T1        Karabukspor     Ankaragucu      3      2      H  11-12
         T1         Manisaspor  Gaziantepspor      0      2      A  11-12
         T1         Samsunspor      Bursaspor      0      3      A  11-12
('25/02/13', 'I1')
                    home     away  hgoal  agoal result season
date     league                                              
25/02/13 I1        Lazio  Pescara      2      0      H  12-13
         I1      Udinese   Napoli      0      0      D  12-13
('25/02/13', 'SP1')
                    home     away  hgoal  agoal result season
date     league                                              
25/02/13 SP1     Levante  Osasuna      0      2      A  12-13
('25/02/13', 'T1')
                        home      away  hgoal  agoal result season
date     league                                                   
25/02/13 T1      Galatasaray  Orduspor      4      2      H  12-13
('25/02/14', 'E2')
                       home                away  hgoal  agoal result season
date     league                                                            
25/02/14 E2      Colchester    Sheffield United      0      1      A  13-14
         E2          Oldham  Milton Keynes Dons      1      2      A  13-14
         E2         Preston           Rotherham      3      3      D  13-14
('25/03/12', 'D1')
                      home      away  hgoal  agoal result season
date     league                                                 
25/03/12 D1        FC Koln  Dortmund      1      6      A  11-12
         D1      Stuttgart  Nurnberg      1      0      H  11-12
('25/03/12', 'I1')
                     home        away  hgoal  agoal result season
date     league                                                  
25/03/12 I1      Atalanta     Bologna      2      0      H  11-12
         I1        Cesena       Parma      2      2      D  11-12
         I1        Chievo       Siena      1      1      D  11-12
         I1         Genoa  Fiorentina      2      2      D  11-12
         I1      Juventus       Inter      2      0      H  11-12
         I1         Lazio    Cagliari      1      0      H  11-12
         I1        Napoli     Catania      2      2      D  11-12
         I1        Novara       Lecce      0      0      D  11-12
('25/03/12', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
25/03/12 SP1     Ath Bilbao    Sp Gijon      1      1      D  11-12
         SP1          Betis   Santander      1      1      D  11-12
         SP1        Espanol      Malaga      1      2      A  11-12
         SP1        Levante     Osasuna      0      2      A  11-12
         SP1      Vallecano  Villarreal      0      2      A  11-12
         SP1       Zaragoza  Ath Madrid      1      0      H  11-12
('25/03/12', 'T1')
                          home                away  hgoal  agoal result season
date     league                                                               
25/03/12 T1         Ankaragucu         Antalyaspor      0      3      A  11-12
         T1      Eskisehirspor       Gaziantepspor      0      2      A  11-12
         T1        Galatasaray         Trabzonspor      1      1      D  11-12
         T1        Karabukspor         Kayserispor      1      0      H  11-12
         T1         Manisaspor           Sivasspor      1      3      A  11-12
         T1           Orduspor      Genclerbirligi      0      0      D  11-12
         T1         Samsunspor  Mersin Idman Yurdu      2      0      H  11-12
('25/03/14', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
25/03/14 D1       Braunschweig          Mainz      3      1      H  13-14
         D1           Dortmund     Schalke 04      0      0      D  13-14
         D1             Hertha  Bayern Munich      1      3      A  13-14
         D1      Werder Bremen      Wolfsburg      1      3      A  13-14
('25/03/14', 'E2')
                               home              away  hgoal  agoal result  \
date     league                                                              
25/03/14 E2                Bradford           Walsall      0      2      A   
         E2            Bristol City         Port Vale      5      0      H   
         E2                Carlisle        Shrewsbury      0      0      D   
         E2            Crawley Town  Sheffield United      0      2      A   
         E2                   Crewe      Notts County      1      3      A   
         E2           Leyton Orient            Oldham      1      1      D   
         E2      Milton Keynes Dons        Gillingham      0      1      A   
         E2                 Preston         Peterboro      3      1      H   
         E2               Rotherham         Brentford      3      0      H   
         E2                Tranmere           Swindon      1      2      A   
         E2                  Wolves        Colchester      4      2      H   

                season  
date     league         
25/03/14 E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
('25/03/14', 'I1')
                 home    away  hgoal  agoal result season
date     league                                          
25/03/14 I1      Roma  Torino      2      1      H  13-14
('25/03/14', 'SP1')
                   home        away  hgoal  agoal result season
date     league                                                
25/03/14 SP1      Elche  Ath Bilbao      0      0      D  13-14
         SP1     Malaga     Espanol      1      2      A  13-14
('25/03/16', 'E2')
                             home        away  hgoal  agoal result season
date     league                                                          
25/03/16 E2              Barnsley  Scunthorpe      0      0      D  15-16
         E2             Blackpool        Bury      1      1      D  15-16
         E2            Colchester   Doncaster      4      1      H  15-16
         E2             Peterboro    Coventry      3      1      H  15-16
         E2              Rochdale    Southend      4      1      H  15-16
         E2      Sheffield United       Crewe      3      2      H  15-16
         E2            Shrewsbury   Port Vale      1      1      D  15-16
         E2               Swindon       Wigan      1      4      A  15-16
('25/04/12', 'I1')
                    home        away  hgoal  agoal result season
date     league                                                 
25/04/12 I1       Cesena    Juventus      0      1      A  11-12
         I1        Lecce      Napoli      0      2      A  11-12
         I1        Milan       Genoa      1      0      H  11-12
         I1       Novara       Lazio      2      1      H  11-12
         I1      Palermo       Parma      1      2      A  11-12
         I1         Roma  Fiorentina      1      2      A  11-12
         I1        Siena     Bologna      1      1      D  11-12
         I1      Udinese       Inter      1      3      A  11-12
('25/04/14', 'D1')
                     home       away  hgoal  agoal result season
date     league                                                 
25/04/14 D1      Hannover  Stuttgart      0      0      D  13-14
('25/04/14', 'E2')
                      home              away  hgoal  agoal result season
date     league                                                         
25/04/14 E2      Port Vale  Sheffield United      1      2      A  13-14
('25/04/14', 'I1')
                 home   away  hgoal  agoal result season
date     league                                         
25/04/14 I1      Roma  Milan      2      0      H  13-14
('25/04/14', 'SP1')
                  home     away  hgoal  agoal result season
date     league                                            
25/04/14 SP1     Elche  Levante      1      1      D  13-14
('25/04/14', 'T1')
                           home       away  hgoal  agoal result season
date     league                                                       
25/04/14 T1      Genclerbirligi  Bursaspor      1      0      H  13-14
('25/04/15', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
25/04/15 D1      Bayern Munich         Hertha      1      0      H  14-15
         D1           Dortmund  Ein Frankfurt      2      0      H  14-15
         D1            FC Koln     Leverkusen      1      1      D  14-15
         D1            Hamburg       Augsburg      3      2      H  14-15
         D1           Hannover     Hoffenheim      1      2      A  14-15
         D1          Stuttgart       Freiburg      2      2      D  14-15
('25/04/15', 'E2')
                           home                away  hgoal  agoal result  \
date     league                                                            
25/04/15 E2            Bradford            Barnsley      1      0      H   
         E2        Chesterfield        Bristol City      0      2      A   
         E2            Coventry               Crewe      1      3      A   
         E2      Fleetwood Town          Colchester      2      3      A   
         E2       Leyton Orient    Sheffield United      1      1      D   
         E2        Notts County           Doncaster      2      1      H   
         E2           Peterboro        Crawley Town      4      3      H   
         E2             Preston             Swindon      3      0      H   
         E2            Rochdale  Milton Keynes Dons      2      3      A   
         E2          Scunthorpe          Gillingham      2      1      H   
         E2             Walsall              Oldham      2      0      H   
         E2              Yeovil           Port Vale      1      2      A   

                season  
date     league         
25/04/15 E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
('25/04/15', 'I1')
                    home   away  hgoal  agoal result season
date     league                                            
25/04/15 I1      Udinese  Milan      2      1      H  14-15
('25/04/15', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
25/04/15 SP1     Ath Madrid       Elche      3      0      H  14-15
         SP1        Espanol   Barcelona      0      2      A  14-15
         SP1         Getafe     Levante      0      1      A  14-15
         SP1       Sociedad  Villarreal      0      0      D  14-15
('25/04/15', 'T1')
                          home        away  hgoal  agoal result season
date     league                                                       
25/04/15 T1          Bursaspor  Buyuksehyr      4      1      H  14-15
         T1      Eskisehirspor  Fenerbahce      1      1      D  14-15
         T1           Rizespor   Kasimpasa      1      3      A  14-15
('25/04/16', 'I1')
                   home    away  hgoal  agoal result season
date     league                                            
25/04/16 I1       Carpi  Empoli      1      0      H  15-16
         I1        Roma  Napoli      1      0      H  15-16
         I1      Verona   Milan      2      1      H  15-16
('25/04/16', 'SP1')
                  home     away  hgoal  agoal result season
date     league                                            
25/04/16 SP1     Celta  Granada      2      1      H  15-16
('25/04/16', 'T1')
                          home            away  hgoal  agoal result season
date     league                                                           
25/04/16 T1      Gaziantepspor  Genclerbirligi      1      3      A  15-16
('25/05/15', 'I1')
                  home  away  hgoal  agoal result season
date     league                                         
25/05/15 I1      Lazio  Roma      1      2      A  14-15
('25/05/15', 'T1')
                                 home        away  hgoal  agoal result season
date     league                                                              
25/05/15 T1      Akhisar Belediyespor   Bursaspor      0      1      A  14-15
         T1                Buyuksehyr  Fenerbahce      2      2      D  14-15
('25/08/12', 'D1')
                           home                away  hgoal  agoal result  \
date     league                                                            
25/08/12 D1            Augsburg  Fortuna Dusseldorf      0      2      A   
         D1       Ein Frankfurt          Leverkusen      2      1      H   
         D1            Freiburg               Mainz      1      1      D   
         D1      Greuther Furth       Bayern Munich      0      3      A   
         D1             Hamburg            Nurnberg      0      1      A   
         D1          M'gladbach          Hoffenheim      2      1      H   

                season  
date     league         
25/08/12 D1      12-13  
         D1      12-13  
         D1      12-13  
         D1      12-13  
         D1      12-13  
         D1      12-13  
('25/08/12', 'E2')
                         home                away  hgoal  agoal result season
date     league                                                              
25/08/12 E2       Bournemouth             Preston      1      1      D  12-13
         E2         Brentford               Crewe      5      1      H  12-13
         E2          Carlisle          Portsmouth      4      2      H  12-13
         E2        Colchester    Sheffield United      1      1      D  12-13
         E2          Coventry                Bury      2      2      D  12-13
         E2         Doncaster        Crawley Town      0      1      A  12-13
         E2      Notts County             Walsall      0      1      A  12-13
         E2            Oldham           Stevenage      0      1      A  12-13
         E2        Scunthorpe              Yeovil      0      4      A  12-13
         E2        Shrewsbury            Tranmere      1      1      D  12-13
         E2           Swindon  Milton Keynes Dons      1      0      H  12-13
('25/08/12', 'I1')
                       home     away  hgoal  agoal result season
date     league                                                 
25/08/12 I1      Fiorentina  Udinese      2      1      H  12-13
         I1        Juventus    Parma      2      0      H  12-13
('25/08/12', 'SP1')
                     home       away  hgoal  agoal result season
date     league                                                 
25/08/12 SP1        Betis  Vallecano      1      2      A  12-13
         SP1      Espanol   Zaragoza      1      2      A  12-13
         SP1       Malaga   Mallorca      1      1      D  12-13
         SP1     Sociedad      Celta      2      1      H  12-13
('25/08/12', 'T1')
                                 home                away  hgoal  agoal  \
date     league                                                           
25/08/12 T1      Akhisar Belediyespor      Genclerbirligi      0      0   
         T1                Fenerbahce       Gaziantepspor      3      0   
         T1                  Orduspor       Eskisehirspor      2      0   
         T1                 Sivasspor  Mersin Idman Yurdu      3      3   

                result season  
date     league                
25/08/12 T1          D  12-13  
         T1          H  12-13  
         T1          H  12-13  
         T1          D  12-13  
('25/08/13', 'D1')
                         home           away  hgoal  agoal result season
date     league                                                         
25/08/13 D1          Augsburg      Stuttgart      2      1      H  13-14
         D1      Braunschweig  Ein Frankfurt      0      2      A  13-14
('25/08/13', 'E2')
                     home     away  hgoal  agoal result season
date     league                                               
25/08/13 E2      Coventry  Preston      4      4      D  13-14
('25/08/13', 'I1')
                     home      away  hgoal  agoal result season
date     league                                                
25/08/13 I1      Cagliari  Atalanta      2      1      H  13-14
         I1         Inter     Genoa      2      0      H  13-14
         I1         Lazio   Udinese      2      1      H  13-14
         I1       Livorno      Roma      0      2      A  13-14
         I1        Napoli   Bologna      3      0      H  13-14
         I1         Parma    Chievo      0      0      D  13-14
         I1        Torino  Sassuolo      2      0      H  13-14
('25/08/13', 'SP1')
                       home       away  hgoal  agoal result season
date     league                                                   
25/08/13 SP1     Ath Madrid  Vallecano      5      0      H  13-14
         SP1          Betis      Celta      1      2      A  13-14
         SP1        Levante    Sevilla      0      0      D  13-14
         SP1         Malaga  Barcelona      0      1      A  13-14
('25/08/13', 'T1')
                       home         away  hgoal  agoal result season
date     league                                                     
25/08/13 T1       Bursaspor  Galatasaray      1      1      D  13-14
         T1      Elazigspor  Karabukspor      2      2      D  13-14
         T1       Sivasspor    Konyaspor      2      0      H  13-14
('25/08/14', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
25/08/14 SP1     Real Madrid     Cordoba      2      0      H  14-15
         SP1       Vallecano  Ath Madrid      0      0      D  14-15
('25/09/11', 'D1')
                          home        away  hgoal  agoal result season
date     league                                                       
25/09/11 D1            FC Koln  Hoffenheim      2      0      H  11-12
         D1      Werder Bremen      Hertha      2      1      H  11-12
('25/09/11', 'I1')
                     home      away  hgoal  agoal result season
date     league                                                
25/09/11 I1      Atalanta    Novara      2      1      H  11-12
         I1      Cagliari   Udinese      0      0      D  11-12
         I1       Catania  Juventus      1      1      D  11-12
         I1        Chievo     Genoa      2      1      H  11-12
         I1         Lazio   Palermo      0      0      D  11-12
         I1         Parma      Roma      0      1      A  11-12
         I1         Siena     Lecce      3      0      H  11-12
('25/09/11', 'SP1')
                     home       away  hgoal  agoal result season
date     league                                                 
25/09/11 SP1      Granada    Osasuna      1      1      D  11-12
         SP1      Levante    Espanol      3      1      H  11-12
         SP1     Mallorca   Sociedad      2      1      H  11-12
         SP1     Sp Gijon  Santander      0      0      D  11-12
         SP1     Zaragoza     Malaga      0      0      D  11-12
('25/09/11', 'T1')
                           home         away  hgoal  agoal result season
date     league                                                         
25/09/11 T1            Besiktas  Antalyaspor      1      0      H  11-12
         T1      Genclerbirligi   Ankaragucu      1      1      D  11-12
         T1            Orduspor   Samsunspor      0      0      D  11-12
         T1           Sivasspor    Bursaspor      3      0      H  11-12
('25/09/12', 'D1')
                           home                away  hgoal  agoal result  \
date     league                                                            
25/09/12 D1       Bayern Munich           Wolfsburg      3      0      H   
         D1       Ein Frankfurt            Dortmund      3      3      D   
         D1      Greuther Furth  Fortuna Dusseldorf      0      2      A   
         D1          Schalke 04               Mainz      3      0      H   

                season  
date     league         
25/09/12 D1      12-13  
         D1      12-13  
         D1      12-13  
         D1      12-13  
('25/09/12', 'I1')
                       home      away  hgoal  agoal result season
date     league                                                  
25/09/12 I1      Fiorentina  Juventus      0      0      D  12-13
('25/09/13', 'I1')
                      home      away  hgoal  agoal result season
date     league                                                 
25/09/13 I1        Bologna     Milan      3      3      D  13-14
         I1         Chievo  Juventus      1      2      A  13-14
         I1          Lazio   Catania      3      1      H  13-14
         I1        Livorno  Cagliari      1      1      D  13-14
         I1         Napoli  Sassuolo      1      1      D  13-14
         I1          Parma  Atalanta      4      3      H  13-14
         I1      Sampdoria      Roma      0      2      A  13-14
         I1         Torino    Verona      2      2      D  13-14
('25/09/13', 'SP1')
                    home         away  hgoal  agoal result season
date     league                                                  
25/09/13 SP1       Elche  Real Madrid      1      2      A  13-14
         SP1     Granada     Valencia      0      1      A  13-14
         SP1     Sevilla    Vallecano      4      1      H  13-14
('25/09/14', 'I1')
                  home     away  hgoal  agoal result season
date     league                                            
25/09/14 I1      Lazio  Udinese      0      1      A  14-15
('25/09/14', 'SP1')
                     home     away  hgoal  agoal result season
date     league                                               
25/09/14 SP1      Espanol   Getafe      2      0      H  14-15
         SP1     Valencia  Cordoba      3      0      H  14-15
('25/09/15', 'D1')
                    home        away  hgoal  agoal result season
date     league                                                 
25/09/15 D1      FC Koln  Ingolstadt      1      1      D  15-16
('25/09/15', 'SP1')
                     home     away  hgoal  agoal result season
date     league                                               
25/09/15 SP1     Valencia  Granada      1      0      H  15-16
('25/10/11', 'E2')
                             home                away  hgoal  agoal result  \
date     league                                                              
25/10/11 E2             Brentford           Stevenage      0      1      A   
         E2                  Bury        Notts County      2      2      D   
         E2              Carlisle      Sheffield Weds      3      2      H   
         E2            Colchester         Bournemouth      1      1      D   
         E2            Hartlepool            Tranmere      0      2      A   
         E2               Preston              Oldham      3      3      D   
         E2              Rochdale        Chesterfield      1      1      D   
         E2            Scunthorpe        Huddersfield      2      2      D   
         E2      Sheffield United  Milton Keynes Dons      2      1      H   
         E2               Walsall              Exeter      1      2      A   
         E2               Wycombe            Charlton      1      2      A   
         E2                Yeovil       Leyton Orient      2      2      D   

                season  
date     league         
25/10/11 E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
('25/10/11', 'I1')
                     home        away  hgoal  agoal result season
date     league                                                  
25/10/11 I1      Juventus  Fiorentina      2      1      H  11-12
('25/10/11', 'SP1')
                    home       away  hgoal  agoal result season
date     league                                                
25/10/11 SP1     Granada  Barcelona      0      1      A  11-12
         SP1     Sevilla  Santander      2      2      D  11-12
('25/10/13', 'D1')
                      home      away  hgoal  agoal result season
date     league                                                 
25/10/13 D1      Stuttgart  Nurnberg      1      1      D  13-14
('25/10/13', 'SP1')
                      home        away  hgoal  agoal result season
date     league                                                   
25/10/13 SP1     Vallecano  Valladolid      0      3      A  13-14
('25/10/13', 'T1')
                       home           away  hgoal  agoal result season
date     league                                                       
25/10/13 T1      Fenerbahce  Gaziantepspor      3      1      H  13-14
         T1       Sivasspor    Erciyesspor      2      0      H  13-14
('25/10/14', 'D1')
                          home        away  hgoal  agoal result season
date     league                                                       
25/10/14 D1           Augsburg    Freiburg      2      0      H  14-15
         D1           Dortmund    Hannover      0      1      A  14-15
         D1      Ein Frankfurt   Stuttgart      4      5      A  14-15
         D1             Hertha     Hamburg      3      0      H  14-15
         D1         Hoffenheim   Paderborn      1      0      H  14-15
         D1         Leverkusen  Schalke 04      1      0      H  14-15
('25/10/14', 'E2')
                       home                away  hgoal  agoal result season
date     league                                                            
25/10/14 E2        Barnsley        Bristol City      2      2      D  14-15
         E2        Coventry           Peterboro      3      2      H  14-15
         E2           Crewe    Sheffield United      0      1      A  14-15
         E2       Doncaster  Milton Keynes Dons      0      0      D  14-15
         E2      Gillingham        Crawley Town      1      1      D  14-15
         E2          Oldham            Bradford      2      1      H  14-15
         E2       Port Vale       Leyton Orient      3      0      H  14-15
         E2         Preston      Fleetwood Town      3      2      H  14-15
         E2      Scunthorpe        Notts County      0      1      A  14-15
         E2         Swindon          Colchester      2      2      D  14-15
         E2         Walsall        Chesterfield      1      0      H  14-15
         E2          Yeovil            Rochdale      0      3      A  14-15
('25/10/14', 'I1')
                      home      away  hgoal  agoal result season
date     league                                                 
25/10/14 I1         Empoli  Cagliari      0      4      A  14-15
         I1          Parma  Sassuolo      1      3      A  14-15
         I1      Sampdoria      Roma      0      0      D  14-15
('25/10/14', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
25/10/14 SP1         Almeria  Ath Bilbao      0      1      A  14-15
         SP1         Cordoba    Sociedad      1      1      D  14-15
         SP1           Eibar     Granada      1      1      D  14-15
         SP1     Real Madrid   Barcelona      3      1      H  14-15
         SP1        Valencia       Elche      3      1      H  14-15
('25/10/14', 'T1')
                          home            away  hgoal  agoal result season
date     league                                                           
25/10/14 T1      Balikesirspor       Bursaspor      0      5      A  14-15
         T1         Fenerbahce  Genclerbirligi      2      1      H  14-15
         T1          Sivasspor        Rizespor      0      1      A  14-15
('25/10/15', 'D1')
                       home        away  hgoal  agoal result season
date     league                                                    
25/10/15 D1        Dortmund    Augsburg      5      1      H  15-16
         D1      M'gladbach  Schalke 04      3      1      H  15-16
('25/10/15', 'I1')
                       home       away  hgoal  agoal result season
date     league                                                   
25/10/15 I1          Chievo     Napoli      0      1      A  15-16
         I1      Fiorentina       Roma      1      2      A  15-16
         I1        Juventus   Atalanta      2      0      H  15-16
         I1           Lazio     Torino      3      0      H  15-16
         I1           Milan   Sassuolo      2      1      H  15-16
         I1       Sampdoria     Verona      4      1      H  15-16
         I1         Udinese  Frosinone      1      0      H  15-16
('25/10/15', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
25/10/15 SP1     Ath Madrid    Valencia      2      1      H  15-16
         SP1      Barcelona       Eibar      3      1      H  15-16
         SP1     Las Palmas  Villarreal      0      0      D  15-16
         SP1        Levante    Sociedad      0      4      A  15-16
('25/10/15', 'T1')
                       home         away  hgoal  agoal result season
date     league                                                     
25/10/15 T1      Buyuksehyr    Konyaspor      4      0      H  15-16
         T1      Fenerbahce  Galatasaray      1      1      D  15-16
('25/11/11', 'D1')
                    home        away  hgoal  agoal result season
date     league                                                 
25/11/11 D1      FC Koln  M'gladbach      0      3      A  11-12
('25/11/11', 'I1')
                    home  away  hgoal  agoal result season
date     league                                           
25/11/11 I1      Udinese  Roma      2      0      H  11-12
('25/11/11', 'T1')
                           home        away  hgoal  agoal result season
date     league                                                        
25/11/11 T1      Genclerbirligi  Fenerbahce      0      0      D  11-12
('25/11/12', 'D1')
                       home        away  hgoal  agoal result season
date     league                                                    
25/11/12 D1        Augsburg  M'gladbach      1      1      D  12-13
         D1        Freiburg   Stuttgart      3      0      H  12-13
         D1      Hoffenheim  Leverkusen      1      2      A  12-13
('25/11/12', 'I1')
                      home        away  hgoal  agoal result season
date     league                                                   
25/11/12 I1       Atalanta       Genoa      0      1      A  12-13
         I1         Chievo       Siena      0      0      D  12-13
         I1          Milan    Juventus      1      0      H  12-13
         I1        Pescara        Roma      0      1      A  12-13
         I1      Sampdoria     Bologna      1      0      H  12-13
         I1         Torino  Fiorentina      2      2      D  12-13
('25/11/12', 'SP1')
                       home       away  hgoal  agoal result season
date     league                                                   
25/11/12 SP1     Ath Bilbao  La Coruna      1      1      D  12-13
         SP1     Ath Madrid    Sevilla      4      0      H  12-13
         SP1        Espanol     Getafe      0      2      A  12-13
         SP1        Levante  Barcelona      0      4      A  12-13
('25/11/12', 'T1')
                          home            away  hgoal  agoal result season
date     league                                                           
25/11/12 T1         Fenerbahce  Genclerbirligi      4      1      H  12-13
         T1      Gaziantepspor      Buyuksehyr      2      1      H  12-13
         T1          Sivasspor     Kayserispor      4      2      H  12-13
('25/11/13', 'I1')
                 home      away  hgoal  agoal result season
date     league                                            
25/11/13 I1      Roma  Cagliari      0      0      D  13-14
('25/11/13', 'SP1')
                   home        away  hgoal  agoal result season
date     league                                                
25/11/13 SP1     Malaga  Ath Bilbao      1      2      A  13-14
('25/11/13', 'T1')
                                 home         away  hgoal  agoal result season
date     league                                                               
25/11/13 T1      Akhisar Belediyespor  Karabukspor      0      1      A  13-14
         T1                  Besiktas    Konyaspor      3      1      H  13-14
('25/11/14', 'E2')
                               home      away  hgoal  agoal result season
date     league                                                          
25/11/14 E2      Milton Keynes Dons  Rochdale      2      2      D  14-15
('26/01/13', 'D1')
                           home                away  hgoal  agoal result  \
date     league                                                            
26/01/13 D1            Augsburg          Schalke 04      0      0      D   
         D1       Ein Frankfurt          Hoffenheim      2      1      H   
         D1            Freiburg          Leverkusen      0      0      D   
         D1      Greuther Furth               Mainz      0      3      A   
         D1            Hannover           Wolfsburg      2      1      H   
         D1          M'gladbach  Fortuna Dusseldorf      2      1      H   

                season  
date     league         
26/01/13 D1      12-13  
         D1      12-13  
         D1      12-13  
         D1      12-13  
         D1      12-13  
         D1      12-13  
('26/01/13', 'E2')
                          home          away  hgoal  agoal result season
date     league                                                         
26/01/13 E2        Bournemouth         Crewe      3      1      H  12-13
         E2           Carlisle    Scunthorpe      1      1      D  12-13
         E2         Colchester       Walsall      2      0      H  12-13
         E2      Leyton Orient  Notts County      2      1      H  12-13
         E2         Portsmouth    Hartlepool      1      3      A  12-13
         E2            Preston      Coventry      2      2      D  12-13
         E2         Shrewsbury          Bury      0      0      D  12-13
('26/01/13', 'I1')
                     home    away  hgoal  agoal result season
date     league                                              
26/01/13 I1      Juventus   Genoa      1      1      D  12-13
         I1         Lazio  Chievo      0      1      A  12-13
('26/01/13', 'SP1')
                      home        away  hgoal  agoal result season
date     league                                                   
26/01/13 SP1         Celta    Sociedad      1      1      D  12-13
         SP1     La Coruna    Valencia      2      3      A  12-13
         SP1       Levante  Valladolid      2      1      H  12-13
         SP1      Zaragoza     Espanol      0      0      D  12-13
('26/01/13', 'T1')
                           home                  away  hgoal  agoal result  \
date     league                                                              
26/01/13 T1          Buyuksehyr             Bursaspor      4      1      H   
         T1       Gaziantepspor            Fenerbahce      1      2      A   
         T1      Genclerbirligi  Akhisar Belediyespor      1      0      H   

                season  
date     league         
26/01/13 T1      12-13  
         T1      12-13  
         T1      12-13  
('26/01/14', 'D1')
                          home          away  hgoal  agoal result season
date     league                                                         
26/01/14 D1            Hamburg    Schalke 04      0      3      A  13-14
         D1      Werder Bremen  Braunschweig      0      0      D  13-14
('26/01/14', 'I1')
                       home      away  hgoal  agoal result season
date     league                                                  
26/01/14 I1        Cagliari     Milan      1      2      A  13-14
         I1      Fiorentina     Genoa      3      3      D  13-14
         I1           Inter   Catania      0      0      D  13-14
         I1         Livorno  Sassuolo      3      1      H  13-14
         I1           Parma   Udinese      1      0      H  13-14
         I1       Sampdoria   Bologna      1      1      D  13-14
         I1          Torino  Atalanta      1      0      H  13-14
         I1          Verona      Roma      1      3      A  13-14
('26/01/14', 'SP1')
                      home        away  hgoal  agoal result season
date     league                                                   
26/01/14 SP1       Almeria      Getafe      1      0      H  13-14
         SP1     Barcelona      Malaga      3      0      H  13-14
         SP1       Osasuna  Ath Bilbao      1      5      A  13-14
         SP1     Vallecano  Ath Madrid      2      4      A  13-14
('26/01/14', 'T1')
                          home                  away  hgoal  agoal result  \
date     league                                                             
26/01/14 T1         Elazigspor  Akhisar Belediyespor      2      1      H   
         T1        Erciyesspor           Antalyaspor      1      3      A   
         T1      Gaziantepspor           Galatasaray      0      0      D   
         T1          Sivasspor           Kayserispor      3      0      H   

                season  
date     league         
26/01/14 T1      13-14  
         T1      13-14  
         T1      13-14  
         T1      13-14  
('26/01/15', 'I1')
                   home     away  hgoal  agoal result season
date     league                                             
26/01/15 I1      Empoli  Udinese      1      2      A  14-15
         I1      Napoli    Genoa      2      1      H  14-15
('26/01/15', 'SP1')
                   home   away  hgoal  agoal result season
date     league                                           
26/01/15 SP1     Getafe  Celta      2      1      H  14-15
('26/01/15', 'T1')
                           home      away  hgoal  agoal result season
date     league                                                      
26/01/15 T1      Genclerbirligi  Besiktas      0      2      A  14-15
('26/01/16', 'E2')
                       home              away  hgoal  agoal result season
date     league                                                          
26/01/16 E2       Blackpool  Sheffield United      0      0      D  15-16
         E2        Bradford          Barnsley      0      1      A  15-16
         E2            Bury             Crewe      0      0      D  15-16
         E2       Doncaster         Port Vale      1      2      A  15-16
         E2       Peterboro            Burton      0      1      A  15-16
         E2      Shrewsbury            Oldham      0      1      A  15-16
('26/02/12', 'D1')
                          home        away  hgoal  agoal result season
date     league                                                       
26/02/12 D1      Bayern Munich  Schalke 04      2      0      H  11-12
         D1           Dortmund    Hannover      3      1      H  11-12
('26/02/12', 'E2')
                           home              away  hgoal  agoal result season
date     league                                                              
26/02/12 E2      Sheffield Weds  Sheffield United      1      0      H  11-12
('26/02/12', 'I1')
                     home        away  hgoal  agoal result season
date     league                                                  
26/02/12 I1      Atalanta        Roma      4      1      H  11-12
         I1       Bologna     Udinese      1      3      A  11-12
         I1      Cagliari       Lecce      1      2      A  11-12
         I1       Catania      Novara      3      1      H  11-12
         I1        Chievo      Cesena      1      0      H  11-12
         I1         Lazio  Fiorentina      1      0      H  11-12
         I1        Napoli       Inter      1      0      H  11-12
         I1         Siena     Palermo      4      1      H  11-12
('26/02/12', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
26/02/12 SP1     Ath Madrid    Barcelona      1      2      A  11-12
         SP1        Osasuna      Granada      2      1      H  11-12
         SP1       Sociedad     Mallorca      1      0      H  11-12
         SP1       Valencia      Sevilla      1      2      A  11-12
         SP1      Vallecano  Real Madrid      0      1      A  11-12
         SP1     Villarreal   Ath Bilbao      2      2      D  11-12
('26/02/12', 'T1')
                           home                away  hgoal  agoal result  \
date     league                                                            
26/02/12 T1          Buyuksehyr         Antalyaspor      4      0      H   
         T1         Galatasaray            Besiktas      3      2      H   
         T1      Genclerbirligi           Sivasspor      3      3      D   
         T1         Trabzonspor  Mersin Idman Yurdu      2      3      A   

                season  
date     league         
26/02/12 T1      11-12  
         T1      11-12  
         T1      11-12  
         T1      11-12  
('26/02/13', 'E2')
                             home                away  hgoal  agoal result  \
date     league                                                              
26/02/13 E2           Bournemouth            Coventry      0      2      A   
         E2              Carlisle             Walsall      0      3      A   
         E2            Colchester              Yeovil      2      0      H   
         E2          Crawley Town           Brentford      1      2      A   
         E2            Hartlepool               Crewe      3      0      H   
         E2            Portsmouth  Milton Keynes Dons      1      1      D   
         E2            Scunthorpe           Stevenage      1      0      H   
         E2      Sheffield United       Leyton Orient      0      0      D   
         E2            Shrewsbury           Doncaster      1      2      A   
         E2               Swindon                Bury      0      1      A   
         E2              Tranmere        Notts County      1      1      D   

                season  
date     league         
26/02/13 E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
('26/02/13', 'I1')
                    home        away  hgoal  agoal result season
date     league                                                 
26/02/13 I1      Bologna  Fiorentina      2      1      H  12-13
('26/02/16', 'D1')
                    home    away  hgoal  agoal result season
date     league                                             
26/02/16 D1      FC Koln  Hertha      0      1      A  15-16
('26/02/16', 'SP1')
                  home        away  hgoal  agoal result season
date     league                                               
26/02/16 SP1     Eibar  Las Palmas      0      1      A  15-16
('26/02/16', 'T1')
                       home         away  hgoal  agoal result season
date     league                                                     
26/02/16 T1      Buyuksehyr  Kayserispor      1      0      H  15-16
('26/03/12', 'SP1')
                    home     away  hgoal  agoal result season
date     league                                              
26/03/12 SP1     Granada  Sevilla      0      3      A  11-12
('26/03/12', 'T1')
                       home      away  hgoal  agoal result season
date     league                                                  
26/03/12 T1      Buyuksehyr  Besiktas      2      2      D  11-12
('26/03/13', 'E2')
                         home   away  hgoal  agoal result season
date     league                                                 
26/03/13 E2      Crawley Town  Crewe      2      0      H  12-13
('26/03/14', 'D1')
                          home        away  hgoal  agoal result season
date     league                                                       
26/03/14 D1           Augsburg  Leverkusen      1      3      A  13-14
         D1      Ein Frankfurt  M'gladbach      1      0      H  13-14
         D1            Hamburg    Freiburg      1      1      D  13-14
         D1         Hoffenheim    Hannover      3      1      H  13-14
         D1           Nurnberg   Stuttgart      2      0      H  13-14
('26/03/14', 'E2')
                     home       away  hgoal  agoal result season
date     league                                                 
26/03/14 E2      Coventry  Stevenage      1      0      H  13-14
('26/03/14', 'I1')
                       home       away  hgoal  agoal result season
date     league                                                   
26/03/14 I1        Atalanta    Livorno      2      0      H  13-14
         I1        Cagliari     Verona      1      0      H  13-14
         I1         Catania     Napoli      2      4      A  13-14
         I1          Chievo    Bologna      3      0      H  13-14
         I1      Fiorentina      Milan      0      2      A  13-14
         I1           Genoa      Lazio      2      0      H  13-14
         I1        Juventus      Parma      2      1      H  13-14
         I1        Sassuolo  Sampdoria      1      2      A  13-14
('26/03/14', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
26/03/14 SP1     Ath Madrid      Granada      1      0      H  13-14
         SP1      Barcelona        Celta      3      0      H  13-14
         SP1        Sevilla  Real Madrid      2      1      H  13-14
         SP1      Vallecano      Osasuna      1      0      H  13-14
('26/03/16', 'E2')
                         home            away  hgoal  agoal result season
date     league                                                          
26/03/16 E2          Bradford        Millwall      1      0      H  15-16
         E2            Burton          Oldham      0      0      D  15-16
         E2      Chesterfield  Fleetwood Town      0      0      D  15-16
('26/04/13', 'D1')
                           home      away  hgoal  agoal result season
date     league                                                      
26/04/13 D1      Greuther Furth  Hannover      2      3      A  12-13
('26/04/13', 'SP1')
                      home     away  hgoal  agoal result season
date     league                                                
26/04/13 SP1     Vallecano  Osasuna      2      2      D  12-13
('26/04/13', 'T1')
                               home         away  hgoal  agoal result season
date     league                                                             
26/04/13 T1      Mersin Idman Yurdu  Antalyaspor      1      1      D  12-13
('26/04/14', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
26/04/14 D1      Bayern Munich  Werder Bremen      5      2      H  13-14
         D1             Hertha   Braunschweig      2      0      H  13-14
         D1         Hoffenheim  Ein Frankfurt      0      0      D  13-14
         D1         Leverkusen       Dortmund      2      2      D  13-14
         D1              Mainz       Nurnberg      2      0      H  13-14
         D1          Wolfsburg       Freiburg      2      2      D  13-14
('26/04/14', 'E2')
                          home                away  hgoal  agoal result season
date     league                                                               
26/04/14 E2           Bradford        Crawley Town      2      1      H  13-14
         E2       Bristol City               Crewe      0      0      D  13-14
         E2           Carlisle              Oldham      0      1      A  13-14
         E2         Colchester           Brentford      4      1      H  13-14
         E2           Coventry              Wolves      1      1      D  13-14
         E2      Leyton Orient            Tranmere      2      0      H  13-14
         E2       Notts County             Swindon      2      0      H  13-14
         E2            Preston          Gillingham      3      1      H  13-14
         E2          Rotherham  Milton Keynes Dons      2      2      D  13-14
         E2         Shrewsbury           Peterboro      2      4      A  13-14
         E2          Stevenage             Walsall      3      2      H  13-14
('26/04/14', 'I1')
                    home        away  hgoal  agoal result season
date     league                                                 
26/04/14 I1      Bologna  Fiorentina      0      3      A  13-14
         I1        Inter      Napoli      0      0      D  13-14
('26/04/14', 'SP1')
                        home       away  hgoal  agoal result season
date     league                                                    
26/04/14 SP1           Betis   Sociedad      0      1      A  13-14
         SP1          Getafe     Malaga      1      0      H  13-14
         SP1         Granada  Vallecano      0      3      A  13-14
         SP1     Real Madrid    Osasuna      4      0      H  13-14
('26/04/14', 'T1')
                        home           away  hgoal  agoal result season
date     league                                                        
26/04/14 T1      Trabzonspor  Gaziantepspor      2      1      H  13-14
('26/04/15', 'D1')
                       home           away  hgoal  agoal result season
date     league                                                       
26/04/15 D1      M'gladbach      Wolfsburg      1      0      H  14-15
         D1       Paderborn  Werder Bremen      2      2      D  14-15
('26/04/15', 'I1')
                       home       away  hgoal  agoal result season
date     league                                                   
26/04/15 I1        Atalanta     Empoli      2      2      D  14-15
         I1      Fiorentina   Cagliari      1      3      A  14-15
         I1           Genoa     Cesena      3      1      H  14-15
         I1           Lazio     Chievo      1      1      D  14-15
         I1          Napoli  Sampdoria      4      2      H  14-15
         I1           Parma    Palermo      1      0      H  14-15
         I1          Torino   Juventus      2      1      H  14-15
         I1          Verona   Sassuolo      3      2      H  14-15
('26/04/15', 'SP1')
                    home         away  hgoal  agoal result season
date     league                                                  
26/04/15 SP1     Almeria        Eibar      2      0      H  14-15
         SP1       Celta  Real Madrid      2      4      A  14-15
         SP1      Malaga    La Coruna      1      1      D  14-15
         SP1     Sevilla    Vallecano      2      0      H  14-15
('26/04/15', 'T1')
                           home                  away  hgoal  agoal result  \
date     league                                                              
26/04/15 T1       Balikesirspor           Erciyesspor      1      1      D   
         T1         Galatasaray         Gaziantepspor      1      0      H   
         T1      Genclerbirligi           Trabzonspor      1      1      D   
         T1           Konyaspor  Akhisar Belediyespor      2      1      H   

                season  
date     league         
26/04/15 T1      14-15  
         T1      14-15  
         T1      14-15  
         T1      14-15  
('26/04/16', 'E2')
                    home        away  hgoal  agoal result season
date     league                                                 
26/04/16 E2      Walsall  Shrewsbury      2      1      H  15-16
('26/05/13', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
26/05/13 SP1     Ath Bilbao      Levante      0      1      A  12-13
         SP1     Ath Madrid     Mallorca      0      0      D  12-13
         SP1          Betis     Zaragoza      4      0      H  12-13
         SP1        Espanol    Barcelona      0      2      A  12-13
         SP1         Getafe    Vallecano      1      2      A  12-13
         SP1         Malaga    La Coruna      3      1      H  12-13
         SP1        Osasuna      Sevilla      2      1      H  12-13
         SP1       Sociedad  Real Madrid      3      3      D  12-13
         SP1       Valencia      Granada      1      0      H  12-13
         SP1     Valladolid        Celta      0      2      A  12-13
('26/08/11', 'D1')
                   home       away  hgoal  agoal result season
date     league                                               
26/08/11 D1      Hertha  Stuttgart      1      0      H  11-12
('26/08/12', 'D1')
                      home        away  hgoal  agoal result season
date     league                                                   
26/08/12 D1       Hannover  Schalke 04      2      2      D  12-13
         D1      Stuttgart   Wolfsburg      0      1      A  12-13
('26/08/12', 'I1')
                     home       away  hgoal  agoal result season
date     league                                                 
26/08/12 I1      Atalanta      Lazio      0      1      A  12-13
         I1        Chievo    Bologna      2      0      H  12-13
         I1         Genoa   Cagliari      2      0      H  12-13
         I1         Milan  Sampdoria      0      1      A  12-13
         I1       Palermo     Napoli      0      3      A  12-13
         I1       Pescara      Inter      0      3      A  12-13
         I1          Roma    Catania      2      2      D  12-13
         I1         Siena     Torino      0      0      D  12-13
('26/08/12', 'SP1')
                     home         away  hgoal  agoal result season
date     league                                                   
26/08/12 SP1       Getafe  Real Madrid      2      1      H  12-13
         SP1      Granada      Sevilla      1      1      D  12-13
         SP1      Osasuna    Barcelona      1      2      A  12-13
         SP1     Valencia    La Coruna      3      3      D  12-13
('26/08/12', 'T1')
                        home         away  hgoal  agoal result season
date     league                                                      
26/08/12 T1         Besiktas  Galatasaray      3      3      D  12-13
         T1        Bursaspor   Buyuksehyr      0      1      A  12-13
         T1      Trabzonspor   Elazigspor      2      0      H  12-13
('26/08/13', 'I1')
                       home     away  hgoal  agoal result season
date     league                                                 
26/08/13 I1      Fiorentina  Catania      2      1      H  13-14
('26/08/13', 'SP1')
                    home         away  hgoal  agoal result season
date     league                                                  
26/08/13 SP1     Granada  Real Madrid      0      1      A  13-14
('26/08/13', 'T1')
                        home      away  hgoal  agoal result season
date     league                                                   
26/08/13 T1      Erciyesspor  Besiktas      2      4      A  13-14
         T1      Trabzonspor  Rizespor      2      1      H  13-14
('26/09/11', 'SP1')
                   home   away  hgoal  agoal result season
date     league                                           
26/09/11 SP1     Getafe  Betis      1      0      H  11-12
('26/09/11', 'T1')
                        home           away  hgoal  agoal result season
date     league                                                        
26/09/11 T1      Galatasaray  Eskisehirspor      2      0      H  11-12
('26/09/12', 'D1')
                       home           away  hgoal  agoal result season
date     league                                                       
26/09/12 D1        Augsburg     Leverkusen      1      3      A  12-13
         D1        Freiburg  Werder Bremen      1      2      A  12-13
         D1        Hannover       Nurnberg      4      1      H  12-13
         D1      M'gladbach        Hamburg      2      2      D  12-13
         D1       Stuttgart     Hoffenheim      0      3      A  12-13
('26/09/12', 'I1')
                    home       away  hgoal  agoal result season
date     league                                                
26/09/12 I1      Catania   Atalanta      2      1      H  12-13
         I1       Chievo      Inter      0      2      A  12-13
         I1        Genoa      Parma      1      1      D  12-13
         I1        Milan   Cagliari      2      0      H  12-13
         I1       Napoli      Lazio      3      0      H  12-13
         I1      Pescara    Palermo      1      0      H  12-13
         I1         Roma  Sampdoria      1      1      D  12-13
         I1       Torino    Udinese      0      0      D  12-13
('26/09/12', 'SP1')
                  home        away  hgoal  agoal result season
date     league                                               
26/09/12 SP1     Betis  Ath Madrid      2      4      A  12-13
('26/09/13', 'I1')
                  home        away  hgoal  agoal result season
date     league                                               
26/09/13 I1      Inter  Fiorentina      2      1      H  13-14
('26/09/13', 'SP1')
                       home     away  hgoal  agoal result season
date     league                                                 
26/09/13 SP1     Ath Bilbao    Betis      2      1      H  13-14
         SP1         Getafe    Celta      2      0      H  13-14
         SP1     Villarreal  Espanol      2      1      H  13-14
('26/09/14', 'D1')
                  home        away  hgoal  agoal result season
date     league                                               
26/09/14 D1      Mainz  Hoffenheim      0      0      D  14-15
('26/09/14', 'SP1')
                  home   away  hgoal  agoal result season
date     league                                          
26/09/14 SP1     Elche  Celta      0      1      A  14-15
('26/09/14', 'T1')
                        home       away  hgoal  agoal result season
date     league                                                    
26/09/14 T1      Galatasaray  Sivasspor      2      1      H  14-15
('26/09/15', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
26/09/15 D1           Augsburg     Hoffenheim      1      3      A  15-16
         D1            Hamburg     Schalke 04      0      1      A  15-16
         D1              Mainz  Bayern Munich      0      3      A  15-16
         D1          Stuttgart     M'gladbach      1      3      A  15-16
         D1      Werder Bremen     Leverkusen      0      3      A  15-16
         D1          Wolfsburg       Hannover      1      1      D  15-16
('26/09/15', 'E2')
                             home        away  hgoal  agoal result season
date     league                                                          
26/09/15 E2              Barnsley  Gillingham      2      0      H  15-16
         E2              Bradford   Peterboro      0      2      A  15-16
         E2                  Bury    Coventry      2      1      H  15-16
         E2          Chesterfield      Burton      1      2      A  15-16
         E2        Fleetwood Town   Port Vale      1      2      A  15-16
         E2              Millwall    Rochdale      3      1      H  15-16
         E2                Oldham       Wigan      1      1      D  15-16
         E2      Sheffield United   Doncaster      3      1      H  15-16
         E2            Shrewsbury   Blackpool      2      0      H  15-16
         E2              Southend  Scunthorpe      2      1      H  15-16
         E2               Swindon  Colchester      1      2      A  15-16
         E2               Walsall       Crewe      1      1      D  15-16
('26/09/15', 'I1')
                   home      away  hgoal  agoal result season
date     league                                              
26/09/15 I1      Napoli  Juventus      2      1      H  15-16
         I1        Roma     Carpi      5      1      H  15-16
('26/09/15', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
26/09/15 SP1       Barcelona  Las Palmas      2      1      H  15-16
         SP1           Eibar       Celta      1      1      D  15-16
         SP1     Real Madrid      Malaga      0      0      D  15-16
         SP1         Sevilla   Vallecano      3      2      H  15-16
         SP1      Villarreal  Ath Madrid      1      0      H  15-16
('26/09/15', 'T1')
                                 home            away  hgoal  agoal result  \
date     league                                                              
26/09/15 T1      Akhisar Belediyespor  Genclerbirligi      1      0      H   
         T1               Galatasaray   Gaziantepspor      2      1      H   
         T1               Osmanlispor     Trabzonspor      3      1      H   

                season  
date     league         
26/09/15 T1      15-16  
         T1      15-16  
         T1      15-16  
('26/10/11', 'I1')
                     home      away  hgoal  agoal result season
date     league                                                
26/10/11 I1      Atalanta     Inter      1      1      D  11-12
         I1        Cesena  Cagliari      1      1      D  11-12
         I1        Chievo   Bologna      0      1      A  11-12
         I1         Genoa      Roma      2      1      H  11-12
         I1         Lazio   Catania      1      1      D  11-12
         I1         Milan     Parma      4      1      H  11-12
         I1        Napoli   Udinese      2      0      H  11-12
         I1        Novara     Siena      1      1      D  11-12
('26/10/11', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
26/10/11 SP1          Getafe     Osasuna      2      2      D  11-12
         SP1         Levante    Sociedad      3      2      H  11-12
         SP1        Mallorca    Sp Gijon      1      2      A  11-12
         SP1     Real Madrid  Villarreal      3      0      H  11-12
         SP1       Vallecano      Malaga      2      0      H  11-12
         SP1        Zaragoza    Valencia      0      1      A  11-12
('26/10/11', 'T1')
                        home           away  hgoal  agoal result season
date     league                                                        
26/10/11 T1       Buyuksehyr  Eskisehirspor      2      2      D  11-12
         T1      Galatasaray  Gaziantepspor      2      4      A  11-12
         T1         Orduspor      Bursaspor      1      1      D  11-12
         T1       Samsunspor    Karabukspor      0      0      D  11-12
         T1      Trabzonspor    Antalyaspor      2      2      D  11-12
('26/10/12', 'D1')
                     home     away  hgoal  agoal result season
date     league                                               
26/10/12 D1      Augsburg  Hamburg      0      2      A  12-13
('26/10/12', 'T1')
                       home           away  hgoal  agoal result season
date     league                                                       
26/10/12 T1      Elazigspor  Eskisehirspor      1      1      D  12-13
         T1       Kasimpasa       Besiktas      1      3      A  12-13
('26/10/13', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
26/10/13 D1      Bayern Munich         Hertha      3      2      H  13-14
         D1           Hannover     Hoffenheim      1      4      A  13-14
         D1         Leverkusen       Augsburg      2      1      H  13-14
         D1              Mainz   Braunschweig      2      0      H  13-14
         D1         Schalke 04       Dortmund      1      3      A  13-14
         D1          Wolfsburg  Werder Bremen      3      0      H  13-14
('26/10/13', 'E2')
                             home                away  hgoal  agoal result  \
date     league                                                              
26/10/13 E2              Bradford              Wolves      1      2      A   
         E2             Brentford          Shrewsbury      1      0      H   
         E2              Carlisle        Bristol City      2      4      A   
         E2            Colchester           Peterboro      1      0      H   
         E2         Leyton Orient           Rotherham      1      0      H   
         E2          Notts County             Preston      0      1      A   
         E2                Oldham             Swindon      2      1      H   
         E2             Port Vale          Gillingham      2      1      H   
         E2      Sheffield United               Crewe      3      1      H   
         E2             Stevenage        Crawley Town      2      0      H   
         E2              Tranmere  Milton Keynes Dons      3      2      H   
         E2               Walsall            Coventry      0      1      A   

                season  
date     league         
26/10/13 E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
('26/10/13', 'I1')
                      home      away  hgoal  agoal result season
date     league                                                 
26/10/13 I1          Inter    Verona      4      2      H  13-14
         I1      Sampdoria  Atalanta      1      0      H  13-14
('26/10/13', 'SP1')
                      home         away  hgoal  agoal result season
date     league                                                    
26/10/13 SP1     Barcelona  Real Madrid      2      1      H  13-14
         SP1         Elche      Granada      0      1      A  13-14
         SP1       Levante      Espanol      3      0      H  13-14
         SP1        Malaga        Celta      0      5      A  13-14
('26/10/13', 'T1')
                                 home            away  hgoal  agoal result  \
date     league                                                              
26/10/13 T1      Akhisar Belediyespor        Besiktas      3      3      D   
         T1                Elazigspor  Genclerbirligi      1      2      A   
         T1               Karabukspor     Antalyaspor      1      1      D   

                season  
date     league         
26/10/13 T1      13-14  
         T1      13-14  
         T1      13-14  
('26/10/14', 'D1')
                       home           away  hgoal  agoal result season
date     league                                                       
26/10/14 D1      M'gladbach  Bayern Munich      0      0      D  14-15
         D1       Wolfsburg          Mainz      3      0      H  14-15
('26/10/14', 'I1')
                     home        away  hgoal  agoal result season
date     league                                                  
26/10/14 I1        Cesena       Inter      0      1      A  14-15
         I1        Chievo       Genoa      1      2      A  14-15
         I1      Juventus     Palermo      2      0      H  14-15
         I1         Lazio      Torino      2      1      H  14-15
         I1         Milan  Fiorentina      1      1      D  14-15
         I1        Napoli      Verona      6      2      H  14-15
         I1       Udinese    Atalanta      2      0      H  14-15
('26/10/14', 'SP1')
                    home        away  hgoal  agoal result season
date     league                                                 
26/10/14 SP1     Espanol   La Coruna      0      0      D  14-15
         SP1      Getafe  Ath Madrid      0      1      A  14-15
         SP1      Malaga   Vallecano      4      0      H  14-15
         SP1     Sevilla  Villarreal      2      1      H  14-15
('26/10/14', 'T1')
                               home           away  hgoal  agoal result season
date     league                                                               
26/10/14 T1              Buyuksehyr    Galatasaray      4      0      H  14-15
         T1      Mersin Idman Yurdu  Eskisehirspor      4      2      H  14-15
         T1             Trabzonspor  Gaziantepspor      4      4      D  14-15
('26/10/15', 'SP1')
                       home      away  hgoal  agoal result season
date     league                                                  
26/10/15 SP1     Ath Bilbao  Sp Gijon      3      0      H  15-16
('26/10/15', 'T1')
                        home      away  hgoal  agoal result season
date     league                                                   
26/10/15 T1      Antalyaspor  Besiktas      1      5      A  15-16
('26/11/11', 'D1')
                       home            away  hgoal  agoal result season
date     league                                                        
26/11/11 D1        Augsburg       Wolfsburg      2      0      H  11-12
         D1        Dortmund      Schalke 04      2      0      H  11-12
         D1        Hannover         Hamburg      1      1      D  11-12
         D1          Hertha      Leverkusen      3      3      D  11-12
         D1      Hoffenheim        Freiburg      1      1      D  11-12
         D1        Nurnberg  Kaiserslautern      1      0      H  11-12
('26/11/11', 'E2')
                               home              away  hgoal  agoal result  \
date     league                                                              
26/11/11 E2             Bournemouth            Oldham      0      0      D   
         E2                    Bury           Preston      1      0      H   
         E2                Carlisle        Colchester      1      0      H   
         E2            Chesterfield  Sheffield United      0      1      A   
         E2                  Exeter          Tranmere      3      0      H   
         E2              Hartlepool            Yeovil      0      1      A   
         E2      Milton Keynes Dons           Wycombe      4      3      H   
         E2            Notts County        Scunthorpe      3      2      H   
         E2                Rochdale         Brentford      1      2      A   
         E2          Sheffield Weds     Leyton Orient      1      0      H   
         E2               Stevenage           Walsall      0      0      D   

                season  
date     league         
26/11/11 E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
('26/11/11', 'I1')
                     home      away  hgoal  agoal result season
date     league                                                
26/11/11 I1      Atalanta    Napoli      1      1      D  11-12
         I1         Lazio  Juventus      0      1      A  11-12
         I1         Lecce   Catania      0      1      A  11-12
         I1        Novara     Parma      2      1      H  11-12
('26/11/11', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
26/11/11 SP1          Getafe   Barcelona      1      0      H  11-12
         SP1     Real Madrid  Ath Madrid      4      1      H  11-12
         SP1       Vallecano    Valencia      1      2      A  11-12
('26/11/11', 'T1')
                        home                away  hgoal  agoal result season
date     league                                                             
26/11/11 T1      Galatasaray           Sivasspor      2      1      H  11-12
         T1         Orduspor  Mersin Idman Yurdu      0      1      A  11-12
         T1       Samsunspor         Antalyaspor      1      0      H  11-12
('26/11/12', 'I1')
                     home    away  hgoal  agoal result season
date     league                                              
26/11/12 I1      Cagliari  Napoli      0      1      A  12-13
         I1         Parma   Inter      1      0      H  12-13
('26/11/12', 'SP1')
                     home   away  hgoal  agoal result season
date     league                                             
26/11/12 SP1     Zaragoza  Celta      0      1      A  12-13
('26/11/12', 'T1')
                        home           away  hgoal  agoal result season
date     league                                                        
26/11/12 T1      Trabzonspor  Eskisehirspor      0      3      A  12-13
('26/11/13', 'E2')
                             home                away  hgoal  agoal result  \
date     league                                                              
26/11/13 E2              Bradford        Notts County      1      1      D   
         E2             Brentford           Peterboro      3      2      H   
         E2          Bristol City       Leyton Orient      2      2      D   
         E2              Carlisle               Crewe      2      1      H   
         E2            Colchester  Milton Keynes Dons      3      1      H   
         E2              Coventry           Rotherham      0      3      A   
         E2          Crawley Town             Swindon      0      0      D   
         E2            Gillingham           Stevenage      3      2      H   
         E2             Port Vale             Preston      0      2      A   
         E2      Sheffield United             Walsall      1      1      D   
         E2            Shrewsbury              Oldham      1      2      A   
         E2                Wolves            Tranmere      2      0      H   

                season  
date     league         
26/11/13 E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
('26/12/11', 'E2')
                          home                away  hgoal  agoal result season
date     league                                                               
26/12/11 E2          Brentford         Bournemouth      1      1      D  11-12
         E2         Colchester           Stevenage      1      6      A  11-12
         E2       Huddersfield        Chesterfield      1      0      H  11-12
         E2      Leyton Orient  Milton Keynes Dons      0      3      A  11-12
         E2             Oldham          Hartlepool      0      1      A  11-12
         E2            Preston            Carlisle      3      3      D  11-12
         E2         Scunthorpe                Bury      1      3      A  11-12
         E2            Walsall      Sheffield Weds      2      1      H  11-12
         E2            Wycombe              Exeter      3      1      H  11-12
         E2             Yeovil            Charlton      2      3      A  11-12
('26/12/12', 'E2')
                               home          away  hgoal  agoal result season
date     league                                                              
26/12/12 E2             Bournemouth        Yeovil      3      0      H  12-13
         E2                Carlisle    Hartlepool      3      0      H  12-13
         E2              Colchester     Brentford      1      3      A  12-13
         E2      Milton Keynes Dons       Walsall      2      4      A  12-13
         E2                  Oldham     Doncaster      1      2      A  12-13
         E2              Portsmouth  Crawley Town      1      2      A  12-13
         E2                 Preston          Bury      0      0      D  12-13
         E2        Sheffield United    Scunthorpe      3      0      H  12-13
         E2              Shrewsbury  Notts County      2      2      D  12-13
         E2               Stevenage      Coventry      1      3      A  12-13
         E2                Tranmere         Crewe      2      1      H  12-13
('26/12/13', 'E2')
                             home                away  hgoal  agoal result  \
date     league                                                              
26/12/13 E2              Bradford           Rotherham      0      1      A   
         E2             Brentford             Swindon      3      2      H   
         E2          Bristol City             Walsall      1      0      H   
         E2              Carlisle             Preston      0      1      A   
         E2            Colchester           Stevenage      4      0      H   
         E2              Coventry           Peterboro      4      2      H   
         E2          Crawley Town  Milton Keynes Dons      0      2      A   
         E2            Gillingham       Leyton Orient      1      2      A   
         E2             Port Vale        Notts County      2      1      H   
         E2      Sheffield United              Oldham      1      1      D   
         E2            Shrewsbury            Tranmere      0      1      A   
         E2                Wolves               Crewe      2      0      H   

                season  
date     league         
26/12/13 E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
('26/12/14', 'E2')
                           home                away  hgoal  agoal result  \
date     league                                                            
26/12/14 E2        Bristol City              Yeovil      2      1      H   
         E2        Chesterfield           Peterboro      3      2      H   
         E2          Colchester          Gillingham      1      2      A   
         E2           Doncaster            Coventry      2      0      H   
         E2      Fleetwood Town            Bradford      0      2      A   
         E2       Leyton Orient        Crawley Town      4      1      H   
         E2        Notts County  Milton Keynes Dons      0      1      A   
         E2              Oldham               Crewe      1      2      A   
         E2           Port Vale    Sheffield United      2      1      H   
         E2             Preston            Barnsley      1      0      H   
         E2          Scunthorpe            Rochdale      2      1      H   
         E2             Walsall             Swindon      1      4      A   

                season  
date     league         
26/12/14 E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
('26/12/14', 'T1')
                           home         away  hgoal  agoal result season
date     league                                                         
26/12/14 T1      Genclerbirligi  Galatasaray      1      1      D  14-15
('26/12/15', 'E2')
                       home            away  hgoal  agoal result season
date     league                                                        
26/12/15 E2      Colchester        Southend      0      2      A  15-16
         E2        Coventry       Port Vale      1      0      H  15-16
         E2       Doncaster      Scunthorpe      0      1      A  15-16
         E2        Millwall         Walsall      0      1      A  15-16
         E2       Peterboro    Chesterfield      2      0      H  15-16
         E2      Shrewsbury  Fleetwood Town      1      1      D  15-16
         E2         Swindon      Gillingham      1      3      A  15-16
('26/12/15', 'T1')
                        home           away  hgoal  agoal result season
date     league                                                        
26/12/15 T1      Antalyaspor  Gaziantepspor      0      0      D  15-16
         T1        Kasimpasa    Trabzonspor      1      1      D  15-16
         T1         Rizespor     Buyuksehyr      2      1      H  15-16
('27/01/12', 'D1')
                     home      away  hgoal  agoal result season
date     league                                                
27/01/12 D1      Hannover  Nurnberg      1      0      H  11-12
('27/01/12', 'E2')
                         home         away  hgoal  agoal result season
date     league                                                       
27/01/12 E2      Chesterfield  Bournemouth      1      0      H  11-12
('27/01/13', 'D1')
                      home           away  hgoal  agoal result season
date     league                                                      
27/01/13 D1        Hamburg  Werder Bremen      3      2      H  12-13
         D1      Stuttgart  Bayern Munich      0      2      A  12-13
('27/01/13', 'I1')
                      home        away  hgoal  agoal result season
date     league                                                   
27/01/13 I1       Atalanta       Milan      0      1      A  12-13
         I1        Bologna        Roma      3      3      D  12-13
         I1       Cagliari     Palermo      1      1      D  12-13
         I1        Catania  Fiorentina      2      1      H  12-13
         I1          Inter      Torino      2      2      D  12-13
         I1          Parma      Napoli      1      2      A  12-13
         I1      Sampdoria     Pescara      6      0      H  12-13
         I1        Udinese       Siena      1      0      H  12-13
('27/01/13', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
27/01/13 SP1      Ath Bilbao  Ath Madrid      3      0      H  12-13
         SP1       Barcelona     Osasuna      5      1      H  12-13
         SP1        Mallorca      Malaga      2      3      A  12-13
         SP1     Real Madrid      Getafe      4      0      H  12-13
         SP1       Vallecano       Betis      3      0      H  12-13
('27/01/13', 'T1')
                               home         away  hgoal  agoal result season
date     league                                                             
27/01/13 T1              Elazigspor  Trabzonspor      3      1      H  12-13
         T1             Galatasaray     Besiktas      2      1      H  12-13
         T1             Kayserispor  Antalyaspor      2      0      H  12-13
         T1      Mersin Idman Yurdu    Sivasspor      3      0      H  12-13
('27/01/14', 'SP1')
                     home   away  hgoal  agoal result season
date     league                                             
27/01/14 SP1     Sociedad  Elche      4      0      H  13-14
('27/01/14', 'T1')
                       home       away  hgoal  agoal result season
date     league                                                   
27/01/14 T1      Fenerbahce  Konyaspor      2      1      H  13-14
('27/02/15', 'D1')
                          home     away  hgoal  agoal result season
date     league                                                    
27/02/15 D1      Bayern Munich  FC Koln      4      1      H  14-15
('27/02/15', 'SP1')
                    home     away  hgoal  agoal result season
date     league                                              
27/02/15 SP1     Espanol  Cordoba      1      0      H  14-15
('27/02/15', 'T1')
                        home         away  hgoal  agoal result season
date     league                                                      
27/02/15 T1      Galatasaray  Erciyesspor      3      1      H  14-15
('27/02/16', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
27/02/16 D1            Hamburg     Ingolstadt      1      1      D  15-16
         D1          Stuttgart       Hannover      1      2      A  15-16
         D1      Werder Bremen      Darmstadt      2      2      D  15-16
         D1          Wolfsburg  Bayern Munich      0      2      A  15-16
('27/02/16', 'E2')
                       home              away  hgoal  agoal result season
date     league                                                          
27/02/16 E2      Colchester        Shrewsbury      0      0      D  15-16
         E2        Coventry    Fleetwood Town      1      2      A  15-16
         E2           Crewe          Barnsley      1      2      A  15-16
         E2       Doncaster          Millwall      1      1      D  15-16
         E2      Gillingham      Chesterfield      1      2      A  15-16
         E2       Peterboro           Swindon      1      2      A  15-16
         E2        Rochdale  Sheffield United      2      0      H  15-16
         E2      Scunthorpe            Oldham      1      1      D  15-16
         E2           Wigan              Bury      3      0      H  15-16
('27/02/16', 'I1')
                   home    away  hgoal  agoal result season
date     league                                            
27/02/16 I1      Empoli    Roma      1      3      A  15-16
         I1       Milan  Torino      1      0      H  15-16
('27/02/16', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
27/02/16 SP1           Betis   Vallecano      2      2      D  15-16
         SP1          Getafe       Celta      0      1      A  15-16
         SP1     Real Madrid  Ath Madrid      0      1      A  15-16
         SP1        Sociedad      Malaga      1      1      D  15-16
         SP1        Sp Gijon     Espanol      2      4      A  15-16
('27/02/16', 'T1')
                               home         away  hgoal  agoal result season
date     league                                                             
27/02/16 T1           Eskisehirspor    Bursaspor      0      1      A  15-16
         T1      Mersin Idman Yurdu    Konyaspor      0      2      A  15-16
         T1                Rizespor    Kasimpasa      2      0      H  15-16
         T1             Trabzonspor  Osmanlispor      1      2      A  15-16
('27/03/12', 'E2')
                               home           away  hgoal  agoal result season
date     league                                                               
27/03/12 E2      Milton Keynes Dons       Carlisle      1      2      A  11-12
         E2                  Oldham  Leyton Orient      0      1      A  11-12
         E2                 Preston      Brentford      1      3      A  11-12
         E2               Stevenage    Bournemouth      2      2      D  11-12
         E2                 Walsall     Colchester      3      1      H  11-12
('27/03/14', 'I1')
                  home     away  hgoal  agoal result season
date     league                                            
27/03/14 I1      Inter  Udinese      0      0      D  13-14
('27/03/14', 'SP1')
                     home        away  hgoal  agoal result season
date     league                                                  
27/03/14 SP1      Almeria    Valencia      2      2      D  13-14
         SP1       Getafe  Villarreal      0      1      A  13-14
         SP1      Levante       Betis      1      3      A  13-14
         SP1     Sociedad  Valladolid      1      0      H  13-14
('27/04/13', 'D1')
                               home           away  hgoal  agoal result season
date     league                                                               
27/04/13 D1                Augsburg      Stuttgart      3      0      H  12-13
         D1           Bayern Munich       Freiburg      1      0      H  12-13
         D1      Fortuna Dusseldorf       Dortmund      1      2      A  12-13
         D1              Hoffenheim       Nurnberg      2      1      H  12-13
         D1              Leverkusen  Werder Bremen      1      0      H  12-13
         D1               Wolfsburg     M'gladbach      3      1      H  12-13
('27/04/13', 'E2')
                             home                away  hgoal  agoal result  \
date     league                                                              
27/04/13 E2             Brentford           Doncaster      0      1      A   
         E2                  Bury              Yeovil      3      2      H   
         E2              Carlisle          Colchester      0      2      A   
         E2          Crawley Town          Hartlepool      2      2      D   
         E2                 Crewe             Walsall      2      0      H   
         E2         Leyton Orient              Oldham      1      1      D   
         E2          Notts County            Coventry      2      2      D   
         E2            Scunthorpe             Swindon      3      1      H   
         E2      Sheffield United             Preston      0      0      D   
         E2            Shrewsbury          Portsmouth      3      2      H   
         E2             Stevenage  Milton Keynes Dons      0      2      A   
         E2              Tranmere         Bournemouth      0      0      D   

                season  
date     league         
27/04/13 E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
         E2      12-13  
('27/04/13', 'I1')
                     home     away  hgoal  agoal result season
date     league                                               
27/04/13 I1      Atalanta  Bologna      1      1      D  12-13
         I1      Cagliari  Udinese      0      1      A  12-13
         I1       Pescara   Napoli      0      3      A  12-13
('27/04/13', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
27/04/13 SP1     Ath Bilbao    Barcelona      2      2      D  12-13
         SP1     Ath Madrid  Real Madrid      1      2      A  12-13
         SP1        Levante        Celta      0      1      A  12-13
         SP1       Zaragoza     Mallorca      3      2      H  12-13
('27/04/13', 'T1')
                        home                  away  hgoal  agoal result season
date     league                                                               
27/04/13 T1         Besiktas              Orduspor      2      0      H  12-13
         T1        Bursaspor  Akhisar Belediyespor      1      1      D  12-13
         T1       Elazigspor           Karabukspor      1      0      H  12-13
         T1        Sivasspor            Buyuksehyr      4      1      H  12-13
         T1      Trabzonspor        Genclerbirligi      2      0      H  12-13
('27/04/14', 'D1')
                       home        away  hgoal  agoal result season
date     league                                                    
27/04/14 D1        Augsburg     Hamburg      3      1      H  13-14
         D1      Schalke 04  M'gladbach      0      1      A  13-14
('27/04/14', 'I1')
                      home     away  hgoal  agoal result season
date     league                                                
27/04/14 I1       Atalanta    Genoa      1      1      D  13-14
         I1       Cagliari    Parma      1      0      H  13-14
         I1        Livorno    Lazio      0      2      A  13-14
         I1      Sampdoria   Chievo      2      1      H  13-14
         I1         Torino  Udinese      2      0      H  13-14
         I1         Verona  Catania      4      0      H  13-14
('27/04/14', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
27/04/14 SP1     Ath Bilbao     Sevilla      3      1      H  13-14
         SP1        Espanol     Almeria      1      2      A  13-14
         SP1       Valencia  Ath Madrid      0      1      A  13-14
         SP1     Villarreal   Barcelona      2      3      A  13-14
('27/04/14', 'T1')
                          home                  away  hgoal  agoal result  \
date     league                                                             
27/04/14 T1         Elazigspor           Galatasaray      0      1      A   
         T1      Eskisehirspor           Erciyesspor      0      1      A   
         T1         Fenerbahce              Rizespor      0      0      D   
         T1          Kasimpasa           Antalyaspor      2      0      H   
         T1        Kayserispor           Karabukspor      1      3      A   
         T1          Konyaspor  Akhisar Belediyespor      4      0      H   
         T1          Sivasspor              Besiktas      3      0      H   

                season  
date     league         
27/04/14 T1      13-14  
         T1      13-14  
         T1      13-14  
         T1      13-14  
         T1      13-14  
         T1      13-14  
         T1      13-14  
('27/04/15', 'SP1')
                     home     away  hgoal  agoal result season
date     league                                               
27/04/15 SP1     Valencia  Granada      4      0      H  14-15
('27/04/15', 'T1')
                     home         away  hgoal  agoal result season
date     league                                                   
27/04/15 T1      Besiktas  Karabukspor      2      1      H  14-15
('27/08/11', 'D1')
                           home           away  hgoal  agoal result season
date     league                                                           
27/08/11 D1            Freiburg      Wolfsburg      3      0      H  11-12
         D1             Hamburg        FC Koln      3      4      A  11-12
         D1          Hoffenheim  Werder Bremen      1      2      A  11-12
         D1      Kaiserslautern  Bayern Munich      0      3      A  11-12
         D1          Leverkusen       Dortmund      0      0      D  11-12
         D1            Nurnberg       Augsburg      1      0      H  11-12
('27/08/11', 'E2')
                               home              away  hgoal  agoal result  \
date     league                                                              
27/08/11 E2             Bournemouth           Walsall      0      2      A   
         E2               Brentford          Tranmere      0      2      A   
         E2                    Bury          Charlton      1      2      A   
         E2              Colchester            Oldham      4      1      H   
         E2                  Exeter      Chesterfield      2      1      H   
         E2            Huddersfield           Wycombe      3      0      H   
         E2           Leyton Orient          Carlisle      1      2      A   
         E2      Milton Keynes Dons         Stevenage      1      0      H   
         E2                 Preston      Notts County      2      0      H   
         E2                Rochdale        Hartlepool      1      3      A   
         E2          Sheffield Weds        Scunthorpe      3      2      H   
         E2                  Yeovil  Sheffield United      0      1      A   

                season  
date     league         
27/08/11 E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
('27/08/11', 'SP1')
                     home       away  hgoal  agoal result season
date     league                                                 
27/08/11 SP1      Granada      Betis      0      1      A  11-12
         SP1     Sp Gijon   Sociedad      1      2      A  11-12
         SP1     Valencia  Santander      4      3      H  11-12
('27/08/12', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
27/08/12 SP1     Ath Madrid  Ath Bilbao      4      0      H  12-13
         SP1     Valladolid     Levante      2      0      H  12-13
('27/08/12', 'T1')
                        home         away  hgoal  agoal result season
date     league                                                      
27/08/12 T1      Antalyaspor  Kayserispor      3      0      H  12-13
('27/08/13', 'D1')
                     home           away  hgoal  agoal result season
date     league                                                     
27/08/13 D1      Freiburg  Bayern Munich      1      1      D  13-14
('27/09/11', 'E2')
                               home      away  hgoal  agoal result season
date     league                                                          
27/09/11 E2      Milton Keynes Dons  Charlton      1      1      D  11-12
         E2                 Wycombe   Preston      3      4      A  11-12
('27/09/12', 'I1')
                  home     away  hgoal  agoal result season
date     league                                            
27/09/12 I1      Siena  Bologna      1      0      H  12-13
('27/09/13', 'D1')
                     home        away  hgoal  agoal result season
date     league                                                  
27/09/13 D1      Augsburg  M'gladbach      2      2      D  13-14
('27/09/13', 'SP1')
                       home    away  hgoal  agoal result season
date     league                                                
27/09/13 SP1     Valladolid  Malaga      2      2      D  13-14
('27/09/13', 'T1')
                      home                  away  hgoal  agoal result season
date     league                                                             
27/09/13 T1      Bursaspor  Akhisar Belediyespor      0      0      D  13-14
('27/09/14', 'D1')
                       home           away  hgoal  agoal result season
date     league                                                       
27/09/14 D1         FC Koln  Bayern Munich      0      2      A  14-15
         D1        Freiburg     Leverkusen      0      0      D  14-15
         D1       Paderborn     M'gladbach      1      2      A  14-15
         D1      Schalke 04       Dortmund      2      1      H  14-15
         D1       Stuttgart       Hannover      1      0      H  14-15
         D1       Wolfsburg  Werder Bremen      2      1      H  14-15
('27/09/14', 'E2')
                             home                away  hgoal  agoal result  \
date     league                                                              
27/09/14 E2              Barnsley             Swindon      0      3      A   
         E2              Bradford           Port Vale      1      1      D   
         E2          Bristol City  Milton Keynes Dons      3      2      H   
         E2          Chesterfield        Notts County      1      1      D   
         E2              Coventry             Preston      0      2      A   
         E2          Crawley Town              Yeovil      2      0      H   
         E2                 Crewe          Colchester      0      3      A   
         E2         Leyton Orient            Rochdale      2      3      A   
         E2                Oldham          Scunthorpe      3      2      H   
         E2             Peterboro      Fleetwood Town      1      0      H   
         E2      Sheffield United          Gillingham      2      1      H   
         E2               Walsall           Doncaster      3      0      H   

                season  
date     league         
27/09/14 E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
('27/09/14', 'I1')
                     home      away  hgoal  agoal result season
date     league                                                
27/09/14 I1      Atalanta  Juventus      0      3      A  14-15
         I1          Roma    Verona      2      0      H  14-15
('27/09/14', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
27/09/14 SP1     Ath Bilbao        Eibar      0      0      D  14-15
         SP1     Ath Madrid      Sevilla      4      0      H  14-15
         SP1      Barcelona      Granada      6      0      H  14-15
         SP1        Levante    Vallecano      0      2      A  14-15
         SP1     Villarreal  Real Madrid      0      2      A  14-15
('27/09/14', 'T1')
                        home           away  hgoal  agoal result season
date     league                                                        
27/09/14 T1         Besiktas  Eskisehirspor      1      1      D  14-15
         T1      Trabzonspor      Kasimpasa      1      1      D  14-15
('27/09/15', 'D1')
                          home       away  hgoal  agoal result season
date     league                                                      
27/09/15 D1           Dortmund  Darmstadt      2      2      D  15-16
         D1      Ein Frankfurt     Hertha      1      1      D  15-16
('27/09/15', 'I1')
                     home        away  hgoal  agoal result season
date     league                                                  
27/09/15 I1       Bologna     Udinese      1      2      A  15-16
         I1         Genoa       Milan      1      0      H  15-16
         I1         Inter  Fiorentina      1      4      A  15-16
         I1      Sassuolo      Chievo      1      1      D  15-16
         I1        Torino     Palermo      2      1      H  15-16
         I1        Verona       Lazio      1      2      A  15-16
('27/09/15', 'SP1')
                      home        away  hgoal  agoal result season
date     league                                                   
27/09/15 SP1        Getafe     Levante      3      0      H  15-16
         SP1     La Coruna     Espanol      3      0      H  15-16
         SP1      Sociedad  Ath Bilbao      0      0      D  15-16
         SP1      Sp Gijon       Betis      1      2      A  15-16
('27/09/15', 'T1')
                        home                away  hgoal  agoal result season
date     league                                                             
27/09/15 T1      Antalyaspor           Sivasspor      1      1      D  15-16
         T1         Besiktas          Fenerbahce      3      2      H  15-16
         T1        Konyaspor  Mersin Idman Yurdu      2      0      H  15-16
('27/10/11', 'I1')
                    home   away  hgoal  agoal result season
date     league                                            
27/10/11 I1      Palermo  Lecce      2      0      H  11-12
('27/10/11', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
27/10/11 SP1     Ath Bilbao  Ath Madrid      3      0      H  11-12
         SP1        Espanol       Betis      1      0      H  11-12
('27/10/11', 'T1')
                           home                away  hgoal  agoal result  \
date     league                                                            
27/10/11 T1            Besiktas          Fenerbahce      2      2      D   
         T1      Genclerbirligi         Kayserispor      1      0      H   
         T1          Manisaspor          Ankaragucu      2      0      H   
         T1           Sivasspor  Mersin Idman Yurdu      1      0      H   

                season  
date     league         
27/10/11 T1      11-12  
         T1      11-12  
         T1      11-12  
         T1      11-12  
('27/10/12', 'D1')
                               home           away  hgoal  agoal result season
date     league                                                               
27/10/12 D1      Fortuna Dusseldorf      Wolfsburg      1      4      A  12-13
         D1                Freiburg       Dortmund      0      2      A  12-13
         D1          Greuther Furth  Werder Bremen      1      1      D  12-13
         D1                   Mainz     Hoffenheim      3      0      H  12-13
         D1              Schalke 04       Nurnberg      1      0      H  12-13
('27/10/12', 'E2')
                          home                away  hgoal  agoal result season
date     league                                                               
27/10/12 E2          Brentford          Hartlepool      2      2      D  12-13
         E2               Bury             Walsall      1      1      D  12-13
         E2           Carlisle         Bournemouth      2      4      A  12-13
         E2       Crawley Town              Oldham      1      1      D  12-13
         E2              Crewe              Yeovil      0      1      A  12-13
         E2      Leyton Orient            Coventry      0      1      A  12-13
         E2       Notts County           Doncaster      0      2      A  12-13
         E2         Scunthorpe  Milton Keynes Dons      0      3      A  12-13
         E2         Shrewsbury          Colchester      2      2      D  12-13
         E2          Stevenage             Swindon      0      4      A  12-13
         E2           Tranmere             Preston      1      1      D  12-13
('27/10/12', 'I1')
                  home     away  hgoal  agoal result season
date     league                                            
27/10/12 I1      Milan    Genoa      1      0      H  12-13
         I1      Siena  Palermo      0      0      D  12-13
('27/10/12', 'SP1')
                      home       away  hgoal  agoal result season
date     league                                                  
27/10/12 SP1         Betis   Valencia      1      0      H  12-13
         SP1         Celta  La Coruna      1      1      D  12-13
         SP1       Espanol     Malaga      0      0      D  12-13
         SP1     Vallecano  Barcelona      0      5      A  12-13
('27/10/12', 'T1')
                               home                  away  hgoal  agoal  \
date     league                                                           
27/10/12 T1             Galatasaray           Kayserispor      3      0   
         T1      Mersin Idman Yurdu            Buyuksehyr      2      0   
         T1               Sivasspor  Akhisar Belediyespor      1      2   

                result season  
date     league                
27/10/12 T1          H  12-13  
         T1          H  12-13  
         T1          A  12-13  
('27/10/13', 'D1')
                       home           away  hgoal  agoal result season
date     league                                                       
27/10/13 D1        Freiburg        Hamburg      0      3      A  13-14
         D1      M'gladbach  Ein Frankfurt      4      1      H  13-14
('27/10/13', 'I1')
                     home        away  hgoal  agoal result season
date     league                                                  
27/10/13 I1       Bologna     Livorno      1      0      H  13-14
         I1       Catania    Sassuolo      0      0      D  13-14
         I1        Chievo  Fiorentina      1      2      A  13-14
         I1      Juventus       Genoa      2      0      H  13-14
         I1         Lazio    Cagliari      2      0      H  13-14
         I1        Napoli      Torino      2      0      H  13-14
         I1         Parma       Milan      3      2      H  13-14
         I1       Udinese        Roma      0      1      A  13-14
('27/10/13', 'SP1')
                       home      away  hgoal  agoal result season
date     league                                                  
27/10/13 SP1     Ath Madrid     Betis      5      0      H  13-14
         SP1        Sevilla   Osasuna      2      1      H  13-14
         SP1       Sociedad   Almeria      3      0      H  13-14
         SP1     Villarreal  Valencia      4      1      H  13-14
('27/10/13', 'T1')
                          home         away  hgoal  agoal result season
date     league                                                        
27/10/13 T1      Eskisehirspor     Rizespor      4      1      H  13-14
         T1        Kayserispor  Galatasaray      2      4      A  13-14
         T1          Konyaspor    Bursaspor      0      1      A  13-14
('27/10/14', 'T1')
                        home      away  hgoal  agoal result season
date     league                                                   
27/10/14 T1      Erciyesspor  Besiktas      3      2      H  14-15
('27/10/15', 'E2')
                     home       away  hgoal  agoal result season
date     league                                                 
27/10/15 E2      Millwall  Doncaster      2      0      H  15-16
('27/10/15', 'I1')
                    home   away  hgoal  agoal result season
date     league                                            
27/10/15 I1      Bologna  Inter      0      1      A  15-16
('27/11/11', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
27/11/11 D1              Mainz  Bayern Munich      3      2      H  11-12
         D1      Werder Bremen      Stuttgart      2      0      H  11-12
('27/11/11', 'I1')
                     home        away  hgoal  agoal result season
date     league                                                  
27/11/11 I1      Cagliari     Bologna      1      1      D  11-12
         I1        Cesena       Genoa      2      0      H  11-12
         I1         Milan      Chievo      4      0      H  11-12
         I1       Palermo  Fiorentina      2      0      H  11-12
         I1         Siena       Inter      0      1      A  11-12
('27/11/11', 'SP1')
                       home       away  hgoal  agoal result season
date     league                                                   
27/11/11 SP1     Ath Bilbao    Granada      0      1      A  11-12
         SP1          Betis   Sociedad      2      3      A  11-12
         SP1        Espanol    Osasuna      1      2      A  11-12
         SP1        Levante   Sp Gijon      4      0      H  11-12
         SP1       Mallorca  Santander      2      1      H  11-12
         SP1       Zaragoza    Sevilla      0      1      A  11-12
('27/11/11', 'T1')
                          home           away  hgoal  agoal result season
date     league                                                          
27/11/11 T1         Buyuksehyr  Gaziantepspor      3      1      H  11-12
         T1      Eskisehirspor     Ankaragucu      3      2      H  11-12
         T1         Manisaspor    Kayserispor      1      0      H  11-12
         T1        Trabzonspor       Besiktas      0      1      A  11-12
('27/11/12', 'D1')
                          home                away  hgoal  agoal result season
date     league                                                               
27/11/12 D1           Dortmund  Fortuna Dusseldorf      1      1      D  12-13
         D1      Ein Frankfurt               Mainz      1      3      A  12-13
         D1            Hamburg          Schalke 04      3      1      H  12-13
         D1           Hannover      Greuther Furth      2      0      H  12-13
('27/11/12', 'E2')
                      home    away  hgoal  agoal result season
date     league                                               
27/11/12 E2      Doncaster  Oldham      1      0      H  12-13
('27/11/12', 'I1')
                  home     away  hgoal  agoal result season
date     league                                            
27/11/12 I1      Lazio  Udinese      3      0      H  12-13
('27/11/15', 'D1')
                      home     away  hgoal  agoal result season
date     league                                                
27/11/15 D1      Darmstadt  FC Koln      0      0      D  15-16
('27/11/15', 'SP1')
                    home   away  hgoal  agoal result season
date     league                                            
27/11/15 SP1     Levante  Betis      0      1      A  15-16
('27/11/15', 'T1')
                        home         away  hgoal  agoal result season
date     league                                                      
27/11/15 T1      Antalyaspor  Osmanlispor      1      1      D  15-16
         T1        Bursaspor  Kayserispor      1      2      A  15-16
         T1         Rizespor    Konyaspor      0      0      D  15-16
('27/12/11', 'E2')
                             home          away  hgoal  agoal result season
date     league                                                            
27/12/11 E2      Sheffield United  Notts County      2      1      H  11-12
('27/12/13', 'T1')
                           home                  away  hgoal  agoal result  \
date     league                                                              
27/12/13 T1      Genclerbirligi              Besiktas      1      0      H   
         T1           Kasimpasa  Akhisar Belediyespor      2      4      A   

                season  
date     league         
27/12/13 T1      13-14  
         T1      13-14  
('27/12/14', 'T1')
                        home                away  hgoal  agoal result season
date     league                                                             
27/12/14 T1       Buyuksehyr         Erciyesspor      3      1      H  14-15
         T1       Fenerbahce  Mersin Idman Yurdu      1      0      H  14-15
         T1      Karabukspor       Balikesirspor      0      1      A  14-15
('27/12/15', 'T1')
                                 home                away  hgoal  agoal  \
date     league                                                           
27/12/15 T1      Akhisar Belediyespor         Osmanlispor      0      0   
         T1                  Besiktas           Konyaspor      4      0   
         T1                 Bursaspor  Mersin Idman Yurdu      2      1   
         T1               Kayserispor         Galatasaray      1      1   

                result season  
date     league                
27/12/15 T1          D  15-16  
         T1          H  15-16  
         T1          H  15-16  
         T1          D  15-16  
('28/01/12', 'D1')
                          home            away  hgoal  agoal result season
date     league                                                           
28/01/12 D1           Augsburg  Kaiserslautern      2      2      D  11-12
         D1      Bayern Munich       Wolfsburg      2      0      H  11-12
         D1           Dortmund      Hoffenheim      3      1      H  11-12
         D1            FC Koln      Schalke 04      1      4      A  11-12
         D1             Hertha         Hamburg      1      2      A  11-12
         D1      Werder Bremen      Leverkusen      1      1      D  11-12
('28/01/12', 'E2')
                          home          away  hgoal  agoal result season
date     league                                                         
28/01/12 E2          Brentford       Wycombe      5      2      H  11-12
         E2             Exeter      Charlton      0      1      A  11-12
         E2         Hartlepool      Carlisle      4      0      H  11-12
         E2      Leyton Orient    Colchester      0      1      A  11-12
         E2           Rochdale          Bury      3      0      H  11-12
         E2           Tranmere  Huddersfield      1      1      D  11-12
         E2             Yeovil       Preston      2      1      H  11-12
('28/01/12', 'I1')
                     home     away  hgoal  agoal result season
date     league                                               
28/01/12 I1       Catania    Parma      1      1      D  11-12
         I1      Juventus  Udinese      2      1      H  11-12
('28/01/12', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
28/01/12 SP1         Espanol    Mallorca      1      0      H  11-12
         SP1     Real Madrid    Zaragoza      3      1      H  11-12
         SP1       Vallecano  Ath Bilbao      2      3      A  11-12
         SP1      Villarreal   Barcelona      0      0      D  11-12
('28/01/12', 'T1')
                        home            away  hgoal  agoal result season
date     league                                                         
28/01/12 T1      Antalyaspor  Genclerbirligi      2      2      D  11-12
         T1        Bursaspor     Galatasaray      1      0      H  11-12
('28/01/13', 'SP1')
                    home     away  hgoal  agoal result season
date     league                                              
28/01/13 SP1     Sevilla  Granada      3      0      H  12-13
('28/01/13', 'T1')
                          home      away  hgoal  agoal result season
date     league                                                     
28/01/13 T1      Eskisehirspor  Orduspor      1      0      H  12-13
('28/01/14', 'E2')
                          home                away  hgoal  agoal result season
date     league                                                               
28/01/14 E2           Bradford             Preston      0      0      D  13-14
         E2          Brentford        Bristol City      3      1      H  13-14
         E2           Carlisle  Milton Keynes Dons      3      0      H  13-14
         E2      Leyton Orient            Coventry      2      0      H  13-14
         E2             Oldham              Wolves      0      3      A  13-14
         E2           Tranmere           Rotherham      1      2      A  13-14
         E2            Walsall             Swindon      1      1      D  13-14
('28/02/12', 'E2')
                      home          away  hgoal  agoal result season
date     league                                                     
28/02/12 E2           Bury    Hartlepool      1      2      A  11-12
         E2      Stevenage  Huddersfield      2      2      D  11-12
('28/02/14', 'D1')
                   home      away  hgoal  agoal result season
date     league                                              
28/02/14 D1      Hertha  Freiburg      0      0      D  13-14
('28/02/14', 'SP1')
                       home     away  hgoal  agoal result season
date     league                                                 
28/02/14 SP1     Ath Bilbao  Granada      4      0      H  13-14
('28/02/14', 'T1')
                                 home         away  hgoal  agoal result season
date     league                                                               
28/02/14 T1      Akhisar Belediyespor    Bursaspor      2      1      H  13-14
         T1                  Besiktas  Antalyaspor      0      0      D  13-14
('28/02/15', 'D1')
                          home        away  hgoal  agoal result season
date     league                                                       
28/02/15 D1           Dortmund  Schalke 04      3      0      H  14-15
         D1      Ein Frankfurt     Hamburg      2      1      H  14-15
         D1           Hannover   Stuttgart      1      1      D  14-15
         D1             Hertha    Augsburg      1      0      H  14-15
         D1         Hoffenheim       Mainz      2      0      H  14-15
         D1         Leverkusen    Freiburg      1      0      H  14-15
('28/02/15', 'E2')
                         home           away  hgoal  agoal result season
date     league                                                         
28/02/15 E2      Bristol City       Rochdale      1      0      H  14-15
         E2             Crewe        Swindon      0      0      D  14-15
         E2         Doncaster     Colchester      2      0      H  14-15
         E2        Gillingham       Barnsley      0      1      A  14-15
         E2      Notts County      Port Vale      0      1      A  14-15
         E2            Oldham        Preston      0      4      A  14-15
         E2         Peterboro       Bradford      2      0      H  14-15
         E2        Scunthorpe         Yeovil      1      1      D  14-15
         E2           Walsall  Leyton Orient      0      2      A  14-15
('28/02/15', 'I1')
                   home   away  hgoal  agoal result season
date     league                                           
28/02/15 I1      Chievo  Milan      0      0      D  14-15
('28/02/15', 'SP1')
                      home       away  hgoal  agoal result season
date     league                                                  
28/02/15 SP1       Almeria  La Coruna      0      0      D  14-15
         SP1       Granada  Barcelona      1      3      A  14-15
         SP1        Malaga     Getafe      3      2      H  14-15
         SP1     Vallecano    Levante      4      2      H  14-15
('28/02/15', 'T1')
                           home           away  hgoal  agoal result season
date     league                                                           
28/02/15 T1      Genclerbirligi      Sivasspor      0      0      D  14-15
         T1           Konyaspor     Fenerbahce      1      1      D  14-15
         T1            Rizespor  Eskisehirspor      3      0      H  14-15
('28/02/16', 'D1')
                          home        away  hgoal  agoal result season
date     league                                                       
28/02/16 D1           Augsburg  M'gladbach      2      2      D  15-16
         D1           Dortmund  Hoffenheim      3      1      H  15-16
         D1      Ein Frankfurt  Schalke 04      0      0      D  15-16
         D1              Mainz  Leverkusen      3      1      H  15-16
('28/02/16', 'I1')
                      home       away  hgoal  agoal result season
date     league                                                  
28/02/16 I1          Carpi   Atalanta      1      1      D  15-16
         I1         Chievo      Genoa      1      0      H  15-16
         I1       Juventus      Inter      2      0      H  15-16
         I1        Palermo    Bologna      0      0      D  15-16
         I1      Sampdoria  Frosinone      2      0      H  15-16
         I1        Udinese     Verona      2      0      H  15-16
('28/02/16', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
28/02/16 SP1      Barcelona     Sevilla      2      1      H  15-16
         SP1      La Coruna     Granada      0      1      A  15-16
         SP1       Valencia  Ath Bilbao      0      3      A  15-16
         SP1     Villarreal     Levante      3      0      H  15-16
('28/02/16', 'T1')
                           home                  away  hgoal  agoal result  \
date     league                                                              
28/02/16 T1       Gaziantepspor           Galatasaray      2      0      H   
         T1      Genclerbirligi  Akhisar Belediyespor      3      1      H   
         T1           Sivasspor           Antalyaspor      0      0      D   

                season  
date     league         
28/02/16 T1      15-16  
         T1      15-16  
         T1      15-16  
('28/03/12', 'E2')
                             home          away  hgoal  agoal result season
date     league                                                            
28/03/12 E2      Sheffield United  Chesterfield      4      1      H  11-12
('28/03/14', 'D1')
                       home    away  hgoal  agoal result season
date     league                                                
28/03/14 D1      Schalke 04  Hertha      2      0      H  13-14
('28/03/14', 'T1')
                        home         away  hgoal  agoal result season
date     league                                                      
28/03/14 T1      Karabukspor     Besiktas      1      0      H  13-14
         T1        Kasimpasa  Erciyesspor      3      0      H  13-14
('28/03/15', 'E2')
                             home        away  hgoal  agoal result season
date     league                                                          
28/03/15 E2              Bradford      Oldham      2      0      H  14-15
         E2          Bristol City    Barnsley      2      2      D  14-15
         E2          Chesterfield     Walsall      1      0      H  14-15
         E2          Crawley Town  Gillingham      1      2      A  14-15
         E2         Leyton Orient   Port Vale      3      1      H  14-15
         E2          Notts County  Scunthorpe      2      2      D  14-15
         E2             Peterboro    Coventry      0      1      A  14-15
         E2              Rochdale      Yeovil      2      1      H  14-15
         E2      Sheffield United       Crewe      1      2      A  14-15
('28/03/16', 'E2')
                       home          away  hgoal  agoal result season
date     league                                                      
28/03/16 E2            Bury    Gillingham      0      1      A  15-16
         E2           Crewe      Bradford      0      1      A  15-16
         E2       Doncaster     Blackpool      0      1      A  15-16
         E2        Millwall        Burton      2      0      H  15-16
         E2          Oldham  Chesterfield      1      0      H  15-16
         E2       Port Vale      Barnsley      0      1      A  15-16
         E2      Scunthorpe       Swindon      6      0      H  15-16
         E2           Wigan      Rochdale      1      0      H  15-16
('28/04/12', 'D1')
                           home           away  hgoal  agoal result season
date     league                                                           
28/04/12 D1       Bayern Munich      Stuttgart      2      0      H  11-12
         D1            Freiburg        FC Koln      4      1      H  11-12
         D1             Hamburg          Mainz      0      0      D  11-12
         D1          Hoffenheim       Nurnberg      2      3      A  11-12
         D1      Kaiserslautern       Dortmund      2      5      A  11-12
         D1          Leverkusen       Hannover      1      0      H  11-12
         D1          M'gladbach       Augsburg      0      0      D  11-12
         D1          Schalke 04         Hertha      4      0      H  11-12
         D1           Wolfsburg  Werder Bremen      3      1      H  11-12
('28/04/12', 'E2')
                             home                away  hgoal  agoal result  \
date     league                                                              
28/04/12 E2             Brentford      Sheffield Weds      1      2      A   
         E2                  Bury              Oldham      0      0      D   
         E2              Carlisle              Exeter      4      1      H   
         E2            Colchester            Tranmere      4      2      H   
         E2            Hartlepool       Leyton Orient      2      1      H   
         E2               Preston            Charlton      2      2      D   
         E2              Rochdale  Milton Keynes Dons      1      2      A   
         E2            Scunthorpe         Bournemouth      1      1      D   
         E2      Sheffield United           Stevenage      2      2      D   
         E2               Walsall        Huddersfield      1      1      D   
         E2               Wycombe        Notts County      3      4      A   
         E2                Yeovil        Chesterfield      3      2      H   

                season  
date     league         
28/04/12 E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
('28/04/12', 'I1')
                     home     away  hgoal  agoal result season
date     league                                               
28/04/12 I1      Cagliari   Chievo      0      0      D  11-12
         I1       Palermo  Catania      1      1      D  11-12
         I1          Roma   Napoli      2      2      D  11-12
('28/04/12', 'SP1')
                       home       away  hgoal  agoal result season
date     league                                                   
28/04/12 SP1        Espanol   Sp Gijon      0      3      A  11-12
         SP1         Getafe   Mallorca      1      3      A  11-12
         SP1        Levante    Granada      3      1      H  11-12
         SP1       Sociedad  Santander      3      0      H  11-12
         SP1     Villarreal    Osasuna      1      1      D  11-12
('28/04/13', 'D1')
                       home           away  hgoal  agoal result season
date     league                                                       
28/04/13 D1           Mainz  Ein Frankfurt      0      0      D  12-13
         D1      Schalke 04        Hamburg      4      1      H  12-13
('28/04/13', 'I1')
                      home        away  hgoal  agoal result season
date     league                                                   
28/04/13 I1         Chievo       Genoa      0      1      A  12-13
         I1          Milan     Catania      4      2      H  12-13
         I1        Palermo       Inter      1      0      H  12-13
         I1          Parma       Lazio      0      0      D  12-13
         I1           Roma       Siena      4      0      H  12-13
         I1      Sampdoria  Fiorentina      0      3      A  12-13
         I1         Torino    Juventus      0      2      A  12-13
('28/04/13', 'SP1')
                       home      away  hgoal  agoal result season
date     league                                                  
28/04/13 SP1        Espanol   Granada      0      1      A  12-13
         SP1         Malaga    Getafe      2      1      H  12-13
         SP1       Sociedad  Valencia      4      2      H  12-13
         SP1     Valladolid   Sevilla      1      1      D  12-13
('28/04/13', 'T1')
                          home           away  hgoal  agoal result season
date     league                                                          
28/04/13 T1         Fenerbahce    Kayserispor      2      1      H  12-13
         T1      Gaziantepspor    Galatasaray      0      1      A  12-13
         T1          Kasimpasa  Eskisehirspor      1      2      A  12-13
('28/04/14', 'I1')
                     home      away  hgoal  agoal result season
date     league                                                
28/04/14 I1      Sassuolo  Juventus      1      3      A  13-14
('28/04/14', 'SP1')
                  home        away  hgoal  agoal result season
date     league                                               
28/04/14 SP1     Celta  Valladolid      4      1      H  13-14
('28/04/15', 'E2')
                       home     away  hgoal  agoal result season
date     league                                                 
28/04/15 E2      Colchester  Swindon      1      1      D  14-15
('28/04/15', 'I1')
                    home   away  hgoal  agoal result season
date     league                                            
28/04/15 I1      Udinese  Inter      1      2      A  14-15
('28/04/15', 'SP1')
                       home      away  hgoal  agoal result season
date     league                                                  
28/04/15 SP1     Ath Bilbao  Sociedad      1      1      D  14-15
         SP1      Barcelona    Getafe      6      0      H  14-15
         SP1        Levante   Cordoba      1      0      H  14-15
('28/08/11', 'D1')
                       home        away  hgoal  agoal result season
date     league                                                    
28/08/11 D1        Hannover       Mainz      1      1      D  11-12
         D1      Schalke 04  M'gladbach      1      0      H  11-12
('28/08/11', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
28/08/11 SP1     Ath Bilbao    Vallecano      1      1      D  11-12
         SP1     Ath Madrid      Osasuna      0      0      D  11-12
         SP1         Getafe      Levante      1      1      D  11-12
         SP1       Mallorca      Espanol      1      0      H  11-12
         SP1        Sevilla       Malaga      2      1      H  11-12
         SP1       Zaragoza  Real Madrid      0      6      A  11-12
('28/08/15', 'D1')
                      home        away  hgoal  agoal result season
date     league                                                   
28/08/15 D1      Wolfsburg  Schalke 04      3      0      H  15-16
('28/08/15', 'SP1')
                       home     away  hgoal  agoal result season
date     league                                                 
28/08/15 SP1     Villarreal  Espanol      3      1      H  15-16
('28/08/15', 'T1')
                          home      away  hgoal  agoal result season
date     league                                                     
28/08/15 T1      Gaziantepspor  Besiktas      0      4      A  15-16
('28/09/12', 'D1')
                               home        away  hgoal  agoal result season
date     league                                                            
28/09/12 D1      Fortuna Dusseldorf  Schalke 04      2      2      D  12-13
('28/09/12', 'T1')
                     home         away  hgoal  agoal result season
date     league                                                   
28/09/12 T1      Orduspor  Galatasaray      2      0      H  12-13
('28/09/13', 'D1')
                          home        away  hgoal  agoal result season
date     league                                                       
28/09/13 D1      Bayern Munich   Wolfsburg      1      0      H  13-14
         D1           Dortmund    Freiburg      5      0      H  13-14
         D1      Ein Frankfurt     Hamburg      2      2      D  13-14
         D1             Hertha       Mainz      3      1      H  13-14
         D1         Hoffenheim  Schalke 04      3      3      D  13-14
         D1         Leverkusen    Hannover      2      0      H  13-14
('28/09/13', 'E2')
                               home              away  hgoal  agoal result  \
date     league                                                              
28/09/13 E2                Bradford        Shrewsbury      2      1      H   
         E2            Bristol City        Colchester      1      1      D   
         E2                Carlisle      Notts County      2      1      H   
         E2            Crawley Town            Oldham      1      0      H   
         E2                   Crewe        Gillingham      0      3      A   
         E2           Leyton Orient           Walsall      1      1      D   
         E2      Milton Keynes Dons         Stevenage      4      1      H   
         E2                 Preston           Swindon      2      1      H   
         E2               Rotherham         Peterboro      0      1      A   
         E2                Tranmere         Port Vale      0      1      A   
         E2                  Wolves  Sheffield United      2      0      H   

                season  
date     league         
28/09/13 E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
('28/09/13', 'I1')
                  home       away  hgoal  agoal result season
date     league                                              
28/09/13 I1      Genoa     Napoli      0      2      A  13-14
         I1      Milan  Sampdoria      1      0      H  13-14
('28/09/13', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
28/09/13 SP1         Almeria   Barcelona      0      2      A  13-14
         SP1     Real Madrid  Ath Madrid      0      1      A  13-14
         SP1        Sociedad     Sevilla      1      1      D  13-14
         SP1        Valencia   Vallecano      1      0      H  13-14
('28/09/13', 'T1')
                          home         away  hgoal  agoal result season
date     league                                                        
28/09/13 T1        Galatasaray     Rizespor      1      1      D  13-14
         T1      Gaziantepspor  Karabukspor      3      0      H  13-14
('28/09/14', 'D1')
                     home           away  hgoal  agoal result season
date     league                                                     
28/09/14 D1      Augsburg         Hertha      1      0      H  14-15
         D1       Hamburg  Ein Frankfurt      1      2      A  14-15
('28/09/14', 'I1')
                     home        away  hgoal  agoal result season
date     league                                                  
28/09/14 I1        Cesena       Milan      1      1      D  14-15
         I1        Chievo      Empoli      1      1      D  14-15
         I1         Genoa   Sampdoria      0      1      A  14-15
         I1         Inter    Cagliari      1      4      A  14-15
         I1      Sassuolo      Napoli      0      1      A  14-15
         I1        Torino  Fiorentina      1      1      D  14-15
('28/09/14', 'SP1')
                      home      away  hgoal  agoal result season
date     league                                                 
28/09/14 SP1       Cordoba   Espanol      0      0      D  14-15
         SP1        Getafe    Malaga      1      0      H  14-15
         SP1     La Coruna   Almeria      0      1      A  14-15
         SP1      Sociedad  Valencia      1      1      D  14-15
('28/09/14', 'T1')
                                 home           away  hgoal  agoal result  \
date     league                                                             
28/09/14 T1      Akhisar Belediyespor     Fenerbahce      2      0      H   
         T1            Genclerbirligi  Balikesirspor      3      1      H   
         T1                 Konyaspor    Erciyesspor      1      1      D   
         T1                  Rizespor      Bursaspor      0      1      A   

                season  
date     league         
28/09/14 T1      14-15  
         T1      14-15  
         T1      14-15  
         T1      14-15  
('28/09/15', 'I1')
                      home       away  hgoal  agoal result season
date     league                                                  
28/09/15 I1       Atalanta  Sampdoria      2      1      H  15-16
         I1      Frosinone     Empoli      2      0      H  15-16
('28/09/15', 'T1')
                        home           away  hgoal  agoal result season
date     league                                                        
28/09/15 T1        Bursaspor  Eskisehirspor      2      0      H  15-16
         T1        Kasimpasa       Rizespor      1      1      D  15-16
         T1      Kayserispor     Buyuksehyr      0      1      A  15-16
('28/10/11', 'D1')
                     home        away  hgoal  agoal result season
date     league                                                  
28/10/11 D1      Freiburg  Leverkusen      0      1      A  11-12
('28/10/12', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
28/10/12 D1      Bayern Munich     Leverkusen      1      2      A  12-13
         D1           Hannover     M'gladbach      2      3      A  12-13
         D1          Stuttgart  Ein Frankfurt      2      1      H  12-13
('28/10/12', 'I1')
                       home      away  hgoal  agoal result season
date     league                                                  
28/10/12 I1         Bologna     Inter      1      3      A  12-13
         I1         Catania  Juventus      0      1      A  12-13
         I1      Fiorentina     Lazio      2      0      H  12-13
         I1          Napoli    Chievo      1      0      H  12-13
         I1         Pescara  Atalanta      0      0      D  12-13
         I1            Roma   Udinese      2      3      A  12-13
         I1       Sampdoria  Cagliari      0      1      A  12-13
         I1          Torino     Parma      1      3      A  12-13
('28/10/12', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
28/10/12 SP1     Ath Bilbao       Getafe      1      2      A  12-13
         SP1     Ath Madrid      Osasuna      3      1      H  12-13
         SP1        Levante      Granada      3      1      H  12-13
         SP1       Mallorca  Real Madrid      0      5      A  12-13
         SP1       Zaragoza      Sevilla      2      1      H  12-13
('28/10/12', 'T1')
                          home            away  hgoal  agoal result season
date     league                                                           
28/10/12 T1      Gaziantepspor        Orduspor      3      0      H  12-13
         T1        Karabukspor  Genclerbirligi      0      0      D  12-13
         T1        Trabzonspor       Bursaspor      0      1      A  12-13
('28/10/13', 'SP1')
                   home        away  hgoal  agoal result season
date     league                                                
28/10/13 SP1     Getafe  Ath Bilbao      0      1      A  13-14
('28/10/13', 'T1')
                      home         away  hgoal  agoal result season
date     league                                                    
28/10/13 T1      Kasimpasa  Trabzonspor      3      2      H  13-14
('28/10/14', 'E2')
                          home     away  hgoal  agoal result season
date     league                                                    
28/10/14 E2       Chesterfield  Swindon      0      3      A  14-15
         E2      Leyton Orient  Preston      0      2      A  14-15
('28/10/14', 'I1')
                     home    away  hgoal  agoal result season
date     league                                              
28/10/14 I1      Sassuolo  Empoli      3      1      H  14-15
('28/10/15', 'I1')
                      home        away  hgoal  agoal result season
date     league                                                   
28/10/15 I1       Atalanta       Lazio      2      1      H  15-16
         I1      Frosinone       Carpi      2      1      H  15-16
         I1          Milan      Chievo      1      0      H  15-16
         I1         Napoli     Palermo      2      0      H  15-16
         I1           Roma     Udinese      3      1      H  15-16
         I1       Sassuolo    Juventus      1      0      H  15-16
         I1         Torino       Genoa      3      3      D  15-16
         I1         Verona  Fiorentina      0      2      A  15-16
('28/10/15', 'T1')
                        home           away  hgoal  agoal result season
date     league                                                        
28/10/15 T1        Bursaspor      Sivasspor      1      0      H  15-16
         T1      Kayserispor       Rizespor      0      0      D  15-16
         T1      Trabzonspor  Gaziantepspor      2      2      D  15-16
('28/11/11', 'E2')
                     home          away  hgoal  agoal result season
date     league                                                    
28/11/11 E2      Charlton  Huddersfield      2      0      H  11-12
('28/11/11', 'SP1')
                   home        away  hgoal  agoal result season
date     league                                                
28/11/11 SP1     Malaga  Villarreal      2      1      H  11-12
('28/11/11', 'T1')
                        home       away  hgoal  agoal result season
date     league                                                    
28/11/11 T1      Karabukspor  Bursaspor      3      1      H  11-12
('28/11/12', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
28/11/12 D1           Freiburg  Bayern Munich      0      2      A  12-13
         D1         M'gladbach      Wolfsburg      2      0      H  12-13
         D1           Nurnberg     Hoffenheim      4      2      H  12-13
         D1          Stuttgart       Augsburg      2      1      H  12-13
         D1      Werder Bremen     Leverkusen      1      4      A  12-13
('28/11/14', 'D1')
                     home       away  hgoal  agoal result season
date     league                                                 
28/11/14 D1      Freiburg  Stuttgart      1      4      A  14-15
('28/11/14', 'E2')
                             home          away  hgoal  agoal result season
date     league                                                            
28/11/14 E2             Peterboro  Bristol City      0      3      A  14-15
         E2      Sheffield United  Notts County      1      1      D  14-15
('28/11/14', 'SP1')
                     home   away  hgoal  agoal result season
date     league                                             
28/11/14 SP1     Sociedad  Elche      3      0      H  14-15
('28/11/14', 'T1')
                                 home       away  hgoal  agoal result season
date     league                                                             
28/11/14 T1      Akhisar Belediyespor  Konyaspor      0      0      D  14-15
         T1                Buyuksehyr  Bursaspor      0      0      D  14-15
('28/11/15', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
28/11/15 D1      Bayern Munich         Hertha      2      0      H  15-16
         D1           Hannover     Ingolstadt      4      0      H  15-16
         D1         Hoffenheim     M'gladbach      3      3      D  15-16
         D1              Mainz  Ein Frankfurt      2      1      H  15-16
         D1      Werder Bremen        Hamburg      1      3      A  15-16
('28/11/15', 'E2')
                         home              away  hgoal  agoal result season
date     league                                                            
28/11/15 E2          Barnsley  Sheffield United      1      1      D  15-16
         E2         Blackpool    Fleetwood Town      1      0      H  15-16
         E2            Burton        Colchester      5      1      H  15-16
         E2      Chesterfield           Swindon      0      4      A  15-16
         E2          Coventry         Doncaster      2      2      D  15-16
         E2             Crewe            Oldham      1      0      H  15-16
         E2          Millwall              Bury      1      0      H  15-16
         E2          Rochdale         Port Vale      2      1      H  15-16
         E2        Scunthorpe         Peterboro      0      4      A  15-16
         E2        Shrewsbury        Gillingham      2      2      D  15-16
         E2          Southend             Wigan      0      0      D  15-16
         E2           Walsall          Bradford      2      1      H  15-16
('28/11/15', 'I1')
                   home       away  hgoal  agoal result season
date     league                                               
28/11/15 I1       Milan  Sampdoria      4      1      H  15-16
         I1      Torino    Bologna      2      0      H  15-16
('28/11/15', 'SP1')
                       home       away  hgoal  agoal result season
date     league                                                   
28/11/15 SP1     Ath Madrid    Espanol      1      0      H  15-16
         SP1      Barcelona   Sociedad      4      0      H  15-16
         SP1          Celta   Sp Gijon      2      1      H  15-16
         SP1     Las Palmas  La Coruna      0      2      A  15-16
         SP1         Malaga    Granada      2      2      D  15-16
('28/11/15', 'T1')
                          home                away  hgoal  agoal result season
date     league                                                               
28/11/15 T1      Eskisehirspor  Mersin Idman Yurdu      3      2      H  15-16
         T1          Sivasspor          Buyuksehyr      2      2      D  15-16
('28/12/13', 'T1')
                          home         away  hgoal  agoal result season
date     league                                                        
28/12/13 T1         Elazigspor     Rizespor      1      0      H  13-14
         T1        Erciyesspor  Galatasaray      1      3      A  13-14
         T1      Gaziantepspor    Bursaspor      0      0      D  13-14
('28/12/14', 'E2')
                               home            away  hgoal  agoal result  \
date     league                                                            
28/12/14 E2                Bradford    Notts County      1      0      H   
         E2                Coventry    Chesterfield      0      0      D   
         E2            Crawley Town      Colchester      0      0      D   
         E2                   Crewe         Preston      1      1      D   
         E2              Gillingham    Bristol City      1      3      A   
         E2      Milton Keynes Dons         Walsall      0      3      A   
         E2               Peterboro       Doncaster      0      0      D   
         E2                Rochdale  Fleetwood Town      0      2      A   
         E2                 Swindon       Port Vale      1      0      H   

                season  
date     league         
28/12/14 E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
('28/12/14', 'T1')
                                 home       away  hgoal  agoal result season
date     league                                                             
28/12/14 T1      Akhisar Belediyespor   Rizespor      0      4      A  14-15
         T1             Gaziantepspor  Bursaspor      1      2      A  14-15
         T1                 Kasimpasa  Sivasspor      0      0      D  14-15
         T1                 Konyaspor   Besiktas      1      2      A  14-15
('28/12/15', 'E2')
                             home        away  hgoal  agoal result season
date     league                                                          
28/12/15 E2              Barnsley   Blackpool      4      2      H  15-16
         E2                Burton     Swindon      1      0      H  15-16
         E2          Chesterfield    Coventry      1      1      D  15-16
         E2                 Crewe  Shrewsbury      1      2      A  15-16
         E2        Fleetwood Town       Wigan      1      3      A  15-16
         E2            Gillingham  Colchester      1      0      H  15-16
         E2                Oldham   Doncaster      1      2      A  15-16
         E2             Port Vale        Bury      1      0      H  15-16
         E2            Scunthorpe    Rochdale      1      1      D  15-16
         E2      Sheffield United    Bradford      3      1      H  15-16
         E2              Southend    Millwall      0      4      A  15-16
         E2               Walsall   Peterboro      2      0      H  15-16
('28/12/15', 'T1')
                          home            away  hgoal  agoal result season
date     league                                                           
28/12/15 T1      Eskisehirspor  Genclerbirligi      2      0      H  15-16
         T1         Fenerbahce       Sivasspor      2      1      H  15-16
('29/01/12', 'D1')
                      home        away  hgoal  agoal result season
date     league                                                   
29/01/12 D1          Mainz    Freiburg      3      1      H  11-12
         D1      Stuttgart  M'gladbach      0      3      A  11-12
('29/01/12', 'I1')
                       home      away  hgoal  agoal result season
date     league                                                  
29/01/12 I1          Cesena  Atalanta      0      1      A  11-12
         I1          Chievo     Lazio      0      3      A  11-12
         I1      Fiorentina     Siena      2      1      H  11-12
         I1           Genoa    Napoli      3      2      H  11-12
         I1           Lecce     Inter      1      0      H  11-12
         I1           Milan  Cagliari      3      0      H  11-12
         I1         Palermo    Novara      2      0      H  11-12
         I1            Roma   Bologna      1      1      D  11-12
('29/01/12', 'SP1')
                      home      away  hgoal  agoal result season
date     league                                                 
29/01/12 SP1         Betis   Granada      1      2      A  11-12
         SP1       Levante    Getafe      1      2      A  11-12
         SP1        Malaga   Sevilla      2      1      H  11-12
         SP1     Santander  Valencia      2      2      D  11-12
         SP1      Sociedad  Sp Gijon      5      1      H  11-12
('29/01/12', 'T1')
                          home                away  hgoal  agoal result season
date     league                                                               
29/01/12 T1         Ankaragucu         Trabzonspor      0      4      A  11-12
         T1      Eskisehirspor            Orduspor      0      1      A  11-12
         T1         Fenerbahce  Mersin Idman Yurdu      2      1      H  11-12
         T1      Gaziantepspor           Sivasspor      2      1      H  11-12
         T1        Karabukspor          Manisaspor      2      1      H  11-12
         T1         Samsunspor          Buyuksehyr      2      4      A  11-12
('29/01/13', 'E2')
                          home                away  hgoal  agoal result season
date     league                                                               
29/01/13 E2      Leyton Orient             Swindon      0      0      D  12-13
         E2         Portsmouth        Notts County      0      2      A  12-13
         E2             Yeovil  Milton Keynes Dons      2      1      H  12-13
('29/01/14', 'D1')
                      home           away  hgoal  agoal result season
date     league                                                      
29/01/14 D1      Stuttgart  Bayern Munich      1      2      A  13-14
('29/01/16', 'D1')
                  home        away  hgoal  agoal result season
date     league                                               
29/01/16 D1      Mainz  M'gladbach      1      0      H  15-16
('29/02/12', 'E2')
                             home        away  hgoal  agoal result season
date     league                                                          
29/02/12 E2      Sheffield United  Scunthorpe      2      1      H  11-12
('29/02/16', 'I1')
                       home      away  hgoal  agoal result season
date     league                                                  
29/02/16 I1      Fiorentina    Napoli      1      1      D  15-16
         I1           Lazio  Sassuolo      0      2      A  15-16
('29/02/16', 'T1')
                       home      away  hgoal  agoal result season
date     league                                                  
29/02/16 T1      Fenerbahce  Besiktas      2      0      H  15-16
('29/03/13', 'E2')
                         home                away  hgoal  agoal result season
date     league                                                              
29/03/13 E2         Brentford        Notts County      2      1      H  12-13
         E2              Bury               Crewe      2      2      D  12-13
         E2          Carlisle          Shrewsbury      2      2      D  12-13
         E2        Colchester         Bournemouth      0      1      A  12-13
         E2          Coventry           Doncaster      1      0      H  12-13
         E2      Crawley Town           Stevenage      1      1      D  12-13
         E2        Hartlepool  Milton Keynes Dons      0      2      A  12-13
         E2           Preston          Portsmouth      1      1      D  12-13
         E2        Scunthorpe       Leyton Orient      2      1      H  12-13
         E2           Swindon              Oldham      1      1      D  12-13
         E2          Tranmere    Sheffield United      0      1      A  12-13
         E2            Yeovil             Walsall      0      0      D  12-13
('29/03/14', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
29/03/14 D1      Bayern Munich     Hoffenheim      3      3      D  13-14
         D1           Freiburg       Nurnberg      3      2      H  13-14
         D1         Leverkusen   Braunschweig      1      1      D  13-14
         D1              Mainz       Augsburg      3      0      H  13-14
         D1          Stuttgart       Dortmund      2      3      A  13-14
         D1          Wolfsburg  Ein Frankfurt      2      1      H  13-14
('29/03/14', 'E2')
                               home              away  hgoal  agoal result  \
date     league                                                              
29/03/14 E2                   Crewe          Coventry      1      2      A   
         E2           Leyton Orient          Bradford      0      1      A   
         E2      Milton Keynes Dons            Wolves      0      1      A   
         E2            Notts County        Colchester      2      0      H   
         E2                  Oldham         Brentford      0      0      D   
         E2                 Preston      Crawley Town      1      0      H   
         E2               Rotherham      Bristol City      2      1      H   
         E2               Stevenage         Port Vale      1      1      D   
         E2                 Swindon  Sheffield United      2      1      H   
         E2                Tranmere          Carlisle      0      0      D   
         E2                 Walsall        Shrewsbury      1      0      H   

                season  
date     league         
29/03/14 E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
('29/03/14', 'I1')
                    home      away  hgoal  agoal result season
date     league                                               
29/03/14 I1      Bologna  Atalanta      0      2      A  13-14
         I1        Milan    Chievo      3      0      H  13-14
('29/03/14', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
29/03/14 SP1      Ath Bilbao  Ath Madrid      1      2      A  13-14
         SP1           Celta     Sevilla      1      0      H  13-14
         SP1         Espanol   Barcelona      0      1      A  13-14
         SP1     Real Madrid   Vallecano      5      0      H  13-14
('29/03/14', 'T1')
                                 home           away  hgoal  agoal result  \
date     league                                                             
29/03/14 T1      Akhisar Belediyespor       Rizespor      2      3      A   
         T1                Elazigspor    Trabzonspor      0      0      D   
         T1                 Konyaspor    Galatasaray      0      0      D   
         T1                 Sivasspor  Gaziantepspor      3      2      H   

                season  
date     league         
29/03/14 T1      13-14  
         T1      13-14  
         T1      13-14  
         T1      13-14  
('29/03/15', 'E2')
                           home     away  hgoal  agoal result season
date     league                                                     
29/03/15 E2      Fleetwood Town  Preston      1      1      D  14-15
('29/03/16', 'E2')
                     home        away  hgoal  agoal result season
date     league                                                  
29/03/16 E2      Coventry  Colchester      0      1      A  15-16
('29/04/12', 'I1')
                     home        away  hgoal  agoal result season
date     league                                                  
29/04/12 I1      Atalanta  Fiorentina      2      0      H  11-12
         I1       Bologna       Genoa      3      2      H  11-12
         I1         Inter      Cesena      2      1      H  11-12
         I1         Lecce       Parma      1      2      A  11-12
         I1        Novara    Juventus      0      4      A  11-12
         I1         Siena       Milan      1      4      A  11-12
         I1       Udinese       Lazio      2      0      H  11-12
('29/04/12', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
29/04/12 SP1           Betis  Ath Madrid      2      2      D  11-12
         SP1          Malaga    Valencia      1      0      H  11-12
         SP1     Real Madrid     Sevilla      3      0      H  11-12
         SP1       Vallecano   Barcelona      0      7      A  11-12
         SP1        Zaragoza  Ath Bilbao      2      0      H  11-12
('29/04/13', 'SP1')
                  home       away  hgoal  agoal result season
date     league                                              
29/04/13 SP1     Betis  La Coruna      1      1      D  12-13
('29/04/14', 'E2')
                         home              away  hgoal  agoal result season
date     league                                                            
29/04/14 E2      Crawley Town          Carlisle      0      0      D  13-14
         E2            Oldham  Sheffield United      1      1      D  13-14
('29/04/15', 'I1')
                      home        away  hgoal  agoal result season
date     league                                                   
29/04/15 I1         Cesena    Atalanta      2      2      D  14-15
         I1         Chievo    Cagliari      1      0      H  14-15
         I1       Juventus  Fiorentina      3      2      H  14-15
         I1          Lazio       Parma      4      0      H  14-15
         I1          Milan       Genoa      1      3      A  14-15
         I1        Palermo      Torino      2      2      D  14-15
         I1      Sampdoria      Verona      1      1      D  14-15
         I1       Sassuolo        Roma      0      3      A  14-15
('29/04/15', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
29/04/15 SP1           Celta      Malaga      1      0      H  14-15
         SP1           Eibar     Sevilla      1      3      A  14-15
         SP1           Elche   La Coruna      4      0      H  14-15
         SP1     Real Madrid     Almeria      3      0      H  14-15
         SP1      Villarreal  Ath Madrid      0      1      A  14-15
('29/04/16', 'D1')
                     home     away  hgoal  agoal result season
date     league                                               
29/04/16 D1      Augsburg  FC Koln      0      0      D  15-16
('29/04/16', 'SP1')
                     home   away  hgoal  agoal result season
date     league                                             
29/04/16 SP1     Sp Gijon  Eibar      2      0      H  15-16
('29/04/16', 'T1')
                      home                away  hgoal  agoal result season
date     league                                                           
29/04/16 T1      Bursaspor         Galatasaray      1      1      D  15-16
         T1       Rizespor  Mersin Idman Yurdu      2      0      H  15-16
('29/05/15', 'T1')
                          home                  away  hgoal  agoal result  \
date     league                                                             
29/05/15 T1      Balikesirspor         Gaziantepspor      1      1      D   
         T1           Besiktas        Genclerbirligi      2      1      H   
         T1        Erciyesspor           Karabukspor      4      3      H   
         T1      Eskisehirspor  Akhisar Belediyespor      1      3      A   

                season  
date     league         
29/05/15 T1      14-15  
         T1      14-15  
         T1      14-15  
         T1      14-15  
('29/08/11', 'SP1')
                      home        away  hgoal  agoal result season
date     league                                                   
29/08/11 SP1     Barcelona  Villarreal      5      0      H  11-12
('29/08/14', 'D1')
                     home      away  hgoal  agoal result season
date     league                                                
29/08/14 D1      Augsburg  Dortmund      2      3      A  14-15
('29/08/14', 'SP1')
                     home     away  hgoal  agoal result season
date     league                                               
29/08/14 SP1       Getafe  Almeria      1      0      H  14-15
         SP1     Valencia   Malaga      3      0      H  14-15
('29/08/14', 'T1')
                          home                  away  hgoal  agoal result  \
date     league                                                             
29/08/14 T1      Balikesirspor  Akhisar Belediyespor      1      2      A   
         T1           Rizespor        Genclerbirligi      1      1      D   

                season  
date     league         
29/08/14 T1      14-15  
         T1      14-15  
('29/08/15', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
29/08/15 D1           Augsburg     Ingolstadt      0      1      A  15-16
         D1      Bayern Munich     Leverkusen      3      0      H  15-16
         D1          Darmstadt     Hoffenheim      0      0      D  15-16
         D1            FC Koln        Hamburg      2      1      H  15-16
         D1              Mainz       Hannover      3      0      H  15-16
         D1          Stuttgart  Ein Frankfurt      1      4      A  15-16
('29/08/15', 'E2')
                       home              away  hgoal  agoal result season
date     league                                                          
29/08/15 E2       Blackpool           Walsall      0      4      A  15-16
         E2        Bradford         Port Vale      1      0      H  15-16
         E2            Bury            Oldham      1      1      D  15-16
         E2      Colchester        Scunthorpe      2      2      D  15-16
         E2       Doncaster    Fleetwood Town      2      0      H  15-16
         E2        Millwall      Chesterfield      0      2      A  15-16
         E2       Peterboro        Gillingham      1      1      D  15-16
         E2        Rochdale          Barnsley      3      0      H  15-16
         E2      Shrewsbury            Burton      0      1      A  15-16
         E2         Swindon  Sheffield United      0      2      A  15-16
         E2           Wigan             Crewe      1      0      H  15-16
('29/08/15', 'I1')
                    home      away  hgoal  agoal result season
date     league                                               
29/08/15 I1      Bologna  Sassuolo      0      1      A  15-16
         I1        Milan    Empoli      2      1      H  15-16
('29/08/15', 'SP1')
                        home       away  hgoal  agoal result season
date     league                                                    
29/08/15 SP1       Barcelona     Malaga      1      0      H  15-16
         SP1           Celta  Vallecano      3      0      H  15-16
         SP1     Real Madrid      Betis      5      0      H  15-16
         SP1        Sociedad   Sp Gijon      0      0      D  15-16
('29/08/15', 'T1')
                               home         away  hgoal  agoal result season
date     league                                                             
29/08/15 T1              Buyuksehyr    Bursaspor      2      1      H  15-16
         T1          Genclerbirligi    Kasimpasa      1      0      H  15-16
         T1               Konyaspor  Galatasaray      1      4      A  15-16
         T1      Mersin Idman Yurdu  Kayserispor      1      2      A  15-16
('29/09/12', 'D1')
                          home            away  hgoal  agoal result season
date     league                                                           
29/09/12 D1           Dortmund      M'gladbach      5      0      H  12-13
         D1            Hamburg        Hannover      1      0      H  12-13
         D1         Hoffenheim        Augsburg      0      0      D  12-13
         D1         Leverkusen  Greuther Furth      2      0      H  12-13
         D1           Nurnberg       Stuttgart      0      2      A  12-13
         D1      Werder Bremen   Bayern Munich      0      2      A  12-13
('29/09/12', 'E2')
                               home          away  hgoal  agoal result season
date     league                                                              
29/09/12 E2             Bournemouth       Walsall      1      2      A  12-13
         E2                Carlisle  Crawley Town      0      2      A  12-13
         E2              Colchester    Hartlepool      3      1      H  12-13
         E2           Leyton Orient     Doncaster      0      2      A  12-13
         E2      Milton Keynes Dons         Crewe      1      0      H  12-13
         E2                  Oldham      Coventry      0      1      A  12-13
         E2              Portsmouth    Scunthorpe      2      1      H  12-13
         E2                 Preston        Yeovil      3      2      H  12-13
         E2        Sheffield United  Notts County      1      1      D  12-13
         E2              Shrewsbury       Swindon      0      1      A  12-13
         E2               Stevenage          Bury      2      2      D  12-13
         E2                Tranmere     Brentford      1      1      D  12-13
('29/09/12', 'I1')
                     home   away  hgoal  agoal result season
date     league                                             
29/09/12 I1      Juventus   Roma      4      1      H  12-13
         I1         Parma  Milan      1      1      D  12-13
('29/09/12', 'SP1')
                     home        away  hgoal  agoal result season
date     league                                                  
29/09/12 SP1       Malaga       Betis      4      0      H  12-13
         SP1      Sevilla   Barcelona      2      3      A  12-13
         SP1     Sociedad  Ath Bilbao      2      0      H  12-13
         SP1     Valencia    Zaragoza      2      0      H  12-13
('29/09/12', 'T1')
                                 home           away  hgoal  agoal result  \
date     league                                                             
29/09/12 T1      Akhisar Belediyespor    Karabukspor      1      3      A   
         T1                 Bursaspor  Gaziantepspor      1      1      D   
         T1                 Kasimpasa     Fenerbahce      2      0      H   

                season  
date     league         
29/09/12 T1      12-13  
         T1      12-13  
         T1      12-13  
('29/09/13', 'D1')
                          home       away  hgoal  agoal result season
date     league                                                      
29/09/13 D1       Braunschweig  Stuttgart      0      4      A  13-14
         D1      Werder Bremen   Nurnberg      3      3      D  13-14
('29/09/13', 'E2')
                     home       away  hgoal  agoal result season
date     league                                                 
29/09/13 E2      Coventry  Brentford      0      2      A  13-14
('29/09/13', 'I1')
                     home      away  hgoal  agoal result season
date     league                                                
29/09/13 I1      Atalanta   Udinese      2      0      H  13-14
         I1      Cagliari     Inter      1      1      D  13-14
         I1       Catania    Chievo      2      0      H  13-14
         I1          Roma   Bologna      5      0      H  13-14
         I1      Sassuolo     Lazio      2      2      D  13-14
         I1        Torino  Juventus      0      1      A  13-14
         I1        Verona   Livorno      2      1      H  13-14
('29/09/13', 'SP1')
                    home        away  hgoal  agoal result season
date     league                                                 
29/09/13 SP1       Betis  Villarreal      1      0      H  13-14
         SP1       Celta       Elche      0      1      A  13-14
         SP1     Espanol      Getafe      0      2      A  13-14
         SP1     Osasuna     Levante      0      1      A  13-14
('29/09/13', 'T1')
                           home           away  hgoal  agoal result season
date     league                                                           
29/09/13 T1          Elazigspor      Sivasspor      2      4      A  13-14
         T1      Genclerbirligi     Fenerbahce      0      1      A  13-14
         T1           Kasimpasa  Eskisehirspor      0      2      A  13-14
         T1         Trabzonspor      Konyaspor      2      0      H  13-14
('29/09/14', 'I1')
                    home   away  hgoal  agoal result season
date     league                                            
29/09/14 I1      Palermo  Lazio      0      4      A  14-15
         I1      Udinese  Parma      4      2      H  14-15
('29/09/14', 'T1')
                          home                away  hgoal  agoal result season
date     league                                                               
29/09/14 T1      Gaziantepspor          Buyuksehyr      0      0      D  14-15
         T1        Karabukspor  Mersin Idman Yurdu      0      2      A  14-15
('29/09/15', 'E2')
                       home              away  hgoal  agoal result season
date     league                                                          
29/09/15 E2       Blackpool      Chesterfield      2      0      H  15-16
         E2          Burton  Sheffield United      0      0      D  15-16
         E2      Colchester          Bradford      2      0      H  15-16
         E2           Crewe          Southend      1      2      A  15-16
         E2       Doncaster           Swindon      2      2      D  15-16
         E2      Gillingham    Fleetwood Town      5      1      H  15-16
         E2       Peterboro              Bury      2      3      A  15-16
         E2       Port Vale            Oldham      1      1      D  15-16
         E2        Rochdale        Shrewsbury      3      2      H  15-16
         E2      Scunthorpe           Walsall      0      1      A  15-16
         E2           Wigan          Millwall      2      2      D  15-16
('29/10/11', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
29/10/11 D1      Bayern Munich       Nurnberg      4      0      H  11-12
         D1              Mainz  Werder Bremen      1      3      A  11-12
         D1         M'gladbach       Hannover      2      1      H  11-12
         D1         Schalke 04     Hoffenheim      3      1      H  11-12
         D1          Stuttgart       Dortmund      1      1      D  11-12
         D1          Wolfsburg         Hertha      2      3      A  11-12
('29/10/11', 'E2')
                             home                away  hgoal  agoal result  \
date     league                                                              
29/10/11 E2             Brentford        Chesterfield      2      1      H   
         E2                  Bury           Stevenage      1      2      A   
         E2              Carlisle              Oldham      3      3      D   
         E2            Colchester        Notts County      4      2      H   
         E2            Hartlepool            Charlton      0      4      A   
         E2               Preston         Bournemouth      1      3      A   
         E2              Rochdale       Leyton Orient      0      2      A   
         E2            Scunthorpe            Tranmere      4      2      H   
         E2      Sheffield United              Exeter      4      4      D   
         E2               Walsall  Milton Keynes Dons      0      2      A   
         E2               Wycombe      Sheffield Weds      1      2      A   
         E2                Yeovil        Huddersfield      0      1      A   

                season  
date     league         
29/10/11 E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
('29/10/11', 'I1')
                    home      away  hgoal  agoal result season
date     league                                               
29/10/11 I1      Catania    Napoli      2      1      H  11-12
         I1        Inter  Juventus      1      2      A  11-12
         I1         Roma     Milan      2      3      A  11-12
('29/10/11', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
29/10/11 SP1      Barcelona     Mallorca      5      0      H  11-12
         SP1       Sociedad  Real Madrid      0      1      A  11-12
         SP1       Valencia       Getafe      3      1      H  11-12
         SP1     Villarreal    Vallecano      2      0      H  11-12
('29/10/11', 'T1')
                          home         away  hgoal  agoal result season
date     league                                                        
29/10/11 T1        Antalyaspor     Orduspor      1      1      D  11-12
         T1      Eskisehirspor   Samsunspor      1      0      H  11-12
         T1      Gaziantepspor  Trabzonspor      0      1      A  11-12
('29/10/12', 'E2')
                             home        away  hgoal  agoal result season
date     league                                                          
29/10/12 E2      Sheffield United  Portsmouth      1      0      H  12-13
('29/10/12', 'SP1')
                       home      away  hgoal  agoal result season
date     league                                                  
29/10/12 SP1     Valladolid  Sociedad      2      2      D  12-13
('29/10/12', 'T1')
                       home         away  hgoal  agoal result season
date     league                                                     
29/10/12 T1      Fenerbahce  Antalyaspor      1      3      A  12-13
('29/10/13', 'E2')
                         home    away  hgoal  agoal result season
date     league                                                  
29/10/13 E2      Notts County  Oldham      3      2      H  13-14
('29/10/13', 'I1')
                     home   away  hgoal  agoal result season
date     league                                             
29/10/13 I1      Atalanta  Inter      1      1      D  13-14
('29/10/13', 'SP1')
                    home       away  hgoal  agoal result season
date     league                                                
29/10/13 SP1       Celta  Barcelona      0      3      A  13-14
         SP1     Espanol     Malaga      0      0      D  13-14
('29/10/14', 'I1')
                       home       away  hgoal  agoal result season
date     league                                                   
29/10/14 I1        Atalanta     Napoli      1      1      D  14-15
         I1        Cagliari      Milan      1      1      D  14-15
         I1      Fiorentina    Udinese      3      0      H  14-15
         I1           Genoa   Juventus      1      0      H  14-15
         I1           Inter  Sampdoria      1      0      H  14-15
         I1         Palermo     Chievo      1      0      H  14-15
         I1            Roma     Cesena      2      0      H  14-15
         I1          Torino      Parma      1      0      H  14-15
('29/10/15', 'I1')
                      home    away  hgoal  agoal result season
date     league                                               
29/10/15 I1      Sampdoria  Empoli      1      1      D  15-16
('29/10/15', 'T1')
                               home           away  hgoal  agoal result season
date     league                                                               
29/10/15 T1             Galatasaray  Eskisehirspor      4      0      H  15-16
         T1      Mersin Idman Yurdu     Buyuksehyr      1      1      D  15-16
         T1             Osmanlispor     Fenerbahce      0      1      A  15-16
('29/11/11', 'E2')
                       home     away  hgoal  agoal result season
date     league                                                 
29/11/11 E2      Hartlepool  Preston      0      1      A  11-12
('29/11/11', 'I1')
                   home      away  hgoal  agoal result season
date     league                                              
29/11/11 I1      Napoli  Juventus      3      3      D  11-12
('29/11/11', 'SP1')
                      home       away  hgoal  agoal result season
date     league                                                  
29/11/11 SP1     Barcelona  Vallecano      4      0      H  11-12
('29/11/13', 'D1')
                      home     away  hgoal  agoal result season
date     league                                                
29/11/13 D1      Wolfsburg  Hamburg      1      1      D  13-14
('29/11/13', 'SP1')
                       home     away  hgoal  agoal result season
date     league                                                 
29/11/13 SP1         Getafe  Levante      1      0      H  13-14
         SP1     Villarreal   Malaga      1      1      D  13-14
('29/11/13', 'T1')
                       home         away  hgoal  agoal result season
date     league                                                     
29/11/13 T1      Elazigspor    Bursaspor      1      2      A  13-14
         T1       Sivasspor  Antalyaspor      0      3      A  13-14
('29/11/14', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
29/11/14 D1           Augsburg        Hamburg      3      1      H  14-15
         D1             Hertha  Bayern Munich      0      1      A  14-15
         D1         Hoffenheim       Hannover      4      3      H  14-15
         D1         Leverkusen        FC Koln      5      1      H  14-15
         D1         Schalke 04          Mainz      4      1      H  14-15
         D1      Werder Bremen      Paderborn      4      0      H  14-15
('29/11/14', 'E2')
                               home            away  hgoal  agoal result  \
date     league                                                            
29/11/14 E2                Barnsley      Scunthorpe      1      2      A   
         E2                Bradford   Leyton Orient      3      1      H   
         E2                Coventry         Walsall      0      0      D   
         E2            Crawley Town    Chesterfield      1      1      D   
         E2                   Crewe       Doncaster      1      1      D   
         E2              Gillingham       Port Vale      2      2      D   
         E2      Milton Keynes Dons      Colchester      6      0      H   
         E2                Rochdale          Oldham      0      3      A   
         E2                 Swindon  Fleetwood Town      1      0      H   
         E2                  Yeovil         Preston      0      2      A   

                season  
date     league         
29/11/14 E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
('29/11/14', 'I1')
                     home    away  hgoal  agoal result season
date     league                                              
29/11/14 I1        Chievo   Lazio      0      0      D  14-15
         I1      Sassuolo  Verona      2      1      H  14-15
('29/11/14', 'SP1')
                    home         away  hgoal  agoal result season
date     league                                                  
29/11/14 SP1       Celta        Eibar      0      1      A  14-15
         SP1     Espanol      Levante      2      1      H  14-15
         SP1      Getafe   Ath Bilbao      1      2      A  14-15
         SP1      Malaga  Real Madrid      1      2      A  14-15
('29/11/14', 'T1')
                          home           away  hgoal  agoal result season
date     league                                                          
29/11/14 T1        Erciyesspor  Balikesirspor      4      0      H  14-15
         T1      Gaziantepspor    Galatasaray      0      1      A  14-15
         T1          Kasimpasa       Rizespor      3      1      H  14-15
('29/11/15', 'D1')
                       home        away  hgoal  agoal result season
date     league                                                    
29/11/15 D1        Augsburg   Wolfsburg      0      0      D  15-16
         D1        Dortmund   Stuttgart      4      1      H  15-16
         D1      Leverkusen  Schalke 04      1      1      D  15-16
('29/11/15', 'I1')
                      home      away  hgoal  agoal result season
date     league                                                 
29/11/15 I1         Chievo   Udinese      2      3      A  15-16
         I1         Empoli     Lazio      1      0      H  15-16
         I1      Frosinone    Verona      3      2      H  15-16
         I1          Genoa     Carpi      1      2      A  15-16
         I1        Palermo  Juventus      0      3      A  15-16
         I1           Roma  Atalanta      0      2      A  15-16
('29/11/15', 'SP1')
                      home         away  hgoal  agoal result season
date     league                                                    
29/11/15 SP1         Eibar  Real Madrid      0      2      A  15-16
         SP1        Getafe   Villarreal      2      0      H  15-16
         SP1       Sevilla     Valencia      1      0      H  15-16
         SP1     Vallecano   Ath Bilbao      0      3      A  15-16
('29/11/15', 'T1')
                           home                  away  hgoal  agoal result  \
date     league                                                              
29/11/15 T1            Besiktas  Akhisar Belediyespor      0      2      A   
         T1      Genclerbirligi         Gaziantepspor      2      2      D   
         T1           Kasimpasa           Galatasaray      2      2      D   

                season  
date     league         
29/11/15 T1      15-16  
         T1      15-16  
         T1      15-16  
('29/12/12', 'E2')
                               home          away  hgoal  agoal result season
date     league                                                              
29/12/12 E2             Bournemouth  Crawley Town      3      0      H  12-13
         E2                Carlisle          Bury      2      1      H  12-13
         E2           Leyton Orient       Walsall      2      1      H  12-13
         E2      Milton Keynes Dons      Coventry      2      3      A  12-13
         E2                  Oldham         Crewe      1      2      A  12-13
         E2              Portsmouth        Yeovil      1      2      A  12-13
         E2                 Preston     Doncaster      0      3      A  12-13
         E2        Sheffield United    Hartlepool      2      3      A  12-13
         E2              Shrewsbury     Brentford      0      0      D  12-13
         E2                Tranmere    Scunthorpe      1      0      H  12-13
('29/12/13', 'E2')
                             home                away  hgoal  agoal result  \
date     league                                                              
29/12/13 E2              Bradford             Swindon      1      1      D   
         E2             Brentford  Milton Keynes Dons      3      1      H   
         E2          Bristol City           Stevenage      4      1      H   
         E2              Carlisle           Peterboro      2      1      H   
         E2            Colchester               Crewe      1      2      A   
         E2              Coventry              Oldham      1      1      D   
         E2          Crawley Town        Notts County      1      0      H   
         E2            Gillingham             Walsall      2      2      D   
         E2             Port Vale           Rotherham      2      0      H   
         E2      Sheffield United            Tranmere      3      1      H   
         E2            Shrewsbury             Preston      0      1      A   
         E2                Wolves       Leyton Orient      1      1      D   

                season  
date     league         
29/12/13 E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
('29/12/13', 'T1')
                        home           away  hgoal  agoal result season
date     league                                                        
29/12/13 T1       Fenerbahce    Kayserispor      5      1      H  13-14
         T1        Konyaspor  Eskisehirspor      4      1      H  13-14
         T1        Sivasspor    Karabukspor      3      1      H  13-14
         T1      Trabzonspor    Antalyaspor      2      1      H  13-14
('29/12/14', 'E2')
                   home           away  hgoal  agoal result season
date     league                                                   
29/12/14 E2      Yeovil  Leyton Orient      0      3      A  14-15
('29/12/14', 'T1')
                        home           away  hgoal  agoal result season
date     league                                                        
29/12/14 T1      Trabzonspor  Eskisehirspor      1      4      A  14-15
('30/01/12', 'SP1')
                    home        away  hgoal  agoal result season
date     league                                                 
30/01/12 SP1     Osasuna  Ath Madrid      0      1      A  11-12
('30/01/12', 'T1')
                        home      away  hgoal  agoal result season
date     league                                                   
30/01/12 T1      Kayserispor  Besiktas      1      0      H  11-12
('30/01/15', 'D1')
                      home           away  hgoal  agoal result season
date     league                                                      
30/01/15 D1      Wolfsburg  Bayern Munich      4      1      H  14-15
('30/01/15', 'SP1')
                      home       away  hgoal  agoal result season
date     league                                                  
30/01/15 SP1     Vallecano  La Coruna      1      2      A  14-15
('30/01/15', 'T1')
                                 home           away  hgoal  agoal result  \
date     league                                                             
30/01/15 T1      Akhisar Belediyespor  Balikesirspor      2      2      D   
         T1               Trabzonspor    Erciyesspor      2      1      H   

                season  
date     league         
30/01/15 T1      14-15  
         T1      14-15  
('30/01/16', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
30/01/16 D1           Augsburg  Ein Frankfurt      0      0      D  15-16
         D1          Darmstadt     Schalke 04      0      2      A  15-16
         D1           Dortmund     Ingolstadt      2      0      H  15-16
         D1         Leverkusen       Hannover      3      0      H  15-16
         D1          Stuttgart        Hamburg      2      1      H  15-16
         D1      Werder Bremen         Hertha      3      3      D  15-16
('30/01/16', 'E2')
                      home            away  hgoal  agoal result season
date     league                                                       
30/01/16 E2      Blackpool      Gillingham      1      0      H  15-16
         E2       Bradford  Fleetwood Town      2      1      H  15-16
         E2       Coventry      Scunthorpe      1      2      A  15-16
         E2       Millwall           Crewe      1      1      D  15-16
         E2       Rochdale          Burton      2      1      H  15-16
         E2        Swindon        Barnsley      0      1      A  15-16
         E2          Wigan       Port Vale      3      0      H  15-16
('30/01/16', 'I1')
                     home       away  hgoal  agoal result season
date     league                                                 
30/01/16 I1      Atalanta   Sassuolo      1      1      D  15-16
         I1         Carpi    Palermo      1      1      D  15-16
         I1          Roma  Frosinone      3      1      H  15-16
('30/01/16', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
30/01/16 SP1      Barcelona  Ath Madrid      2      1      H  15-16
         SP1          Eibar      Malaga      1      2      A  15-16
         SP1         Getafe  Ath Bilbao      0      1      A  15-16
         SP1       Sociedad       Betis      2      1      H  15-16
         SP1     Villarreal     Granada      1      0      H  15-16
('30/03/12', 'D1')
                     home       away  hgoal  agoal result season
date     league                                                 
30/03/12 D1      Dortmund  Stuttgart      4      4      D  11-12
('30/03/12', 'T1')
                               home         away  hgoal  agoal result season
date     league                                                             
30/03/12 T1           Gaziantepspor   Ankaragucu      1      0      H  11-12
         T1      Mersin Idman Yurdu  Karabukspor      0      2      A  11-12
('30/03/13', 'D1')
                               home           away  hgoal  agoal result season
date     league                                                               
30/03/13 D1                Augsburg       Hannover      0      2      A  12-13
         D1           Bayern Munich        Hamburg      9      2      H  12-13
         D1      Fortuna Dusseldorf     Leverkusen      1      4      A  12-13
         D1                Freiburg     M'gladbach      2      0      H  12-13
         D1                   Mainz  Werder Bremen      1      1      D  12-13
         D1              Schalke 04     Hoffenheim      3      0      H  12-13
         D1               Stuttgart       Dortmund      1      2      A  12-13
('30/03/13', 'I1')
                     home        away  hgoal  agoal result season
date     league                                                  
30/03/13 I1      Atalanta   Sampdoria      0      0      D  12-13
         I1      Cagliari  Fiorentina      2      1      H  12-13
         I1        Chievo       Milan      0      1      A  12-13
         I1         Genoa       Siena      2      2      D  12-13
         I1         Inter    Juventus      1      2      A  12-13
         I1         Lazio     Catania      2      1      H  12-13
         I1       Palermo        Roma      2      0      H  12-13
         I1         Parma     Pescara      3      0      H  12-13
         I1        Torino      Napoli      3      5      A  12-13
         I1       Udinese     Bologna      0      0      D  12-13
('30/03/13', 'SP1')
                      home         away  hgoal  agoal result season
date     league                                                    
30/03/13 SP1         Celta    Barcelona      2      2      D  12-13
         SP1       Levante      Sevilla      1      0      H  12-13
         SP1     Vallecano       Malaga      1      3      A  12-13
         SP1      Zaragoza  Real Madrid      1      1      D  12-13
('30/03/13', 'T1')
                          home           away  hgoal  agoal result season
date     league                                                          
30/03/13 T1        Galatasaray     Buyuksehyr      2      0      H  12-13
         T1      Gaziantepspor  Eskisehirspor      2      0      H  12-13
         T1          Sivasspor       Orduspor      3      2      H  12-13
('30/03/14', 'D1')
                       home           away  hgoal  agoal result season
date     league                                                       
30/03/14 D1        Hannover  Werder Bremen      1      2      A  13-14
         D1      M'gladbach        Hamburg      3      1      H  13-14
('30/03/14', 'I1')
                      home        away  hgoal  agoal result season
date     league                                                   
30/03/14 I1          Lazio       Parma      3      2      H  13-14
         I1         Napoli    Juventus      2      0      H  13-14
         I1      Sampdoria  Fiorentina      0      0      D  13-14
         I1       Sassuolo        Roma      0      2      A  13-14
         I1         Torino    Cagliari      2      1      H  13-14
('30/03/14', 'SP1')
                     home      away  hgoal  agoal result season
date     league                                                
30/03/14 SP1      Osasuna  Sociedad      1      1      D  13-14
         SP1     Valencia    Getafe      1      3      A  13-14
('30/03/16', 'E2')
                     home              away  hgoal  agoal result season
date     league                                                        
30/03/16 E2      Southend  Sheffield United      3      1      H  15-16
('30/04/15', 'I1')
                   home    away  hgoal  agoal result season
date     league                                            
30/04/15 I1      Empoli  Napoli      4      2      H  14-15
('30/04/15', 'SP1')
                      home      away  hgoal  agoal result season
date     league                                                 
30/04/15 SP1       Granada   Espanol      1      2      A  14-15
         SP1     Vallecano  Valencia      1      1      D  14-15
('30/04/16', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
30/04/16 D1      Bayern Munich     M'gladbach      1      1      D  15-16
         D1          Darmstadt  Ein Frankfurt      1      2      A  15-16
         D1           Dortmund      Wolfsburg      5      1      H  15-16
         D1           Hannover     Schalke 04      1      3      A  15-16
         D1         Hoffenheim     Ingolstadt      2      1      H  15-16
         D1         Leverkusen         Hertha      2      1      H  15-16
         D1              Mainz        Hamburg      0      0      D  15-16
('30/04/16', 'E2')
                         home              away  hgoal  agoal result season
date     league                                                            
30/04/16 E2          Barnsley        Colchester      2      2      D  15-16
         E2         Blackpool             Wigan      0      4      A  15-16
         E2            Burton        Gillingham      2      1      H  15-16
         E2      Chesterfield              Bury      3      0      H  15-16
         E2          Coventry  Sheffield United      3      1      H  15-16
         E2             Crewe         Doncaster      3      1      H  15-16
         E2          Millwall            Oldham      3      0      H  15-16
         E2          Rochdale           Swindon      2      2      D  15-16
         E2        Scunthorpe         Port Vale      1      0      H  15-16
         E2        Shrewsbury         Peterboro      3      4      A  15-16
         E2          Southend          Bradford      0      1      A  15-16
('30/04/16', 'I1')
                    home        away  hgoal  agoal result season
date     league                                                 
30/04/16 I1       Chievo  Fiorentina      0      0      D  15-16
         I1      Udinese      Torino      1      5      A  15-16
('30/04/16', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
30/04/16 SP1     Ath Madrid    Vallecano      1      0      H  15-16
         SP1          Betis    Barcelona      0      2      A  15-16
         SP1        Granada   Las Palmas      3      2      H  15-16
         SP1       Sociedad  Real Madrid      0      1      A  15-16
('30/04/16', 'T1')
                           home         away  hgoal  agoal result season
date     league                                                         
30/04/16 T1            Besiktas  Kayserispor      4      0      H  15-16
         T1       Eskisehirspor  Trabzonspor      1      0      H  15-16
         T1      Genclerbirligi   Buyuksehyr      0      0      D  15-16
('30/05/15', 'I1')
                     home      away  hgoal  agoal result season
date     league                                                
30/05/15 I1      Atalanta     Milan      1      3      A  14-15
         I1        Verona  Juventus      2      2      D  14-15
('30/05/15', 'T1')
                               home         away  hgoal  agoal result season
date     league                                                             
30/05/15 T1               Bursaspor    Konyaspor      0      0      D  14-15
         T1              Fenerbahce    Kasimpasa      2      0      H  14-15
         T1      Mersin Idman Yurdu   Buyuksehyr      2      2      D  14-15
         T1                Rizespor  Galatasaray      1      1      D  14-15
         T1               Sivasspor  Trabzonspor      1      1      D  14-15
('30/08/13', 'SP1')
                      home     away  hgoal  agoal result season
date     league                                                
30/08/13 SP1       Almeria    Elche      2      2      D  13-14
         SP1     Vallecano  Levante      1      2      A  13-14
('30/08/13', 'T1')
                          home         away  hgoal  agoal result season
date     league                                                        
30/08/13 T1      Eskisehirspor  Galatasaray      0      0      D  13-14
         T1          Konyaspor    Kasimpasa      1      2      A  13-14
('30/08/14', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
30/08/14 D1            Hamburg      Paderborn      0      3      A  14-15
         D1         Leverkusen         Hertha      4      2      H  14-15
         D1         Schalke 04  Bayern Munich      1      1      D  14-15
         D1          Stuttgart        FC Koln      0      2      A  14-15
         D1      Werder Bremen     Hoffenheim      1      1      D  14-15
         D1          Wolfsburg  Ein Frankfurt      2      2      D  14-15
('30/08/14', 'E2')
                               home              away  hgoal  agoal result  \
date     league                                                              
30/08/14 E2              Colchester         Peterboro      1      3      A   
         E2               Doncaster            Oldham      0      2      A   
         E2          Fleetwood Town     Leyton Orient      1      1      D   
         E2              Gillingham             Crewe      2      0      H   
         E2      Milton Keynes Dons      Crawley Town      2      0      H   
         E2               Port Vale      Chesterfield      1      2      A   
         E2                 Preston  Sheffield United      1      1      D   
         E2                Rochdale          Bradford      0      2      A   
         E2              Scunthorpe           Walsall      2      1      H   
         E2                 Swindon          Coventry      1      1      D   
         E2                  Yeovil          Barnsley      1      1      D   

                season  
date     league         
30/08/14 E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
('30/08/14', 'I1')
                   home        away  hgoal  agoal result season
date     league                                                
30/08/14 I1      Chievo    Juventus      0      1      A  14-15
         I1        Roma  Fiorentina      2      0      H  14-15
('30/08/14', 'SP1')
                       home     away  hgoal  agoal result season
date     league                                                 
30/08/14 SP1     Ath Bilbao  Levante      3      0      H  14-15
         SP1     Ath Madrid    Eibar      2      1      H  14-15
         SP1        Cordoba    Celta      1      1      D  14-15
         SP1        Espanol  Sevilla      1      2      A  14-15
('30/08/14', 'T1')
                               home         away  hgoal  agoal result season
date     league                                                             
30/08/14 T1               Bursaspor  Galatasaray      0      2      A  14-15
         T1              Buyuksehyr    Kasimpasa      1      1      D  14-15
         T1           Eskisehirspor    Konyaspor      2      1      H  14-15
         T1      Mersin Idman Yurdu     Besiktas      0      1      A  14-15
('30/08/15', 'D1')
                          home        away  hgoal  agoal result season
date     league                                                       
30/08/15 D1           Dortmund      Hertha      3      1      H  15-16
         D1      Werder Bremen  M'gladbach      2      1      H  15-16
('30/08/15', 'I1')
                     home        away  hgoal  agoal result season
date     league                                                  
30/08/15 I1      Atalanta   Frosinone      2      0      H  15-16
         I1         Carpi       Inter      1      2      A  15-16
         I1        Chievo       Lazio      4      0      H  15-16
         I1         Genoa      Verona      2      0      H  15-16
         I1        Napoli   Sampdoria      2      2      D  15-16
         I1          Roma    Juventus      2      1      H  15-16
         I1        Torino  Fiorentina      3      1      H  15-16
         I1       Udinese     Palermo      0      1      A  15-16
('30/08/15', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
30/08/15 SP1          Eibar  Ath Bilbao      2      0      H  15-16
         SP1         Getafe     Granada      1      2      A  15-16
         SP1     Las Palmas     Levante      0      0      D  15-16
         SP1        Sevilla  Ath Madrid      0      3      A  15-16
         SP1       Valencia   La Coruna      1      1      D  15-16
('30/08/15', 'T1')
                          home                  away  hgoal  agoal result  \
date     league                                                             
30/08/15 T1      Eskisehirspor              Rizespor      1      1      D   
         T1         Fenerbahce           Antalyaspor      2      1      H   
         T1          Sivasspor           Osmanlispor      1      1      D   
         T1        Trabzonspor  Akhisar Belediyespor      2      2      D   

                season  
date     league         
30/08/15 T1      15-16  
         T1      15-16  
         T1      15-16  
         T1      15-16  
('30/09/11', 'D1')
                           home       away  hgoal  agoal result season
date     league                                                       
30/09/11 D1      Kaiserslautern  Stuttgart      0      2      A  11-12
('30/09/11', 'T1')
                      home            away  hgoal  agoal result season
date     league                                                       
30/09/11 T1      Bursaspor  Genclerbirligi      4      0      H  11-12
('30/09/12', 'D1')
                          home      away  hgoal  agoal result season
date     league                                                     
30/09/12 D1      Ein Frankfurt  Freiburg      2      1      H  12-13
         D1          Wolfsburg     Mainz      0      2      A  12-13
('30/09/12', 'I1')
                      home        away  hgoal  agoal result season
date     league                                                   
30/09/12 I1       Atalanta      Torino      1      5      A  12-13
         I1        Bologna     Catania      4      0      H  12-13
         I1       Cagliari     Pescara      1      2      A  12-13
         I1          Inter  Fiorentina      2      1      H  12-13
         I1          Lazio       Siena      2      1      H  12-13
         I1        Palermo      Chievo      4      1      H  12-13
         I1      Sampdoria      Napoli      0      1      A  12-13
         I1        Udinese       Genoa      0      0      D  12-13
('30/09/12', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
30/09/12 SP1         Espanol  Ath Madrid      0      1      A  12-13
         SP1         Granada       Celta      2      1      H  12-13
         SP1         Osasuna     Levante      4      0      H  12-13
         SP1     Real Madrid   La Coruna      5      1      H  12-13
         SP1      Valladolid   Vallecano      6      1      H  12-13
('30/09/12', 'T1')
                           home                away  hgoal  agoal result  \
date     league                                                            
30/09/12 T1         Antalyaspor          Elazigspor      4      0      H   
         T1       Eskisehirspor          Buyuksehyr      1      0      H   
         T1      Genclerbirligi         Kayserispor      4      0      H   
         T1         Trabzonspor  Mersin Idman Yurdu      1      1      D   

                season  
date     league         
30/09/12 T1      12-13  
         T1      12-13  
         T1      12-13  
         T1      12-13  
('30/09/13', 'I1')
                       home   away  hgoal  agoal result season
date     league                                               
30/09/13 I1      Fiorentina  Parma      2      2      D  13-14
('30/09/13', 'SP1')
                    home        away  hgoal  agoal result season
date     league                                                 
30/09/13 SP1     Granada  Ath Bilbao      2      0      H  13-14
('30/09/13', 'T1')
                        home         away  hgoal  agoal result season
date     league                                                      
30/09/13 T1      Antalyaspor     Besiktas      2      0      H  13-14
         T1      Erciyesspor  Kayserispor      1      1      D  13-14
('30/09/14', 'E2')
                  home          away  hgoal  agoal result season
date     league                                                 
30/09/14 E2      Crewe  Notts County      0      3      A  14-15
('30/10/11', 'D1')
                    home            away  hgoal  agoal result season
date     league                                                     
30/10/11 D1      FC Koln        Augsburg      3      0      H  11-12
         D1      Hamburg  Kaiserslautern      1      1      D  11-12
('30/10/11', 'I1')
                       home      away  hgoal  agoal result season
date     league                                                  
30/10/11 I1         Bologna  Atalanta      3      1      H  11-12
         I1        Cagliari     Lazio      0      3      A  11-12
         I1      Fiorentina     Genoa      1      0      H  11-12
         I1           Lecce    Novara      1      1      D  11-12
         I1           Parma    Cesena      2      0      H  11-12
         I1           Siena    Chievo      4      1      H  11-12
         I1         Udinese   Palermo      1      0      H  11-12
('30/10/11', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
30/10/11 SP1     Ath Madrid    Zaragoza      3      1      H  11-12
         SP1         Malaga     Espanol      2      1      H  11-12
         SP1        Osasuna     Levante      2      0      H  11-12
         SP1      Santander       Betis      1      0      H  11-12
         SP1       Sp Gijon  Ath Bilbao      1      1      D  11-12
('30/10/11', 'T1')
                        home         away  hgoal  agoal result season
date     league                                                      
30/10/11 T1       Ankaragucu   Buyuksehyr      1      2      A  11-12
         T1         Besiktas    Sivasspor      3      1      H  11-12
         T1        Bursaspor   Manisaspor      0      0      D  11-12
         T1      Kayserispor  Galatasaray      0      2      A  11-12
('30/10/12', 'I1')
                    home   away  hgoal  agoal result season
date     league                                            
30/10/12 I1      Palermo  Milan      2      2      D  12-13
('30/10/13', 'I1')
                       home       away  hgoal  agoal result season
date     league                                                   
30/10/13 I1        Cagliari    Bologna      0      3      A  13-14
         I1      Fiorentina     Napoli      1      2      A  13-14
         I1           Genoa      Parma      1      0      H  13-14
         I1        Juventus    Catania      4      0      H  13-14
         I1         Livorno     Torino      3      3      D  13-14
         I1           Milan      Lazio      1      1      D  13-14
         I1        Sassuolo    Udinese      1      2      A  13-14
         I1          Verona  Sampdoria      2      0      H  13-14
('30/10/13', 'SP1')
                        home       away  hgoal  agoal result season
date     league                                                    
30/10/13 SP1         Osasuna  Vallecano      3      1      H  13-14
         SP1     Real Madrid    Sevilla      7      3      H  13-14
         SP1        Valencia    Almeria      1      2      A  13-14
         SP1      Valladolid   Sociedad      2      2      D  13-14
('30/10/14', 'I1')
                   home   away  hgoal  agoal result season
date     league                                           
30/10/14 I1      Verona  Lazio      1      1      D  14-15
('30/10/15', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
30/10/15 D1      Ein Frankfurt  Bayern Munich      0      0      D  15-16
('30/10/15', 'SP1')
                      home        away  hgoal  agoal result season
date     league                                                   
30/10/15 SP1     La Coruna  Ath Madrid      1      1      D  15-16
('30/10/15', 'T1')
                                 home            away  hgoal  agoal result  \
date     league                                                              
30/10/15 T1      Akhisar Belediyespor     Antalyaspor      2      1      H   
         T1                  Besiktas       Kasimpasa      3      3      D   
         T1                 Konyaspor  Genclerbirligi      0      0      D   

                season  
date     league         
30/10/15 T1      15-16  
         T1      15-16  
         T1      15-16  
('30/11/12', 'D1')
                               home           away  hgoal  agoal result season
date     league                                                               
30/11/12 D1      Fortuna Dusseldorf  Ein Frankfurt      4      0      H  12-13
('30/11/12', 'I1')
                    home   away  hgoal  agoal result season
date     league                                            
30/11/12 I1      Catania  Milan      1      3      A  12-13
('30/11/12', 'SP1')
                    home       away  hgoal  agoal result season
date     league                                                
30/11/12 SP1     Osasuna  Vallecano      1      0      H  12-13
('30/11/12', 'T1')
                        home           away  hgoal  agoal result season
date     league                                                        
30/11/12 T1      Galatasaray  Gaziantepspor      1      1      D  12-13
('30/11/13', 'D1')
                          home           away  hgoal  agoal result season
date     league                                                          
30/11/13 D1      Bayern Munich   Braunschweig      2      0      H  13-14
         D1             Hertha       Augsburg      0      0      D  13-14
         D1         Hoffenheim  Werder Bremen      4      4      D  13-14
         D1         Leverkusen       Nurnberg      3      0      H  13-14
         D1              Mainz       Dortmund      1      3      A  13-14
         D1         Schalke 04      Stuttgart      3      0      H  13-14
('30/11/13', 'E2')
                               home              away  hgoal  agoal result  \
date     league                                                              
30/11/13 E2                   Crewe      Crawley Town      1      0      H   
         E2           Leyton Orient  Sheffield United      1      1      D   
         E2      Milton Keynes Dons          Coventry      1      3      A   
         E2            Notts County         Brentford      0      1      A   
         E2               Peterboro            Wolves      1      0      H   
         E2                 Preston      Bristol City      1      0      H   
         E2               Rotherham        Gillingham      4      1      H   
         E2               Stevenage        Shrewsbury      1      3      A   
         E2                 Swindon          Carlisle      3      1      H   
         E2                Tranmere        Colchester      2      1      H   
         E2                 Walsall         Port Vale      0      2      A   

                season  
date     league         
30/11/13 E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
('30/11/13', 'I1')
                  home     away  hgoal  agoal result season
date     league                                            
30/11/13 I1      Genoa   Torino      1      1      D  13-14
         I1      Parma  Bologna      1      1      D  13-14
('30/11/13', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
30/11/13 SP1           Celta     Almeria      3      1      H  13-14
         SP1           Elche  Ath Madrid      0      2      A  13-14
         SP1         Espanol    Sociedad      1      2      A  13-14
         SP1     Real Madrid  Valladolid      4      0      H  13-14
('30/11/13', 'T1')
                           home                  away  hgoal  agoal result  \
date     league                                                              
30/11/13 T1          Fenerbahce              Besiktas      3      3      D   
         T1      Genclerbirligi         Gaziantepspor      1      3      A   
         T1         Kayserispor  Akhisar Belediyespor      0      0      D   

                season  
date     league         
30/11/13 T1      13-14  
         T1      13-14  
         T1      13-14  
('30/11/14', 'D1')
                          home        away  hgoal  agoal result season
date     league                                                       
30/11/14 D1      Ein Frankfurt    Dortmund      2      0      H  14-15
         D1          Wolfsburg  M'gladbach      1      0      H  14-15
('30/11/14', 'I1')
                     home        away  hgoal  agoal result season
date     league                                                  
30/11/14 I1      Cagliari  Fiorentina      0      4      A  14-15
         I1        Cesena       Genoa      0      3      A  14-15
         I1        Empoli    Atalanta      0      0      D  14-15
         I1      Juventus      Torino      2      1      H  14-15
         I1         Milan     Udinese      2      0      H  14-15
         I1       Palermo       Parma      2      1      H  14-15
         I1          Roma       Inter      4      2      H  14-15
('30/11/14', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
30/11/14 SP1     Ath Madrid   La Coruna      2      0      H  14-15
         SP1        Cordoba  Villarreal      0      2      A  14-15
         SP1        Sevilla     Granada      5      1      H  14-15
         SP1       Valencia   Barcelona      0      1      A  14-15
('30/11/14', 'T1')
                               home           away  hgoal  agoal result season
date     league                                                               
30/11/14 T1              Fenerbahce  Eskisehirspor      2      2      D  14-15
         T1      Mersin Idman Yurdu      Sivasspor      2      0      H  14-15
('30/11/15', 'I1')
                     home        away  hgoal  agoal result season
date     league                                                  
30/11/15 I1        Napoli       Inter      2      1      H  15-16
         I1      Sassuolo  Fiorentina      1      1      D  15-16
('30/11/15', 'T1')
                       home         away  hgoal  agoal result season
date     league                                                     
30/11/15 T1      Fenerbahce  Trabzonspor      2      0      H  15-16
('30/12/11', 'E2')
                         home      away  hgoal  agoal result season
date     league                                                    
30/12/11 E2      Huddersfield  Carlisle      1      1      D  11-12
         E2          Tranmere      Bury      2      0      H  11-12
('30/12/15', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
30/12/15 SP1       Barcelona       Betis      4      0      H  15-16
         SP1           Celta  Ath Bilbao      0      1      A  15-16
         SP1           Eibar    Sp Gijon      2      0      H  15-16
         SP1          Getafe   La Coruna      0      0      D  15-16
         SP1      Las Palmas     Granada      4      1      H  15-16
         SP1         Levante      Malaga      0      1      A  15-16
         SP1     Real Madrid    Sociedad      3      1      H  15-16
         SP1         Sevilla     Espanol      2      0      H  15-16
         SP1       Vallecano  Ath Madrid      0      2      A  15-16
('31/01/12', 'E2')
                               home            away  hgoal  agoal result  \
date     league                                                            
31/01/12 E2                Charlton            Bury      1      1      D   
         E2      Milton Keynes Dons  Sheffield Weds      1      1      D   
         E2                 Walsall    Notts County      0      1      A   

                season  
date     league         
31/01/12 E2      11-12  
         E2      11-12  
         E2      11-12  
('31/01/14', 'D1')
                         home      away  hgoal  agoal result season
date     league                                                    
31/01/14 D1      Braunschweig  Dortmund      1      2      A  13-14
('31/01/14', 'SP1')
                    home   away  hgoal  agoal result season
date     league                                            
31/01/14 SP1     Granada  Celta      1      2      A  13-14
('31/01/14', 'T1')
                     home         away  hgoal  agoal result season
date     league                                                   
31/01/14 T1      Besiktas  Erciyesspor      3      2      H  13-14
('31/01/15', 'D1')
                       home           away  hgoal  agoal result season
date     league                                                       
31/01/15 D1        Freiburg  Ein Frankfurt      4      1      H  14-15
         D1         Hamburg        FC Koln      0      2      A  14-15
         D1      Leverkusen       Dortmund      0      0      D  14-15
         D1           Mainz      Paderborn      5      0      H  14-15
         D1      Schalke 04       Hannover      1      0      H  14-15
         D1       Stuttgart     M'gladbach      0      1      A  14-15
('31/01/15', 'E2')
                             home                away  hgoal  agoal result  \
date     league                                                              
31/01/15 E2              Bradford          Colchester      1      1      D   
         E2          Chesterfield           Doncaster      2      2      D   
         E2              Coventry            Rochdale      2      2      D   
         E2          Crawley Town             Preston      2      1      H   
         E2                 Crewe  Milton Keynes Dons      0      5      A   
         E2         Leyton Orient          Scunthorpe      1      4      A   
         E2                Oldham        Notts County      3      0      H   
         E2             Peterboro              Yeovil      1      0      H   
         E2      Sheffield United             Swindon      2      0      H   

                season  
date     league         
31/01/15 E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
         E2      14-15  
('31/01/15', 'I1')
                  home        away  hgoal  agoal result season
date     league                                               
31/01/15 I1      Genoa  Fiorentina      1      1      D  14-15
         I1       Roma      Empoli      1      1      D  14-15
('31/01/15', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
31/01/15 SP1           Celta     Cordoba      1      0      H  14-15
         SP1           Eibar  Ath Madrid      1      3      A  14-15
         SP1         Granada       Elche      1      0      H  14-15
         SP1     Real Madrid    Sociedad      4      1      H  14-15
('31/01/15', 'T1')
                          home        away  hgoal  agoal result season
date     league                                                       
31/01/15 T1      Gaziantepspor   Sivasspor      1      3      A  14-15
         T1        Karabukspor  Fenerbahce      1      2      A  14-15
         T1          Kasimpasa  Buyuksehyr      0      1      A  14-15
('31/01/16', 'D1')
                          home        away  hgoal  agoal result season
date     league                                                       
31/01/16 D1      Bayern Munich  Hoffenheim      2      0      H  15-16
         D1          Wolfsburg     FC Koln      1      1      D  15-16
('31/01/16', 'I1')
                    home        away  hgoal  agoal result season
date     league                                                 
31/01/16 I1      Bologna   Sampdoria      3      2      H  15-16
         I1       Chievo    Juventus      0      4      A  15-16
         I1        Genoa  Fiorentina      0      0      D  15-16
         I1        Milan       Inter      3      0      H  15-16
         I1       Napoli      Empoli      5      1      H  15-16
         I1       Torino      Verona      0      0      D  15-16
         I1      Udinese       Lazio      0      0      D  15-16
('31/01/16', 'SP1')
                        home      away  hgoal  agoal result season
date     league                                                   
31/01/16 SP1      Las Palmas     Celta      2      1      H  15-16
         SP1     Real Madrid   Espanol      6      0      H  15-16
         SP1         Sevilla   Levante      3      1      H  15-16
         SP1        Valencia  Sp Gijon      0      1      A  15-16
('31/03/12', 'D1')
                           home           away  hgoal  agoal result season
date     league                                                           
31/03/12 D1            Augsburg        FC Koln      2      1      H  11-12
         D1              Hertha      Wolfsburg      1      4      A  11-12
         D1      Kaiserslautern        Hamburg      0      1      A  11-12
         D1          Leverkusen       Freiburg      0      2      A  11-12
         D1            Nurnberg  Bayern Munich      0      1      A  11-12
         D1       Werder Bremen          Mainz      0      3      A  11-12
('31/03/12', 'E2')
                               home              away  hgoal  agoal result  \
date     league                                                              
31/03/12 E2             Bournemouth            Yeovil      0      0      D   
         E2                    Bury          Tranmere      2      0      H   
         E2                Carlisle      Huddersfield      2      1      H   
         E2                Charlton     Leyton Orient      2      0      H   
         E2            Chesterfield        Scunthorpe      1      4      A   
         E2                  Exeter        Colchester      1      1      D   
         E2              Hartlepool  Sheffield United      0      1      A   
         E2      Milton Keynes Dons         Brentford      1      2      A   
         E2            Notts County            Oldham      1      0      H   
         E2                Rochdale           Walsall      3      3      D   
         E2          Sheffield Weds           Preston      2      0      H   
         E2               Stevenage           Wycombe      1      1      D   

                season  
date     league         
31/03/12 E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
('31/03/12', 'I1')
                    home   away  hgoal  agoal result season
date     league                                            
31/03/12 I1      Catania  Milan      1      1      D  11-12
         I1        Parma  Lazio      3      1      H  11-12
('31/03/12', 'SP1')
                      home         away  hgoal  agoal result season
date     league                                                    
31/03/12 SP1     Barcelona   Ath Bilbao      2      0      H  11-12
         SP1        Malaga        Betis      0      2      A  11-12
         SP1       Osasuna  Real Madrid      1      5      A  11-12
         SP1     Santander      Granada      0      1      A  11-12
         SP1      Sp Gijon     Zaragoza      1      2      A  11-12
('31/03/12', 'T1')
                           home           away  hgoal  agoal result season
date     league                                                           
31/03/12 T1         Galatasaray       Orduspor      2      0      H  11-12
         T1      Genclerbirligi     Manisaspor      3      0      H  11-12
         T1         Kayserispor  Eskisehirspor      2      2      D  11-12
         T1           Sivasspor     Buyuksehyr      0      1      A  11-12
('31/03/13', 'D1')
                           home           away  hgoal  agoal result season
date     league                                                           
31/03/13 D1      Greuther Furth  Ein Frankfurt      2      3      A  12-13
         D1           Wolfsburg       Nurnberg      2      2      D  12-13
('31/03/13', 'SP1')
                       home       away  hgoal  agoal result season
date     league                                                   
31/03/13 SP1     Ath Madrid   Valencia      1      1      D  12-13
         SP1        Espanol   Sociedad      2      2      D  12-13
         SP1       Mallorca  La Coruna      2      3      A  12-13
         SP1     Valladolid    Osasuna      1      3      A  12-13
('31/03/13', 'T1')
                        home                  away  hgoal  agoal result season
date     league                                                               
31/03/13 T1       Elazigspor        Genclerbirligi      1      1      D  12-13
         T1       Fenerbahce  Akhisar Belediyespor      2      0      H  12-13
         T1        Kasimpasa             Bursaspor      2      0      H  12-13
         T1      Trabzonspor           Antalyaspor      2      0      H  12-13
('31/03/14', 'T1')
                          home            away  hgoal  agoal result season
date     league                                                           
31/03/14 T1      Eskisehirspor  Genclerbirligi      0      1      A  13-14
         T1         Fenerbahce       Bursaspor      3      0      H  13-14
         T1        Kayserispor     Antalyaspor      3      1      H  13-14
('31/03/15', 'E2')
                     home          away  hgoal  agoal result season
date     league                                                    
31/03/15 E2      Bradford  Chesterfield      0      1      A  14-15
('31/05/15', 'I1')
                       home     away  hgoal  agoal result season
date     league                                                 
31/05/15 I1        Cagliari  Udinese      4      3      H  14-15
         I1      Fiorentina   Chievo      3      0      H  14-15
         I1           Inter   Empoli      4      3      H  14-15
         I1          Napoli    Lazio      2      4      A  14-15
         I1            Roma  Palermo      1      2      A  14-15
         I1       Sampdoria    Parma      2      2      D  14-15
         I1        Sassuolo    Genoa      3      1      H  14-15
         I1          Torino   Cesena      5      0      H  14-15
('31/08/12', 'D1')
                  home            away  hgoal  agoal result season
date     league                                                   
31/08/12 D1      Mainz  Greuther Furth      0      1      A  12-13
('31/08/12', 'T1')
                               home           away  hgoal  agoal result season
date     league                                                               
31/08/12 T1          Genclerbirligi       Orduspor      1      1      D  12-13
         T1      Mersin Idman Yurdu  Eskisehirspor      1      3      A  12-13
('31/08/13', 'D1')
                       home           away  hgoal  agoal result season
date     league                                                       
31/08/13 D1         Hamburg   Braunschweig      4      0      H  13-14
         D1        Hannover          Mainz      4      1      H  13-14
         D1      M'gladbach  Werder Bremen      4      1      H  13-14
         D1        Nurnberg       Augsburg      0      1      A  13-14
         D1      Schalke 04     Leverkusen      2      0      H  13-14
         D1       Wolfsburg         Hertha      2      0      H  13-14
('31/08/13', 'E2')
                             home                away  hgoal  agoal result  \
date     league                                                              
31/08/13 E2             Brentford            Carlisle      0      0      D   
         E2            Colchester       Leyton Orient      1      2      A   
         E2            Gillingham        Bristol City      1      1      D   
         E2          Notts County           Rotherham      0      1      A   
         E2                Oldham            Tranmere      0      1      A   
         E2             Peterboro        Crawley Town      0      2      A   
         E2             Port Vale              Wolves      1      3      A   
         E2      Sheffield United  Milton Keynes Dons      0      1      A   
         E2            Shrewsbury            Coventry      1      1      D   
         E2             Stevenage            Bradford      1      1      D   
         E2               Swindon               Crewe      5      0      H   
         E2               Walsall             Preston      0      3      A   

                season  
date     league         
31/08/13 E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
         E2      13-14  
('31/08/13', 'I1')
                     home    away  hgoal  agoal result season
date     league                                              
31/08/13 I1        Chievo  Napoli      2      4      A  13-14
         I1      Juventus   Lazio      4      1      H  13-14
('31/08/13', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
31/08/13 SP1          Celta     Granada      1      1      D  13-14
         SP1        Osasuna  Villarreal      0      3      A  13-14
         SP1     Valladolid      Getafe      1      0      H  13-14
('31/08/13', 'T1')
                        home        away  hgoal  agoal result season
date     league                                                     
31/08/13 T1      Antalyaspor   Bursaspor      1      2      A  13-14
         T1       Fenerbahce   Sivasspor      5      2      H  13-14
         T1      Kayserispor  Elazigspor      1      3      A  13-14
('31/08/14', 'D1')
                     home        away  hgoal  agoal result season
date     league                                                  
31/08/14 D1      Freiburg  M'gladbach      0      0      D  14-15
         D1         Mainz    Hannover      0      0      D  14-15
('31/08/14', 'E2')
                         home          away  hgoal  agoal result season
date     league                                                        
31/08/14 E2      Notts County  Bristol City      1      2      A  14-15
('31/08/14', 'I1')
                     home       away  hgoal  agoal result season
date     league                                                 
31/08/14 I1      Atalanta     Verona      0      0      D  14-15
         I1        Cesena      Parma      1      0      H  14-15
         I1         Genoa     Napoli      1      2      A  14-15
         I1         Milan      Lazio      3      1      H  14-15
         I1       Palermo  Sampdoria      1      1      D  14-15
         I1      Sassuolo   Cagliari      1      1      D  14-15
         I1        Torino      Inter      0      0      D  14-15
         I1       Udinese     Empoli      2      0      H  14-15
('31/08/14', 'SP1')
                       home         away  hgoal  agoal result season
date     league                                                     
31/08/14 SP1          Elche      Granada      1      1      D  14-15
         SP1      La Coruna    Vallecano      2      2      D  14-15
         SP1       Sociedad  Real Madrid      4      2      H  14-15
         SP1     Villarreal    Barcelona      0      1      A  14-15
('31/08/14', 'T1')
                        home           away  hgoal  agoal result season
date     league                                                        
31/08/14 T1      Erciyesspor    Trabzonspor      0      0      D  14-15
         T1       Fenerbahce    Karabukspor      3      2      H  14-15
         T1        Sivasspor  Gaziantepspor      1      2      A  14-15
('31/08/15', 'E2')
                     home      away  hgoal  agoal result season
date     league                                                
31/08/15 E2      Coventry  Southend      2      2      D  15-16
('31/10/11', 'SP1')
                    home     away  hgoal  agoal result season
date     league                                              
31/10/11 SP1     Sevilla  Granada      1      2      A  11-12
('31/10/11', 'T1')
                               home            away  hgoal  agoal result  \
date     league                                                            
31/10/11 T1              Fenerbahce     Karabukspor      1      0      H   
         T1      Mersin Idman Yurdu  Genclerbirligi      2      1      H   

                season  
date     league         
31/10/11 T1      11-12  
         T1      11-12  
('31/10/12', 'I1')
                     home       away  hgoal  agoal result season
date     league                                                 
31/10/12 I1      Atalanta     Napoli      1      0      H  12-13
         I1      Cagliari      Siena      4      2      H  12-13
         I1        Chievo    Pescara      2      0      H  12-13
         I1         Inter  Sampdoria      3      2      H  12-13
         I1      Juventus    Bologna      2      1      H  12-13
         I1         Lazio     Torino      1      1      D  12-13
         I1         Parma       Roma      3      2      H  12-13
         I1       Udinese    Catania      2      2      D  12-13
('31/10/13', 'I1')
                 home    away  hgoal  agoal result season
date     league                                          
31/10/13 I1      Roma  Chievo      1      0      H  13-14
('31/10/13', 'SP1')
                       home        away  hgoal  agoal result season
date     league                                                    
31/10/13 SP1     Ath Bilbao       Elche      2      2      D  13-14
         SP1          Betis     Levante      0      0      D  13-14
         SP1        Granada  Ath Madrid      1      2      A  13-14
         SP1     Villarreal      Getafe      0      2      A  13-14
('31/10/14', 'D1')
                       home      away  hgoal  agoal result season
date     league                                                  
31/10/14 D1      Schalke 04  Augsburg      1      0      H  14-15
('31/10/14', 'SP1')
                      home    away  hgoal  agoal result season
date     league                                               
31/10/14 SP1     La Coruna  Getafe      1      2      A  14-15
('31/10/14', 'T1')
                        home       away  hgoal  agoal result season
date     league                                                    
31/10/14 T1      Galatasaray  Kasimpasa      2      1      H  14-15
('31/10/15', 'D1')
                          home        away  hgoal  agoal result season
date     league                                                       
31/10/15 D1           Augsburg       Mainz      3      3      D  15-16
         D1            FC Koln  Hoffenheim      0      0      D  15-16
         D1             Hertha  M'gladbach      1      4      A  15-16
         D1         Schalke 04  Ingolstadt      1      1      D  15-16
         D1      Werder Bremen    Dortmund      1      3      A  15-16
         D1          Wolfsburg  Leverkusen      2      1      H  15-16
('31/10/15', 'E2')
                           home              away  hgoal  agoal result season
date     league                                                              
31/10/15 E2                Bury         Blackpool      4      3      H  15-16
         E2            Coventry         Peterboro      3      2      H  15-16
         E2               Crewe  Sheffield United      1      0      H  15-16
         E2           Doncaster        Colchester      2      0      H  15-16
         E2      Fleetwood Town      Chesterfield      0      1      A  15-16
         E2            Millwall          Bradford      0      0      D  15-16
         E2              Oldham            Burton      0      1      A  15-16
         E2           Port Vale        Shrewsbury      2      0      H  15-16
         E2          Scunthorpe          Barnsley      2      0      H  15-16
         E2            Southend          Rochdale      2      2      D  15-16
         E2             Walsall        Gillingham      3      2      H  15-16
         E2               Wigan           Swindon      1      0      H  15-16
('31/10/15', 'I1')
                     home    away  hgoal  agoal result season
date     league                                              
31/10/15 I1         Inter    Roma      1      0      H  15-16
         I1      Juventus  Torino      2      1      H  15-16
('31/10/15', 'SP1')
                        home        away  hgoal  agoal result season
date     league                                                     
31/10/15 SP1          Getafe   Barcelona      0      2      A  15-16
         SP1     Real Madrid  Las Palmas      3      1      H  15-16
         SP1        Sociedad       Celta      2      3      A  15-16
         SP1        Valencia     Levante      3      0      H  15-16
         SP1      Villarreal     Sevilla      2      1      H  15-16
('31/12/11', 'E2')
                             home                away  hgoal  agoal result  \
date     league                                                              
31/12/11 E2             Brentford  Milton Keynes Dons      3      3      D   
         E2            Colchester              Exeter      2      0      H   
         E2         Leyton Orient            Charlton      1      0      H   
         E2                Oldham        Notts County      3      2      H   
         E2               Preston      Sheffield Weds      0      2      A   
         E2            Scunthorpe        Chesterfield      2      2      D   
         E2      Sheffield United          Hartlepool      3      1      H   
         E2               Walsall            Rochdale      0      0      D   
         E2               Wycombe           Stevenage      0      1      A   
         E2                Yeovil         Bournemouth      1      3      A   

                season  
date     league         
31/12/11 E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
         E2      11-12  
('31/12/15', 'SP1')
                       home      away  hgoal  agoal result season
date     league                                                  
31/12/15 SP1     Villarreal  Valencia      1      0      H  15-16

In [16]:
seasonData.head(3)


Out[16]:
home away hgoal agoal result season
date league
22/08/14 D1 Bayern Munich Wolfsburg 2 1 H 14-15
23/08/14 D1 Dortmund Leverkusen 0 2 A 14-15
D1 Ein Frankfurt Freiburg 1 0 H 14-15

Suppose we wish to compute the total number of goals scored by home team and away team in each date. We can achieve that by grouping the data by date column and calling sum() function on the that data.


In [17]:
grouped2Data = seasonData.groupby(level='date')
(grouped2Data.sum()).head()


Out[17]:
hgoal agoal
date
01/01/13 18 9
01/01/14 14 13
01/02/12 18 9
01/02/13 10 12
01/02/14 39 21

We can achieve the same results without creating a new data frame and by calling the level as sum function's parameter:


In [18]:
(seasonData.sum(level='date')).head()


Out[18]:
hgoal agoal
date
01/01/13 18 9
01/01/14 14 13
01/02/12 18 9
01/02/13 10 12
01/02/14 39 21

In [19]:
totalgoal = grouped2Data.sum()

In [20]:
# I just wanted to see the percentages of home-away goal number in given dates
totalgoal['hgoal']/totalgoal['agoal']


Out[20]:
date
01/01/13    2.000000
01/01/14    1.076923
01/02/12    2.000000
01/02/13    0.833333
01/02/14    1.857143
01/02/15    1.809524
01/02/16    1.000000
01/03/13    1.500000
01/03/14    2.769231
01/03/15    0.727273
01/03/16    1.769231
01/04/12    1.631579
01/04/13    3.833333
01/04/14    2.000000
01/04/15    0.000000
01/04/16         inf
01/05/12    1.400000
01/05/15         inf
01/05/16    2.000000
01/06/13    1.533333
01/09/12    1.275862
01/09/13    1.344828
01/10/11    1.216216
01/10/12    1.000000
01/11/12    0.000000
01/11/13    4.500000
01/11/14    1.032258
01/11/15    1.500000
01/12/12    1.375000
01/12/13    1.714286
              ...   
30/10/12    1.000000
30/10/13    1.368421
30/10/14    1.000000
30/10/15    1.200000
30/11/12    1.750000
30/11/13    1.272727
30/11/14    1.411765
30/11/15    2.500000
30/12/11    3.000000
30/12/15    2.500000
31/01/12    0.666667
31/01/14    0.833333
31/01/15    1.129032
31/01/16    2.272727
31/03/12    0.850000
31/03/13    1.133333
31/03/14    3.000000
31/03/15    0.000000
31/05/15    1.600000
31/08/12    0.400000
31/08/13    1.171429
31/08/14    1.235294
31/08/15    1.000000
31/10/11    1.333333
31/10/12    1.800000
31/10/13    0.666667
31/10/14    1.333333
31/10/15    1.322581
31/12/11    1.071429
31/12/15         inf
dtype: float64

In [21]:
# This has inf values inside so I need to change inf to 0
num_array = (totalgoal['hgoal'] / totalgoal['agoal']).values

In [22]:
# If inf and nan change to 0
num_array[num_array == np.inf] = 0
num_array = np.nan_to_num(num_array)

In [23]:
# the histogram of the data
plt.hist(num_array, bins=100, facecolor='y')

plt.xlabel('Home/Away')
plt.ylabel('Occurences')
plt.title('Home-Away Goal Distribution')
plt.axis([0.0, 8.0, 0, 100])
plt.grid(True)

plt.show()


Merging and Joining

There are various functions that can be used to merge and join pandas' data structures, which include the following functions:

  • concat
  • append

The concat function

The concat function is used to join multiple pandas' data structures along a specified axis and possibly perform union or intersection operations along other axes.

concat(objs, axis=0, , join='outer', join_axes=None, ignore_index=False,
keys=None, levels=None, names=None, verify_integrity=False)

The synopsis of the elements of concat function are as follows:

  • The objs parameter: A list or dictionary of Series, DataFrame, or Panel objects to be concatenated.
  • The axis parameter: The axis along which the concatenation should be performed. 0 is the default value.
  • The join parameter: The type of join to perform when handling indexes on other axes. The 'outer' function is the default.
  • The join_axes parameter: This is used to specify exact indexes for the remaining indexes instead of doing outer/inner join.
  • The keys parameter: This specifies a list of keys to be used to construct a MultiIndex.

Check more parameter features in the official documentation

We will use the Yahoo Finance's stock data of Apple, Amazon, Facebook, Google, Twitter, and Yahoo. Pandas library has a great API interface for Yahoo and Google Finance. It is really efficient and conveniet. Let's see how we can do it.


In [25]:
import pandas_datareader.data as web # The Library to call
import datetime   # Just for getting time

In [45]:
stocks = ["AAPL", "AMZN", "FB", "GOOG", "TWTR", "YHOO"] # Specify the stocks to get
start = datetime.datetime(2015, 1, 1) # Start time 
end = datetime.datetime(2016, 1, 27) # End time

# We will have daily data.
# Get the stock data from yahoo and using stocks list
df = web.DataReader(stocks, 'yahoo', start, end) # Returns a Panel
df = df.to_frame() # Convert to dataframe and reset the indexes

In [46]:
df.head()


Out[46]:
Open High Low Close Volume Adj Close
Date minor
2015-01-02 AAPL 111.389999 111.440002 107.349998 109.330002 53204600.0 105.158716
AMZN 312.579987 314.750000 306.959991 308.519989 2783200.0 308.519989
FB 78.580002 78.930000 77.699997 78.449997 18177500.0 78.449997
GOOG 529.012399 531.272382 524.102388 524.812404 1447500.0 524.812404
TWTR 36.230000 36.740002 35.540001 36.560001 12062500.0 36.560001

In [54]:
# Slicing the data, taking the first 4 row and Adj Close and Open 
A = df.ix[:4, ['Adj Close', 'Open']] 
A


Out[54]:
Adj Close Open
Date minor
2015-01-02 AAPL 105.158716 111.389999
AMZN 308.519989 312.579987
FB 78.449997 78.580002
GOOG 524.812404 529.012399

In [55]:
B = df.ix[2:10, ['Volume']]
B


Out[55]:
Volume
Date minor
2015-01-02 FB 18177500.0
GOOG 1447500.0
TWTR 12062500.0
YHOO 11924500.0
2015-01-05 AAPL 64285500.0
AMZN 2774200.0
FB 26452200.0
GOOG 2059800.0

In [56]:
C = df.ix[1:5, ['Low']]
C


Out[56]:
Low
Date minor
2015-01-02 AMZN 306.959991
FB 77.699997
GOOG 524.102388
TWTR 35.540001

Here, we perform a concatenation by specifying an outer join, which concatenates and performs a union on all the three data frames, and includes entries that do not have values for all the columns by inserting NaN for such columns


In [57]:
pd.concat([A,B,C], axis=1) # Outer Join -> axis=1


Out[57]:
Adj Close Open Volume Low
Date minor
2015-01-02 AAPL 105.158716 111.389999 NaN NaN
AMZN 308.519989 312.579987 NaN 306.959991
FB 78.449997 78.580002 18177500.0 77.699997
GOOG 524.812404 529.012399 1447500.0 524.102388
TWTR NaN NaN 12062500.0 35.540001
YHOO NaN NaN 11924500.0 NaN
2015-01-05 AAPL NaN NaN 64285500.0 NaN
AMZN NaN NaN 2774200.0 NaN
FB NaN NaN 26452200.0 NaN
GOOG NaN NaN 2059800.0 NaN

Here is another illustration of concat , but this time, it is on random statistical distributions. Note that in the absence of an axis argument, the default axis of concatenation is 0 :


In [58]:
np.random.seed(100)
normDF =pd.DataFrame(np.random.randn(3,4))
normDF


Out[58]:
0 1 2 3
0 -1.749765 0.342680 1.153036 -0.252436
1 0.981321 0.514219 0.221180 -1.070043
2 -0.189496 0.255001 -0.458027 0.435163

In [59]:
binomDF=pd.DataFrame(np.random.binomial(100,0.5,(3,4)))
binomDF


Out[59]:
0 1 2 3
0 57 50 57 50
1 48 56 49 43
2 40 47 49 55

In [60]:
poissonDF=pd.DataFrame(np.random.poisson(100,(3,4)))
poissonDF


Out[60]:
0 1 2 3
0 93 96 96 89
1 76 96 104 103
2 96 93 107 84

In [61]:
rand_distribs=[normDF,binomDF,poissonDF]
rand_distribsDF=pd.concat(rand_distribs,keys=['Normal', 'Binomial', 'Poisson'])
rand_distribsDF


Out[61]:
0 1 2 3
Normal 0 -1.749765 0.342680 1.153036 -0.252436
1 0.981321 0.514219 0.221180 -1.070043
2 -0.189496 0.255001 -0.458027 0.435163
Binomial 0 57.000000 50.000000 57.000000 50.000000
1 48.000000 56.000000 49.000000 43.000000
2 40.000000 47.000000 49.000000 55.000000
Poisson 0 93.000000 96.000000 96.000000 89.000000
1 76.000000 96.000000 104.000000 103.000000
2 96.000000 93.000000 107.000000 84.000000

Using append function

The append function is a simpler version of concat that concatenates along axis=0. Here is an illustration of its use where we slice out the first two rows and first three columns of the stockData DataFrame:


In [64]:
stockDataDFA = stockDataDF.ix[:2,:3]
stockDataDFB = stockDataDF[2:]

In [66]:
stockDataDFA.append(stockDataDFB).head()


Out[66]:
Adj Close Close Date High Low Open Volume
0 NaN NaN 2015-01-02 111.440002 NaN 111.389999 NaN
1 NaN NaN 2015-01-05 108.650002 NaN 108.290001 NaN
2 NaN NaN 2015-01-06 107.430000 NaN 106.540001 NaN
2 102.205846 106.260002 2015-01-06 107.430000 104.629997 106.540001 65797100.0
3 103.638996 107.750000 2015-01-07 108.199997 106.699997 107.199997 40105900.0

Appending a single row to a DataFrame

We can append a single row to a DataFrame by passing a series or dictionary to the append method:


In [67]:
algos={'search':['DFS','BFS','Binary Search','Linear'],
       'sorting': ['Quicksort','Mergesort','Heapsort','Bubble Sort'],
       'machine learning':['RandomForest','K Nearest Neighbor','LogisticRegression','K-Means Clustering']}
algoDF=pd.DataFrame(algos)
algoDF


Out[67]:
machine learning search sorting
0 RandomForest DFS Quicksort
1 K Nearest Neighbor BFS Mergesort
2 LogisticRegression Binary Search Heapsort
3 K-Means Clustering Linear Bubble Sort

In [68]:
moreAlgos={'search': 'ShortestPath',
           'sorting': 'Insertion Sort',
           'machine learning': 'Linear Regression'}
algoDF.append(moreAlgos, ignore_index=True)


Out[68]:
machine learning search sorting
0 RandomForest DFS Quicksort
1 K Nearest Neighbor BFS Mergesort
2 LogisticRegression Binary Search Heapsort
3 K-Means Clustering Linear Bubble Sort
4 Linear Regression ShortestPath Insertion Sort

In order for this to work, you must pass the ignore_index=True argument so that the index [0,1,2,3] in algoDF is ignored.

Summary

In this tutorial, we saw that there are various ways to rearrange data in pandas. We can group data using the pandas.groupby operator and the associated methods on groupby objects. We can merge and join Series and DataFrame objects using the concat, append, and merge functions.


In [ ]: