Spaces:
Running
Running
Commit ·
c9732ce
1
Parent(s): 4f95369
updates
Browse files- .gitignore +1 -1
- frontend/src/components/TeamRatings.jsx +90 -85
- main.py +13 -1
- team_ratings_history.csv +1981 -0
.gitignore
CHANGED
|
@@ -23,7 +23,7 @@
|
|
| 23 |
!.github/workflows/*
|
| 24 |
!projections_check.xlsx
|
| 25 |
!points_check.xlsx
|
| 26 |
-
|
| 27 |
!team_ratings_dual_speed.csv
|
| 28 |
!frontend/*
|
| 29 |
!frontend
|
|
|
|
| 23 |
!.github/workflows/*
|
| 24 |
!projections_check.xlsx
|
| 25 |
!points_check.xlsx
|
| 26 |
+
!team_ratings_history.csv
|
| 27 |
!team_ratings_dual_speed.csv
|
| 28 |
!frontend/*
|
| 29 |
!frontend
|
frontend/src/components/TeamRatings.jsx
CHANGED
|
@@ -1,4 +1,5 @@
|
|
| 1 |
-
import React, { useState, useEffect } from 'react';
|
|
|
|
| 2 |
|
| 3 |
const TEAM_LOGOS = {
|
| 4 |
"Arsenal": 57, "Manchester City": 65, "Liverpool": 64, "Chelsea": 61,
|
|
@@ -11,104 +12,101 @@ const TEAM_LOGOS = {
|
|
| 11 |
|
| 12 |
export default function TeamRatings() {
|
| 13 |
const [data, setData] = useState([]);
|
|
|
|
| 14 |
const [isLoading, setIsLoading] = useState(true);
|
|
|
|
|
|
|
|
|
|
| 15 |
|
| 16 |
useEffect(() => {
|
|
|
|
| 17 |
fetch('https://anayshukla-fpl-solver.hf.space/api/ratings')
|
| 18 |
.then(res => res.json())
|
| 19 |
.then(jsonData => {
|
| 20 |
setData(jsonData.sort((a, b) => b.Diff - a.Diff));
|
| 21 |
-
setIsLoading(false);
|
| 22 |
});
|
| 23 |
-
}, []);
|
| 24 |
|
| 25 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 26 |
|
| 27 |
-
|
| 28 |
-
const
|
|
|
|
|
|
|
|
|
|
|
|
|
| 29 |
|
| 30 |
-
|
| 31 |
-
const xTicks = [2.0, 1.8, 1.6, 1.4, 1.2, 1.0, 0.8, 0.6];
|
| 32 |
|
| 33 |
return (
|
| 34 |
-
<div className="flex flex-col
|
| 35 |
|
| 36 |
-
{/*
|
| 37 |
-
<div className="w-full bg-slate-900/40
|
| 38 |
-
<h2 className="text-
|
| 39 |
-
|
| 40 |
-
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
|
| 50 |
-
|
| 51 |
-
|
| 52 |
-
|
| 53 |
-
|
| 54 |
-
|
| 55 |
-
|
| 56 |
-
|
| 57 |
-
|
| 58 |
-
return (
|
| 59 |
-
<React.Fragment key={`y-${tick}`}>
|
| 60 |
-
<div className="absolute w-full border-t border-slate-800/30" style={{ bottom: `${bottomPct}%` }} />
|
| 61 |
-
<div className="absolute -left-8 text-xs text-slate-500 font-mono translate-y-1/2" style={{ bottom: `${bottomPct}%` }}>
|
| 62 |
-
{tick.toFixed(1)}
|
| 63 |
-
</div>
|
| 64 |
-
</React.Fragment>
|
| 65 |
-
);
|
| 66 |
-
})}
|
| 67 |
-
|
| 68 |
-
{/* X-Axis Ticks */}
|
| 69 |
-
{xTicks.map(tick => {
|
| 70 |
-
const leftPct = ((maxDef - tick) / (maxDef - minDef)) * 100;
|
| 71 |
-
return (
|
| 72 |
-
<React.Fragment key={`x-${tick}`}>
|
| 73 |
-
<div className="absolute h-full border-l border-slate-800/30" style={{ left: `${leftPct}%` }} />
|
| 74 |
-
<div className="absolute -bottom-6 text-xs text-slate-500 font-mono -translate-x-1/2" style={{ left: `${leftPct}%` }}>
|
| 75 |
-
{tick.toFixed(1)}
|
| 76 |
-
</div>
|
| 77 |
-
</React.Fragment>
|
| 78 |
-
);
|
| 79 |
-
})}
|
| 80 |
-
|
| 81 |
-
{/* Plotting the Teams */}
|
| 82 |
-
{data.map(team => {
|
| 83 |
-
const leftPct = ((maxDef - team.Defence) / (maxDef - minDef)) * 100;
|
| 84 |
-
const bottomPct = ((team.Attack - minAttack) / (maxAttack - minAttack)) * 100;
|
| 85 |
-
const logoId = TEAM_LOGOS[team.Team];
|
| 86 |
|
| 87 |
-
|
| 88 |
-
|
| 89 |
-
|
| 90 |
-
|
| 91 |
-
|
| 92 |
-
|
| 93 |
-
|
| 94 |
-
|
| 95 |
-
|
| 96 |
-
|
| 97 |
-
|
| 98 |
-
|
| 99 |
-
|
| 100 |
-
|
| 101 |
-
|
| 102 |
-
|
| 103 |
-
|
| 104 |
-
|
| 105 |
-
|
| 106 |
-
|
| 107 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 108 |
</div>
|
| 109 |
</div>
|
| 110 |
|
| 111 |
-
{/*
|
| 112 |
<div className="w-full bg-slate-900/40 rounded-xl border border-slate-800 backdrop-blur-sm shadow-xl overflow-hidden flex flex-col">
|
| 113 |
<table className="w-full text-sm text-left text-slate-300 relative">
|
| 114 |
<thead className="text-[11px] text-slate-400 uppercase bg-slate-950 border-b border-slate-800 sticky top-0">
|
|
@@ -121,12 +119,19 @@ export default function TeamRatings() {
|
|
| 121 |
</thead>
|
| 122 |
<tbody className="divide-y divide-slate-800/50">
|
| 123 |
{data.map(team => (
|
| 124 |
-
<tr
|
| 125 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 126 |
<td className="px-6 py-3 text-center text-luigi-400 font-mono">{team.Attack.toFixed(2)}</td>
|
| 127 |
-
<td className="px-6 py-3 text-center text-rose-400 font-mono">{team.Defence.toFixed(2)}</td>
|
| 128 |
<td className="px-6 py-3 text-center font-mono font-bold">
|
| 129 |
-
<span className={team.Diff > 0 ? 'text-
|
| 130 |
{team.Diff > 0 ? '+' : ''}{team.Diff.toFixed(2)}
|
| 131 |
</span>
|
| 132 |
</td>
|
|
|
|
| 1 |
+
import React, { useState, useEffect, useMemo } from 'react';
|
| 2 |
+
import { LineChart, Line, XAxis, YAxis, CartesianGrid, Tooltip, Legend, ResponsiveContainer } from 'recharts';
|
| 3 |
|
| 4 |
const TEAM_LOGOS = {
|
| 5 |
"Arsenal": 57, "Manchester City": 65, "Liverpool": 64, "Chelsea": 61,
|
|
|
|
| 12 |
|
| 13 |
export default function TeamRatings() {
|
| 14 |
const [data, setData] = useState([]);
|
| 15 |
+
const [historyData, setHistoryData] = useState([]);
|
| 16 |
const [isLoading, setIsLoading] = useState(true);
|
| 17 |
+
|
| 18 |
+
// Default to Arsenal (or any team) for the initial chart view
|
| 19 |
+
const [selectedTeam, setSelectedTeam] = useState('Arsenal');
|
| 20 |
|
| 21 |
useEffect(() => {
|
| 22 |
+
// 1. Fetch the current live ratings for the table
|
| 23 |
fetch('https://anayshukla-fpl-solver.hf.space/api/ratings')
|
| 24 |
.then(res => res.json())
|
| 25 |
.then(jsonData => {
|
| 26 |
setData(jsonData.sort((a, b) => b.Diff - a.Diff));
|
|
|
|
| 27 |
});
|
|
|
|
| 28 |
|
| 29 |
+
// 2. Fetch the new history CSV data for the chart
|
| 30 |
+
fetch('https://anayshukla-fpl-solver.hf.space/api/ratings_history')
|
| 31 |
+
.then(res => res.json())
|
| 32 |
+
.then(jsonData => {
|
| 33 |
+
setHistoryData(jsonData);
|
| 34 |
+
setIsLoading(false);
|
| 35 |
+
})
|
| 36 |
+
.catch(() => setIsLoading(false));
|
| 37 |
+
}, []);
|
| 38 |
|
| 39 |
+
// Filter and sort the history data specifically for the selected team
|
| 40 |
+
const chartData = useMemo(() => {
|
| 41 |
+
return historyData
|
| 42 |
+
.filter(d => d.Team === selectedTeam)
|
| 43 |
+
.sort((a, b) => new Date(a.Date) - new Date(b.Date));
|
| 44 |
+
}, [historyData, selectedTeam]);
|
| 45 |
|
| 46 |
+
if (isLoading) return <div className="text-luigi-400 animate-pulse p-8 font-bold">Loading Advanced Ratings...</div>;
|
|
|
|
| 47 |
|
| 48 |
return (
|
| 49 |
+
<div className="flex flex-col w-full gap-6">
|
| 50 |
|
| 51 |
+
{/* 1. INTERACTIVE LOGO SELECTOR */}
|
| 52 |
+
<div className="w-full bg-slate-900/40 rounded-xl border border-slate-800 p-4 shadow-xl">
|
| 53 |
+
<h2 className="text-xs font-black text-slate-500 uppercase tracking-wider mb-3">Select Team to View Trend</h2>
|
| 54 |
+
<div className="flex gap-2 overflow-x-auto pb-2 custom-scrollbar">
|
| 55 |
+
{Object.keys(TEAM_LOGOS).sort().map(team => (
|
| 56 |
+
<button
|
| 57 |
+
key={team}
|
| 58 |
+
onClick={() => setSelectedTeam(team)}
|
| 59 |
+
className={`flex flex-col items-center justify-center gap-2 min-w-[72px] p-2 rounded-xl transition-all ${
|
| 60 |
+
selectedTeam === team
|
| 61 |
+
? 'bg-slate-800 border-luigi-400 border shadow-[0_0_15px_rgba(16,185,129,0.2)]'
|
| 62 |
+
: 'hover:bg-slate-800/50 border border-transparent opacity-50 hover:opacity-100 grayscale hover:grayscale-0'
|
| 63 |
+
}`}
|
| 64 |
+
>
|
| 65 |
+
<img src={`/logos/${TEAM_LOGOS[team]}.png`} alt={team} className="w-9 h-9 object-contain" />
|
| 66 |
+
<span className="text-[9px] font-bold text-center leading-tight text-slate-300 w-full truncate px-1">
|
| 67 |
+
{team.split(' ')[0]} {/* Shorten name for the tiny buttons */}
|
| 68 |
+
</span>
|
| 69 |
+
</button>
|
| 70 |
+
))}
|
| 71 |
+
</div>
|
| 72 |
+
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 73 |
|
| 74 |
+
{/* 2. RECHARTS TREND GRAPH */}
|
| 75 |
+
<div className="w-full h-96 bg-slate-900/40 rounded-xl border border-slate-800 backdrop-blur-sm p-4 shadow-xl flex flex-col">
|
| 76 |
+
<div className="flex items-center gap-3 mb-6 pl-2">
|
| 77 |
+
<img src={`/logos/${TEAM_LOGOS[selectedTeam]}.png`} className="w-8 h-8 object-contain drop-shadow-lg" alt="logo" />
|
| 78 |
+
<h3 className="text-lg font-black text-slate-200">{selectedTeam} Form History</h3>
|
| 79 |
+
</div>
|
| 80 |
+
|
| 81 |
+
<div className="flex-1 w-full min-h-0">
|
| 82 |
+
<ResponsiveContainer width="100%" height="100%">
|
| 83 |
+
<LineChart data={chartData} margin={{ top: 5, right: 20, bottom: 5, left: -20 }}>
|
| 84 |
+
<CartesianGrid strokeDasharray="3 3" stroke="#1e293b" vertical={false} />
|
| 85 |
+
<XAxis
|
| 86 |
+
dataKey="Date"
|
| 87 |
+
stroke="#64748b"
|
| 88 |
+
fontSize={10}
|
| 89 |
+
tickMargin={10}
|
| 90 |
+
minTickGap={30}
|
| 91 |
+
tickFormatter={(val) => val.slice(5)} // Turns "2026-04-21" into "04-21"
|
| 92 |
+
/>
|
| 93 |
+
<YAxis stroke="#64748b" fontSize={10} domain={['auto', 'auto']} />
|
| 94 |
+
<Tooltip
|
| 95 |
+
contentStyle={{ backgroundColor: '#0f172a', borderColor: '#1e293b', borderRadius: '0.75rem', color: '#f8fafc', boxShadow: '0 10px 15px -3px rgba(0, 0, 0, 0.5)' }}
|
| 96 |
+
itemStyle={{ fontWeight: '900', fontSize: '12px' }}
|
| 97 |
+
labelStyle={{ color: '#94a3b8', fontSize: '10px', marginBottom: '4px' }}
|
| 98 |
+
/>
|
| 99 |
+
<Legend wrapperStyle={{ paddingTop: '10px', fontSize: '12px', fontWeight: 'bold' }} />
|
| 100 |
+
|
| 101 |
+
<Line type="monotone" dataKey="Attack" name="Attack (xG)" stroke="#10b981" strokeWidth={3} dot={{ r: 3, fill: '#0f172a', strokeWidth: 2 }} activeDot={{ r: 6, fill: '#10b981' }} />
|
| 102 |
+
<Line type="monotone" dataKey="Defense" name="Defense (xGC)" stroke="#f43f5e" strokeWidth={3} dot={{ r: 3, fill: '#0f172a', strokeWidth: 2 }} activeDot={{ r: 6, fill: '#f43f5e' }} />
|
| 103 |
+
<Line type="monotone" dataKey="Diff" name="Overall Diff" stroke="#3b82f6" strokeWidth={3} dot={{ r: 3, fill: '#0f172a', strokeWidth: 2 }} activeDot={{ r: 6, fill: '#3b82f6' }} />
|
| 104 |
+
</LineChart>
|
| 105 |
+
</ResponsiveContainer>
|
| 106 |
</div>
|
| 107 |
</div>
|
| 108 |
|
| 109 |
+
{/* 3. ORIGINAL DATA TABLE */}
|
| 110 |
<div className="w-full bg-slate-900/40 rounded-xl border border-slate-800 backdrop-blur-sm shadow-xl overflow-hidden flex flex-col">
|
| 111 |
<table className="w-full text-sm text-left text-slate-300 relative">
|
| 112 |
<thead className="text-[11px] text-slate-400 uppercase bg-slate-950 border-b border-slate-800 sticky top-0">
|
|
|
|
| 119 |
</thead>
|
| 120 |
<tbody className="divide-y divide-slate-800/50">
|
| 121 |
{data.map(team => (
|
| 122 |
+
<tr
|
| 123 |
+
key={team.Team}
|
| 124 |
+
className={`hover:bg-slate-800/50 cursor-pointer transition-colors ${selectedTeam === team.Team ? 'bg-slate-800/30' : ''}`}
|
| 125 |
+
onClick={() => setSelectedTeam(team.Team)}
|
| 126 |
+
>
|
| 127 |
+
<td className="px-6 py-3 font-bold flex items-center gap-3">
|
| 128 |
+
<img src={`/logos/${TEAM_LOGOS[team.Team]}.png`} className="w-6 h-6 object-contain" alt="" />
|
| 129 |
+
{team.Team}
|
| 130 |
+
</td>
|
| 131 |
<td className="px-6 py-3 text-center text-luigi-400 font-mono">{team.Attack.toFixed(2)}</td>
|
| 132 |
+
<td className="px-6 py-3 text-center text-rose-400 font-mono">{team.Defense !== undefined ? team.Defense.toFixed(2) : team.Defence?.toFixed(2)}</td>
|
| 133 |
<td className="px-6 py-3 text-center font-mono font-bold">
|
| 134 |
+
<span className={`px-2 py-1 rounded bg-slate-950/50 border ${team.Diff > 0 ? 'text-luigi-400 border-luigi-500/30' : 'text-rose-400 border-rose-500/30'}`}>
|
| 135 |
{team.Diff > 0 ? '+' : ''}{team.Diff.toFixed(2)}
|
| 136 |
</span>
|
| 137 |
</td>
|
main.py
CHANGED
|
@@ -6,7 +6,7 @@ from typing import Any, Dict, List, Optional
|
|
| 6 |
import numpy as np
|
| 7 |
import pandas as pd
|
| 8 |
import requests
|
| 9 |
-
from fastapi import FastAPI, HTTPException,
|
| 10 |
from fastapi.middleware.cors import CORSMiddleware
|
| 11 |
from pydantic import BaseModel
|
| 12 |
from sqlalchemy.orm import Session
|
|
@@ -1112,3 +1112,15 @@ def update_fixture_overrides(req: FixtureOverrideRequest):
|
|
| 1112 |
@app.get("/api/xmins/overrides")
|
| 1113 |
def get_xmins_overrides():
|
| 1114 |
return app_data.admin_xmins_overrides
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
import numpy as np
|
| 7 |
import pandas as pd
|
| 8 |
import requests
|
| 9 |
+
from fastapi import FastAPI, HTTPException, Depends
|
| 10 |
from fastapi.middleware.cors import CORSMiddleware
|
| 11 |
from pydantic import BaseModel
|
| 12 |
from sqlalchemy.orm import Session
|
|
|
|
| 1112 |
@app.get("/api/xmins/overrides")
|
| 1113 |
def get_xmins_overrides():
|
| 1114 |
return app_data.admin_xmins_overrides
|
| 1115 |
+
|
| 1116 |
+
|
| 1117 |
+
@app.get("/api/ratings_history")
|
| 1118 |
+
def get_ratings_history():
|
| 1119 |
+
try:
|
| 1120 |
+
# Reads your history CSV and sends it to React as a JSON array
|
| 1121 |
+
import pandas as pd
|
| 1122 |
+
|
| 1123 |
+
df = pd.read_csv("team_ratings_history.csv")
|
| 1124 |
+
return df.to_dict(orient="records")
|
| 1125 |
+
except Exception:
|
| 1126 |
+
return []
|
team_ratings_history.csv
ADDED
|
@@ -0,0 +1,1981 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Date,Team,Attack,Defense,Diff
|
| 2 |
+
2025-08-14,AFC Bournemouth,1.327,1.328,-0.001
|
| 3 |
+
2025-08-14,Arsenal,1.615,0.804,0.811
|
| 4 |
+
2025-08-14,Aston Villa,1.34,1.338,0.002
|
| 5 |
+
2025-08-14,Brentford,1.371,1.337,0.034
|
| 6 |
+
2025-08-14,Brighton and Hove Albion,1.364,1.266,0.098
|
| 7 |
+
2025-08-14,Burnley,0.783,1.353,-0.57
|
| 8 |
+
2025-08-14,Chelsea,1.622,1.276,0.346
|
| 9 |
+
2025-08-14,Crystal Palace,1.2,1.171,0.03
|
| 10 |
+
2025-08-14,Everton,1.048,1.236,-0.188
|
| 11 |
+
2025-08-14,Fulham,1.21,1.287,-0.078
|
| 12 |
+
2025-08-14,Leeds United,1.085,1.315,-0.229
|
| 13 |
+
2025-08-14,Liverpool,1.914,0.961,0.953
|
| 14 |
+
2025-08-14,Manchester City,1.838,0.969,0.869
|
| 15 |
+
2025-08-14,Manchester United,1.288,1.385,-0.097
|
| 16 |
+
2025-08-14,Newcastle United,1.588,1.248,0.341
|
| 17 |
+
2025-08-14,Nottingham Forest,1.144,1.271,-0.127
|
| 18 |
+
2025-08-14,Sunderland,0.78,1.738,-0.958
|
| 19 |
+
2025-08-14,Tottenham Hotspur,1.551,1.396,0.156
|
| 20 |
+
2025-08-14,West Ham United,1.211,1.488,-0.277
|
| 21 |
+
2025-08-14,Wolverhampton Wanderers,0.953,1.372,-0.419
|
| 22 |
+
2025-08-15,AFC Bournemouth,1.369,1.357,0.012
|
| 23 |
+
2025-08-15,Arsenal,1.621,0.808,0.813
|
| 24 |
+
2025-08-15,Aston Villa,1.345,1.345,0.0
|
| 25 |
+
2025-08-15,Brentford,1.376,1.344,0.032
|
| 26 |
+
2025-08-15,Brighton and Hove Albion,1.369,1.273,0.097
|
| 27 |
+
2025-08-15,Burnley,0.786,1.359,-0.574
|
| 28 |
+
2025-08-15,Chelsea,1.628,1.282,0.346
|
| 29 |
+
2025-08-15,Crystal Palace,1.205,1.176,0.028
|
| 30 |
+
2025-08-15,Everton,1.052,1.242,-0.191
|
| 31 |
+
2025-08-15,Fulham,1.214,1.294,-0.08
|
| 32 |
+
2025-08-15,Leeds United,1.089,1.321,-0.232
|
| 33 |
+
2025-08-15,Liverpool,1.95,0.99,0.96
|
| 34 |
+
2025-08-15,Manchester City,1.844,0.974,0.87
|
| 35 |
+
2025-08-15,Manchester United,1.293,1.391,-0.099
|
| 36 |
+
2025-08-15,Newcastle United,1.594,1.254,0.341
|
| 37 |
+
2025-08-15,Nottingham Forest,1.148,1.277,-0.129
|
| 38 |
+
2025-08-15,Sunderland,0.783,1.747,-0.964
|
| 39 |
+
2025-08-15,Tottenham Hotspur,1.557,1.403,0.154
|
| 40 |
+
2025-08-15,West Ham United,1.215,1.495,-0.28
|
| 41 |
+
2025-08-15,Wolverhampton Wanderers,0.956,1.379,-0.423
|
| 42 |
+
2025-08-16,AFC Bournemouth,1.346,1.325,0.021
|
| 43 |
+
2025-08-16,Arsenal,1.594,0.789,0.804
|
| 44 |
+
2025-08-16,Aston Villa,1.261,1.283,-0.022
|
| 45 |
+
2025-08-16,Brentford,1.353,1.312,0.04
|
| 46 |
+
2025-08-16,Brighton and Hove Albion,1.331,1.232,0.099
|
| 47 |
+
2025-08-16,Burnley,0.767,1.352,-0.586
|
| 48 |
+
2025-08-16,Chelsea,1.6,1.252,0.348
|
| 49 |
+
2025-08-16,Crystal Palace,1.185,1.149,0.036
|
| 50 |
+
2025-08-16,Everton,1.034,1.213,-0.179
|
| 51 |
+
2025-08-16,Fulham,1.181,1.249,-0.069
|
| 52 |
+
2025-08-16,Leeds United,1.071,1.291,-0.219
|
| 53 |
+
2025-08-16,Liverpool,1.918,0.967,0.951
|
| 54 |
+
2025-08-16,Manchester City,1.88,0.936,0.944
|
| 55 |
+
2025-08-16,Manchester United,1.271,1.359,-0.088
|
| 56 |
+
2025-08-16,Newcastle United,1.531,1.173,0.358
|
| 57 |
+
2025-08-16,Nottingham Forest,1.129,1.247,-0.118
|
| 58 |
+
2025-08-16,Sunderland,0.782,1.643,-0.861
|
| 59 |
+
2025-08-16,Tottenham Hotspur,1.561,1.358,0.203
|
| 60 |
+
2025-08-16,West Ham United,1.147,1.486,-0.34
|
| 61 |
+
2025-08-16,Wolverhampton Wanderers,0.925,1.394,-0.47
|
| 62 |
+
2025-08-17,AFC Bournemouth,1.346,1.325,0.021
|
| 63 |
+
2025-08-17,Arsenal,1.567,0.787,0.78
|
| 64 |
+
2025-08-17,Aston Villa,1.261,1.283,-0.022
|
| 65 |
+
2025-08-17,Brentford,1.352,1.347,0.005
|
| 66 |
+
2025-08-17,Brighton and Hove Albion,1.331,1.231,0.099
|
| 67 |
+
2025-08-17,Burnley,0.767,1.352,-0.586
|
| 68 |
+
2025-08-17,Chelsea,1.561,1.223,0.338
|
| 69 |
+
2025-08-17,Crystal Palace,1.156,1.12,0.036
|
| 70 |
+
2025-08-17,Everton,1.034,1.213,-0.179
|
| 71 |
+
2025-08-17,Fulham,1.181,1.249,-0.069
|
| 72 |
+
2025-08-17,Leeds United,1.071,1.29,-0.219
|
| 73 |
+
2025-08-17,Liverpool,1.918,0.967,0.951
|
| 74 |
+
2025-08-17,Manchester City,1.88,0.936,0.944
|
| 75 |
+
2025-08-17,Manchester United,1.271,1.338,-0.067
|
| 76 |
+
2025-08-17,Newcastle United,1.531,1.173,0.358
|
| 77 |
+
2025-08-17,Nottingham Forest,1.159,1.245,-0.086
|
| 78 |
+
2025-08-17,Sunderland,0.782,1.643,-0.861
|
| 79 |
+
2025-08-17,Tottenham Hotspur,1.561,1.358,0.203
|
| 80 |
+
2025-08-17,West Ham United,1.147,1.486,-0.34
|
| 81 |
+
2025-08-17,Wolverhampton Wanderers,0.925,1.394,-0.47
|
| 82 |
+
2025-08-18,AFC Bournemouth,1.356,1.325,0.031
|
| 83 |
+
2025-08-18,Arsenal,1.579,0.787,0.792
|
| 84 |
+
2025-08-18,Aston Villa,1.271,1.283,-0.012
|
| 85 |
+
2025-08-18,Brentford,1.362,1.347,0.015
|
| 86 |
+
2025-08-18,Brighton and Hove Albion,1.341,1.231,0.109
|
| 87 |
+
2025-08-18,Burnley,0.772,1.352,-0.58
|
| 88 |
+
2025-08-18,Chelsea,1.573,1.223,0.349
|
| 89 |
+
2025-08-18,Crystal Palace,1.165,1.12,0.045
|
| 90 |
+
2025-08-18,Everton,1.023,1.227,-0.203
|
| 91 |
+
2025-08-18,Fulham,1.19,1.249,-0.06
|
| 92 |
+
2025-08-18,Leeds United,1.096,1.268,-0.173
|
| 93 |
+
2025-08-18,Liverpool,1.932,0.967,0.965
|
| 94 |
+
2025-08-18,Manchester City,1.894,0.936,0.958
|
| 95 |
+
2025-08-18,Manchester United,1.28,1.338,-0.057
|
| 96 |
+
2025-08-18,Newcastle United,1.543,1.173,0.37
|
| 97 |
+
2025-08-18,Nottingham Forest,1.168,1.245,-0.077
|
| 98 |
+
2025-08-18,Sunderland,0.788,1.643,-0.855
|
| 99 |
+
2025-08-18,Tottenham Hotspur,1.573,1.358,0.215
|
| 100 |
+
2025-08-18,West Ham United,1.155,1.486,-0.331
|
| 101 |
+
2025-08-18,Wolverhampton Wanderers,0.932,1.394,-0.463
|
| 102 |
+
2025-08-22,AFC Bournemouth,1.356,1.325,0.031
|
| 103 |
+
2025-08-22,Arsenal,1.579,0.787,0.792
|
| 104 |
+
2025-08-22,Aston Villa,1.271,1.283,-0.012
|
| 105 |
+
2025-08-22,Brentford,1.362,1.347,0.015
|
| 106 |
+
2025-08-22,Brighton and Hove Albion,1.341,1.231,0.109
|
| 107 |
+
2025-08-22,Burnley,0.772,1.352,-0.58
|
| 108 |
+
2025-08-22,Chelsea,1.665,1.206,0.459
|
| 109 |
+
2025-08-22,Crystal Palace,1.165,1.12,0.045
|
| 110 |
+
2025-08-22,Everton,1.023,1.227,-0.203
|
| 111 |
+
2025-08-22,Fulham,1.19,1.249,-0.06
|
| 112 |
+
2025-08-22,Leeds United,1.096,1.268,-0.173
|
| 113 |
+
2025-08-22,Liverpool,1.932,0.967,0.965
|
| 114 |
+
2025-08-22,Manchester City,1.894,0.936,0.958
|
| 115 |
+
2025-08-22,Manchester United,1.28,1.338,-0.057
|
| 116 |
+
2025-08-22,Newcastle United,1.543,1.173,0.37
|
| 117 |
+
2025-08-22,Nottingham Forest,1.168,1.245,-0.077
|
| 118 |
+
2025-08-22,Sunderland,0.788,1.643,-0.855
|
| 119 |
+
2025-08-22,Tottenham Hotspur,1.573,1.358,0.215
|
| 120 |
+
2025-08-22,West Ham United,1.136,1.57,-0.434
|
| 121 |
+
2025-08-22,Wolverhampton Wanderers,0.932,1.394,-0.463
|
| 122 |
+
2025-08-23,AFC Bournemouth,1.306,1.286,0.019
|
| 123 |
+
2025-08-23,Arsenal,1.645,0.767,0.878
|
| 124 |
+
2025-08-23,Aston Villa,1.228,1.25,-0.022
|
| 125 |
+
2025-08-23,Brentford,1.317,1.31,0.007
|
| 126 |
+
2025-08-23,Brighton and Hove Albion,1.32,1.22,0.1
|
| 127 |
+
2025-08-23,Burnley,0.764,1.324,-0.561
|
| 128 |
+
2025-08-23,Chelsea,1.639,1.195,0.444
|
| 129 |
+
2025-08-23,Crystal Palace,1.146,1.11,0.037
|
| 130 |
+
2025-08-23,Everton,1.007,1.216,-0.208
|
| 131 |
+
2025-08-23,Fulham,1.171,1.238,-0.067
|
| 132 |
+
2025-08-23,Leeds United,1.058,1.327,-0.268
|
| 133 |
+
2025-08-23,Liverpool,1.902,0.958,0.944
|
| 134 |
+
2025-08-23,Manchester City,1.773,0.936,0.837
|
| 135 |
+
2025-08-23,Manchester United,1.26,1.326,-0.065
|
| 136 |
+
2025-08-23,Newcastle United,1.519,1.162,0.356
|
| 137 |
+
2025-08-23,Nottingham Forest,1.15,1.234,-0.084
|
| 138 |
+
2025-08-23,Sunderland,0.767,1.638,-0.871
|
| 139 |
+
2025-08-23,Tottenham Hotspur,1.562,1.284,0.278
|
| 140 |
+
2025-08-23,West Ham United,1.118,1.556,-0.437
|
| 141 |
+
2025-08-23,Wolverhampton Wanderers,0.897,1.354,-0.457
|
| 142 |
+
2025-08-24,AFC Bournemouth,1.309,1.291,0.018
|
| 143 |
+
2025-08-24,Arsenal,1.649,0.77,0.88
|
| 144 |
+
2025-08-24,Aston Villa,1.231,1.255,-0.024
|
| 145 |
+
2025-08-24,Brentford,1.32,1.315,0.006
|
| 146 |
+
2025-08-24,Brighton and Hove Albion,1.335,1.245,0.09
|
| 147 |
+
2025-08-24,Burnley,0.766,1.329,-0.563
|
| 148 |
+
2025-08-24,Chelsea,1.643,1.199,0.444
|
| 149 |
+
2025-08-24,Crystal Palace,1.137,1.112,0.025
|
| 150 |
+
2025-08-24,Everton,1.028,1.224,-0.196
|
| 151 |
+
2025-08-24,Fulham,1.173,1.249,-0.076
|
| 152 |
+
2025-08-24,Leeds United,1.061,1.332,-0.271
|
| 153 |
+
2025-08-24,Liverpool,1.907,0.962,0.945
|
| 154 |
+
2025-08-24,Manchester City,1.778,0.94,0.838
|
| 155 |
+
2025-08-24,Manchester United,1.273,1.327,-0.054
|
| 156 |
+
2025-08-24,Newcastle United,1.523,1.167,0.356
|
| 157 |
+
2025-08-24,Nottingham Forest,1.15,1.226,-0.077
|
| 158 |
+
2025-08-24,Sunderland,0.769,1.644,-0.875
|
| 159 |
+
2025-08-24,Tottenham Hotspur,1.566,1.289,0.277
|
| 160 |
+
2025-08-24,West Ham United,1.121,1.562,-0.44
|
| 161 |
+
2025-08-24,Wolverhampton Wanderers,0.9,1.359,-0.46
|
| 162 |
+
2025-08-25,AFC Bournemouth,1.309,1.291,0.018
|
| 163 |
+
2025-08-25,Arsenal,1.649,0.77,0.88
|
| 164 |
+
2025-08-25,Aston Villa,1.231,1.255,-0.024
|
| 165 |
+
2025-08-25,Brentford,1.32,1.315,0.006
|
| 166 |
+
2025-08-25,Brighton and Hove Albion,1.335,1.245,0.09
|
| 167 |
+
2025-08-25,Burnley,0.766,1.329,-0.563
|
| 168 |
+
2025-08-25,Chelsea,1.643,1.199,0.444
|
| 169 |
+
2025-08-25,Crystal Palace,1.137,1.112,0.025
|
| 170 |
+
2025-08-25,Everton,1.028,1.224,-0.196
|
| 171 |
+
2025-08-25,Fulham,1.173,1.249,-0.076
|
| 172 |
+
2025-08-25,Leeds United,1.061,1.332,-0.271
|
| 173 |
+
2025-08-25,Liverpool,1.892,0.961,0.931
|
| 174 |
+
2025-08-25,Manchester City,1.778,0.94,0.838
|
| 175 |
+
2025-08-25,Manchester United,1.273,1.327,-0.054
|
| 176 |
+
2025-08-25,Newcastle United,1.518,1.164,0.355
|
| 177 |
+
2025-08-25,Nottingham Forest,1.15,1.226,-0.077
|
| 178 |
+
2025-08-25,Sunderland,0.769,1.644,-0.875
|
| 179 |
+
2025-08-25,Tottenham Hotspur,1.566,1.289,0.277
|
| 180 |
+
2025-08-25,West Ham United,1.121,1.562,-0.44
|
| 181 |
+
2025-08-25,Wolverhampton Wanderers,0.9,1.359,-0.46
|
| 182 |
+
2025-08-30,AFC Bournemouth,1.309,1.233,0.076
|
| 183 |
+
2025-08-30,Arsenal,1.646,0.776,0.87
|
| 184 |
+
2025-08-30,Aston Villa,1.229,1.266,-0.037
|
| 185 |
+
2025-08-30,Brentford,1.293,1.355,-0.062
|
| 186 |
+
2025-08-30,Brighton and Hove Albion,1.333,1.256,0.077
|
| 187 |
+
2025-08-30,Burnley,0.782,1.408,-0.627
|
| 188 |
+
2025-08-30,Chelsea,1.65,1.191,0.459
|
| 189 |
+
2025-08-30,Crystal Palace,1.135,1.121,0.014
|
| 190 |
+
2025-08-30,Everton,1.067,1.249,-0.182
|
| 191 |
+
2025-08-30,Fulham,1.153,1.266,-0.113
|
| 192 |
+
2025-08-30,Leeds United,1.034,1.292,-0.258
|
| 193 |
+
2025-08-30,Liverpool,1.889,0.969,0.92
|
| 194 |
+
2025-08-30,Manchester City,1.775,0.948,0.827
|
| 195 |
+
2025-08-30,Manchester United,1.345,1.367,-0.023
|
| 196 |
+
2025-08-30,Newcastle United,1.452,1.147,0.305
|
| 197 |
+
2025-08-30,Nottingham Forest,1.148,1.237,-0.089
|
| 198 |
+
2025-08-30,Sunderland,0.786,1.63,-0.844
|
| 199 |
+
2025-08-30,Tottenham Hotspur,1.47,1.3,0.171
|
| 200 |
+
2025-08-30,West Ham United,1.12,1.575,-0.456
|
| 201 |
+
2025-08-30,Wolverhampton Wanderers,0.908,1.423,-0.515
|
| 202 |
+
2025-08-31,AFC Bournemouth,1.329,1.221,0.108
|
| 203 |
+
2025-08-31,Arsenal,1.62,0.753,0.867
|
| 204 |
+
2025-08-31,Aston Villa,1.225,1.317,-0.092
|
| 205 |
+
2025-08-31,Brentford,1.314,1.342,-0.028
|
| 206 |
+
2025-08-31,Brighton and Hove Albion,1.397,1.233,0.163
|
| 207 |
+
2025-08-31,Burnley,0.794,1.395,-0.601
|
| 208 |
+
2025-08-31,Chelsea,1.676,1.18,0.496
|
| 209 |
+
2025-08-31,Crystal Palace,1.218,1.089,0.128
|
| 210 |
+
2025-08-31,Everton,1.084,1.237,-0.153
|
| 211 |
+
2025-08-31,Fulham,1.172,1.254,-0.082
|
| 212 |
+
2025-08-31,Leeds United,1.05,1.279,-0.229
|
| 213 |
+
2025-08-31,Liverpool,1.873,0.932,0.941
|
| 214 |
+
2025-08-31,Manchester City,1.789,0.965,0.824
|
| 215 |
+
2025-08-31,Manchester United,1.366,1.354,0.012
|
| 216 |
+
2025-08-31,Newcastle United,1.475,1.136,0.339
|
| 217 |
+
2025-08-31,Nottingham Forest,1.116,1.283,-0.167
|
| 218 |
+
2025-08-31,Sunderland,0.798,1.614,-0.816
|
| 219 |
+
2025-08-31,Tottenham Hotspur,1.493,1.287,0.206
|
| 220 |
+
2025-08-31,West Ham United,1.197,1.499,-0.302
|
| 221 |
+
2025-08-31,Wolverhampton Wanderers,0.922,1.409,-0.487
|
| 222 |
+
2025-09-13,AFC Bournemouth,1.302,1.188,0.114
|
| 223 |
+
2025-09-13,Arsenal,1.596,0.733,0.862
|
| 224 |
+
2025-09-13,Aston Villa,1.165,1.294,-0.128
|
| 225 |
+
2025-09-13,Brentford,1.292,1.318,-0.026
|
| 226 |
+
2025-09-13,Brighton and Hove Albion,1.34,1.223,0.117
|
| 227 |
+
2025-09-13,Burnley,0.777,1.38,-0.603
|
| 228 |
+
2025-09-13,Chelsea,1.623,1.173,0.45
|
| 229 |
+
2025-09-13,Crystal Palace,1.161,1.062,0.099
|
| 230 |
+
2025-09-13,Everton,1.058,1.192,-0.135
|
| 231 |
+
2025-09-13,Fulham,1.126,1.219,-0.093
|
| 232 |
+
2025-09-13,Leeds United,1.009,1.246,-0.237
|
| 233 |
+
2025-09-13,Liverpool,1.832,0.922,0.91
|
| 234 |
+
2025-09-13,Manchester City,1.75,0.954,0.796
|
| 235 |
+
2025-09-13,Manchester United,1.336,1.339,-0.003
|
| 236 |
+
2025-09-13,Newcastle United,1.413,1.106,0.307
|
| 237 |
+
2025-09-13,Nottingham Forest,1.073,1.28,-0.207
|
| 238 |
+
2025-09-13,Sunderland,0.769,1.556,-0.787
|
| 239 |
+
2025-09-13,Tottenham Hotspur,1.469,1.231,0.238
|
| 240 |
+
2025-09-13,West Ham United,1.129,1.494,-0.366
|
| 241 |
+
2025-09-13,Wolverhampton Wanderers,0.888,1.367,-0.479
|
| 242 |
+
2025-09-14,AFC Bournemouth,1.302,1.188,0.114
|
| 243 |
+
2025-09-14,Arsenal,1.596,0.733,0.862
|
| 244 |
+
2025-09-14,Aston Villa,1.165,1.294,-0.128
|
| 245 |
+
2025-09-14,Brentford,1.292,1.318,-0.026
|
| 246 |
+
2025-09-14,Brighton and Hove Albion,1.34,1.223,0.117
|
| 247 |
+
2025-09-14,Burnley,0.761,1.375,-0.614
|
| 248 |
+
2025-09-14,Chelsea,1.623,1.173,0.45
|
| 249 |
+
2025-09-14,Crystal Palace,1.161,1.062,0.099
|
| 250 |
+
2025-09-14,Everton,1.058,1.192,-0.135
|
| 251 |
+
2025-09-14,Fulham,1.126,1.219,-0.093
|
| 252 |
+
2025-09-14,Leeds United,1.009,1.246,-0.237
|
| 253 |
+
2025-09-14,Liverpool,1.831,0.905,0.926
|
| 254 |
+
2025-09-14,Manchester City,1.774,0.949,0.826
|
| 255 |
+
2025-09-14,Manchester United,1.331,1.357,-0.025
|
| 256 |
+
2025-09-14,Newcastle United,1.413,1.106,0.307
|
| 257 |
+
2025-09-14,Nottingham Forest,1.073,1.28,-0.207
|
| 258 |
+
2025-09-14,Sunderland,0.769,1.556,-0.787
|
| 259 |
+
2025-09-14,Tottenham Hotspur,1.469,1.231,0.238
|
| 260 |
+
2025-09-14,West Ham United,1.129,1.494,-0.366
|
| 261 |
+
2025-09-14,Wolverhampton Wanderers,0.888,1.367,-0.479
|
| 262 |
+
2025-09-20,AFC Bournemouth,1.303,1.191,0.112
|
| 263 |
+
2025-09-20,Arsenal,1.597,0.735,0.862
|
| 264 |
+
2025-09-20,Aston Villa,1.166,1.297,-0.131
|
| 265 |
+
2025-09-20,Brentford,1.27,1.336,-0.066
|
| 266 |
+
2025-09-20,Brighton and Hove Albion,1.337,1.23,0.107
|
| 267 |
+
2025-09-20,Burnley,0.759,1.372,-0.613
|
| 268 |
+
2025-09-20,Chelsea,1.563,1.187,0.376
|
| 269 |
+
2025-09-20,Crystal Palace,1.193,1.053,0.14
|
| 270 |
+
2025-09-20,Everton,1.059,1.167,-0.108
|
| 271 |
+
2025-09-20,Fulham,1.136,1.204,-0.068
|
| 272 |
+
2025-09-20,Leeds United,1.019,1.262,-0.243
|
| 273 |
+
2025-09-20,Liverpool,1.78,0.908,0.871
|
| 274 |
+
2025-09-20,Manchester City,1.776,0.951,0.825
|
| 275 |
+
2025-09-20,Manchester United,1.345,1.316,0.029
|
| 276 |
+
2025-09-20,Newcastle United,1.414,1.109,0.305
|
| 277 |
+
2025-09-20,Nottingham Forest,1.069,1.281,-0.212
|
| 278 |
+
2025-09-20,Sunderland,0.769,1.559,-0.79
|
| 279 |
+
2025-09-20,Tottenham Hotspur,1.473,1.232,0.241
|
| 280 |
+
2025-09-20,West Ham United,1.115,1.532,-0.417
|
| 281 |
+
2025-09-20,Wolverhampton Wanderers,0.901,1.388,-0.487
|
| 282 |
+
2025-09-21,AFC Bournemouth,1.256,1.142,0.114
|
| 283 |
+
2025-09-21,Arsenal,1.565,0.728,0.837
|
| 284 |
+
2025-09-21,Aston Villa,1.146,1.29,-0.145
|
| 285 |
+
2025-09-21,Brentford,1.27,1.329,-0.058
|
| 286 |
+
2025-09-21,Brighton and Hove Albion,1.337,1.223,0.114
|
| 287 |
+
2025-09-21,Burnley,0.759,1.364,-0.605
|
| 288 |
+
2025-09-21,Chelsea,1.563,1.18,0.383
|
| 289 |
+
2025-09-21,Crystal Palace,1.193,1.047,0.146
|
| 290 |
+
2025-09-21,Everton,1.059,1.16,-0.101
|
| 291 |
+
2025-09-21,Fulham,1.136,1.197,-0.061
|
| 292 |
+
2025-09-21,Leeds United,1.019,1.255,-0.236
|
| 293 |
+
2025-09-21,Liverpool,1.78,0.903,0.877
|
| 294 |
+
2025-09-21,Manchester City,1.768,0.93,0.839
|
| 295 |
+
2025-09-21,Manchester United,1.345,1.308,0.036
|
| 296 |
+
2025-09-21,Newcastle United,1.36,1.066,0.293
|
| 297 |
+
2025-09-21,Nottingham Forest,1.069,1.274,-0.205
|
| 298 |
+
2025-09-21,Sunderland,0.77,1.526,-0.756
|
| 299 |
+
2025-09-21,Tottenham Hotspur,1.473,1.225,0.248
|
| 300 |
+
2025-09-21,West Ham United,1.115,1.524,-0.408
|
| 301 |
+
2025-09-21,Wolverhampton Wanderers,0.901,1.38,-0.479
|
| 302 |
+
2025-09-27,AFC Bournemouth,1.251,1.197,0.054
|
| 303 |
+
2025-09-27,Arsenal,1.56,0.746,0.814
|
| 304 |
+
2025-09-27,Aston Villa,1.141,1.322,-0.181
|
| 305 |
+
2025-09-27,Brentford,1.297,1.366,-0.069
|
| 306 |
+
2025-09-27,Brighton and Hove Albion,1.388,1.237,0.151
|
| 307 |
+
2025-09-27,Burnley,0.758,1.432,-0.674
|
| 308 |
+
2025-09-27,Chelsea,1.538,1.255,0.282
|
| 309 |
+
2025-09-27,Crystal Palace,1.248,1.078,0.17
|
| 310 |
+
2025-09-27,Everton,1.055,1.189,-0.134
|
| 311 |
+
2025-09-27,Fulham,1.132,1.227,-0.094
|
| 312 |
+
2025-09-27,Leeds United,1.042,1.287,-0.245
|
| 313 |
+
2025-09-27,Liverpool,1.789,0.965,0.824
|
| 314 |
+
2025-09-27,Manchester City,1.798,0.955,0.843
|
| 315 |
+
2025-09-27,Manchester United,1.348,1.372,-0.024
|
| 316 |
+
2025-09-27,Newcastle United,1.355,1.092,0.262
|
| 317 |
+
2025-09-27,Nottingham Forest,1.047,1.327,-0.279
|
| 318 |
+
2025-09-27,Sunderland,0.783,1.534,-0.752
|
| 319 |
+
2025-09-27,Tottenham Hotspur,1.416,1.263,0.153
|
| 320 |
+
2025-09-27,West Ham United,1.111,1.561,-0.45
|
| 321 |
+
2025-09-27,Wolverhampton Wanderers,0.904,1.369,-0.465
|
| 322 |
+
2025-09-28,AFC Bournemouth,1.256,1.197,0.059
|
| 323 |
+
2025-09-28,Arsenal,1.604,0.742,0.862
|
| 324 |
+
2025-09-28,Aston Villa,1.164,1.313,-0.148
|
| 325 |
+
2025-09-28,Brentford,1.303,1.366,-0.063
|
| 326 |
+
2025-09-28,Brighton and Hove Albion,1.394,1.237,0.157
|
| 327 |
+
2025-09-28,Burnley,0.761,1.432,-0.671
|
| 328 |
+
2025-09-28,Chelsea,1.544,1.255,0.289
|
| 329 |
+
2025-09-28,Crystal Palace,1.254,1.078,0.176
|
| 330 |
+
2025-09-28,Everton,1.06,1.189,-0.129
|
| 331 |
+
2025-09-28,Fulham,1.128,1.247,-0.119
|
| 332 |
+
2025-09-28,Leeds United,1.046,1.287,-0.241
|
| 333 |
+
2025-09-28,Liverpool,1.796,0.965,0.831
|
| 334 |
+
2025-09-28,Manchester City,1.806,0.955,0.851
|
| 335 |
+
2025-09-28,Manchester United,1.354,1.372,-0.018
|
| 336 |
+
2025-09-28,Newcastle United,1.352,1.115,0.238
|
| 337 |
+
2025-09-28,Nottingham Forest,1.052,1.327,-0.275
|
| 338 |
+
2025-09-28,Sunderland,0.786,1.534,-0.748
|
| 339 |
+
2025-09-28,Tottenham Hotspur,1.422,1.263,0.159
|
| 340 |
+
2025-09-28,West Ham United,1.116,1.561,-0.445
|
| 341 |
+
2025-09-28,Wolverhampton Wanderers,0.908,1.369,-0.461
|
| 342 |
+
2025-09-29,AFC Bournemouth,1.256,1.197,0.059
|
| 343 |
+
2025-09-29,Arsenal,1.604,0.742,0.862
|
| 344 |
+
2025-09-29,Aston Villa,1.164,1.313,-0.148
|
| 345 |
+
2025-09-29,Brentford,1.303,1.366,-0.063
|
| 346 |
+
2025-09-29,Brighton and Hove Albion,1.394,1.237,0.157
|
| 347 |
+
2025-09-29,Burnley,0.761,1.432,-0.671
|
| 348 |
+
2025-09-29,Chelsea,1.544,1.255,0.289
|
| 349 |
+
2025-09-29,Crystal Palace,1.254,1.078,0.176
|
| 350 |
+
2025-09-29,Everton,1.032,1.191,-0.16
|
| 351 |
+
2025-09-29,Fulham,1.128,1.247,-0.119
|
| 352 |
+
2025-09-29,Leeds United,1.046,1.287,-0.241
|
| 353 |
+
2025-09-29,Liverpool,1.796,0.965,0.831
|
| 354 |
+
2025-09-29,Manchester City,1.806,0.955,0.851
|
| 355 |
+
2025-09-29,Manchester United,1.354,1.372,-0.018
|
| 356 |
+
2025-09-29,Newcastle United,1.352,1.115,0.238
|
| 357 |
+
2025-09-29,Nottingham Forest,1.052,1.327,-0.275
|
| 358 |
+
2025-09-29,Sunderland,0.786,1.534,-0.748
|
| 359 |
+
2025-09-29,Tottenham Hotspur,1.422,1.263,0.159
|
| 360 |
+
2025-09-29,West Ham United,1.119,1.525,-0.406
|
| 361 |
+
2025-09-29,Wolverhampton Wanderers,0.908,1.369,-0.461
|
| 362 |
+
2025-10-03,AFC Bournemouth,1.275,1.199,0.077
|
| 363 |
+
2025-10-03,Arsenal,1.613,0.745,0.868
|
| 364 |
+
2025-10-03,Aston Villa,1.171,1.319,-0.148
|
| 365 |
+
2025-10-03,Brentford,1.311,1.373,-0.062
|
| 366 |
+
2025-10-03,Brighton and Hove Albion,1.402,1.242,0.159
|
| 367 |
+
2025-10-03,Burnley,0.765,1.439,-0.673
|
| 368 |
+
2025-10-03,Chelsea,1.553,1.261,0.292
|
| 369 |
+
2025-10-03,Crystal Palace,1.261,1.083,0.178
|
| 370 |
+
2025-10-03,Everton,1.038,1.197,-0.159
|
| 371 |
+
2025-10-03,Fulham,1.131,1.268,-0.137
|
| 372 |
+
2025-10-03,Leeds United,1.052,1.293,-0.241
|
| 373 |
+
2025-10-03,Liverpool,1.807,0.969,0.837
|
| 374 |
+
2025-10-03,Manchester City,1.817,0.959,0.857
|
| 375 |
+
2025-10-03,Manchester United,1.362,1.378,-0.017
|
| 376 |
+
2025-10-03,Newcastle United,1.36,1.12,0.24
|
| 377 |
+
2025-10-03,Nottingham Forest,1.058,1.333,-0.275
|
| 378 |
+
2025-10-03,Sunderland,0.791,1.541,-0.751
|
| 379 |
+
2025-10-03,Tottenham Hotspur,1.43,1.268,0.162
|
| 380 |
+
2025-10-03,West Ham United,1.126,1.532,-0.406
|
| 381 |
+
2025-10-03,Wolverhampton Wanderers,0.913,1.375,-0.462
|
| 382 |
+
2025-10-04,AFC Bournemouth,1.277,1.199,0.079
|
| 383 |
+
2025-10-04,Arsenal,1.621,0.738,0.883
|
| 384 |
+
2025-10-04,Aston Villa,1.173,1.319,-0.146
|
| 385 |
+
2025-10-04,Brentford,1.313,1.373,-0.06
|
| 386 |
+
2025-10-04,Brighton and Hove Albion,1.404,1.242,0.162
|
| 387 |
+
2025-10-04,Burnley,0.767,1.439,-0.672
|
| 388 |
+
2025-10-04,Chelsea,1.551,1.253,0.298
|
| 389 |
+
2025-10-04,Crystal Palace,1.263,1.083,0.18
|
| 390 |
+
2025-10-04,Everton,1.039,1.197,-0.157
|
| 391 |
+
2025-10-04,Fulham,1.133,1.268,-0.135
|
| 392 |
+
2025-10-04,Leeds United,1.06,1.283,-0.223
|
| 393 |
+
2025-10-04,Liverpool,1.801,0.969,0.832
|
| 394 |
+
2025-10-04,Manchester City,1.819,0.959,0.86
|
| 395 |
+
2025-10-04,Manchester United,1.354,1.36,-0.006
|
| 396 |
+
2025-10-04,Newcastle United,1.362,1.12,0.242
|
| 397 |
+
2025-10-04,Nottingham Forest,1.06,1.333,-0.273
|
| 398 |
+
2025-10-04,Sunderland,0.781,1.533,-0.752
|
| 399 |
+
2025-10-04,Tottenham Hotspur,1.416,1.272,0.144
|
| 400 |
+
2025-10-04,West Ham United,1.116,1.534,-0.418
|
| 401 |
+
2025-10-04,Wolverhampton Wanderers,0.915,1.375,-0.46
|
| 402 |
+
2025-10-05,AFC Bournemouth,1.277,1.2,0.077
|
| 403 |
+
2025-10-05,Arsenal,1.621,0.739,0.882
|
| 404 |
+
2025-10-05,Aston Villa,1.168,1.315,-0.147
|
| 405 |
+
2025-10-05,Brentford,1.28,1.333,-0.052
|
| 406 |
+
2025-10-05,Brighton and Hove Albion,1.377,1.232,0.146
|
| 407 |
+
2025-10-05,Burnley,0.762,1.437,-0.675
|
| 408 |
+
2025-10-05,Chelsea,1.551,1.255,0.296
|
| 409 |
+
2025-10-05,Crystal Palace,1.267,1.114,0.153
|
| 410 |
+
2025-10-05,Everton,1.071,1.201,-0.13
|
| 411 |
+
2025-10-05,Fulham,1.133,1.27,-0.137
|
| 412 |
+
2025-10-05,Leeds United,1.06,1.285,-0.225
|
| 413 |
+
2025-10-05,Liverpool,1.801,0.97,0.831
|
| 414 |
+
2025-10-05,Manchester City,1.757,0.938,0.819
|
| 415 |
+
2025-10-05,Manchester United,1.354,1.362,-0.008
|
| 416 |
+
2025-10-05,Newcastle United,1.418,1.098,0.32
|
| 417 |
+
2025-10-05,Nottingham Forest,1.036,1.379,-0.344
|
| 418 |
+
2025-10-05,Sunderland,0.781,1.536,-0.754
|
| 419 |
+
2025-10-05,Tottenham Hotspur,1.416,1.274,0.142
|
| 420 |
+
2025-10-05,West Ham United,1.116,1.536,-0.421
|
| 421 |
+
2025-10-05,Wolverhampton Wanderers,0.904,1.354,-0.451
|
| 422 |
+
2025-10-18,AFC Bournemouth,1.34,1.319,0.02
|
| 423 |
+
2025-10-18,Arsenal,1.627,0.746,0.881
|
| 424 |
+
2025-10-18,Aston Villa,1.175,1.35,-0.175
|
| 425 |
+
2025-10-18,Brentford,1.288,1.368,-0.08
|
| 426 |
+
2025-10-18,Brighton and Hove Albion,1.379,1.261,0.118
|
| 427 |
+
2025-10-18,Burnley,0.769,1.488,-0.72
|
| 428 |
+
2025-10-18,Chelsea,1.583,1.292,0.291
|
| 429 |
+
2025-10-18,Crystal Palace,1.381,1.189,0.192
|
| 430 |
+
2025-10-18,Everton,1.068,1.24,-0.172
|
| 431 |
+
2025-10-18,Fulham,1.121,1.299,-0.178
|
| 432 |
+
2025-10-18,Leeds United,1.083,1.325,-0.243
|
| 433 |
+
2025-10-18,Liverpool,1.812,0.996,0.816
|
| 434 |
+
2025-10-18,Manchester City,1.781,0.954,0.827
|
| 435 |
+
2025-10-18,Manchester United,1.363,1.398,-0.035
|
| 436 |
+
2025-10-18,Newcastle United,1.425,1.124,0.301
|
| 437 |
+
2025-10-18,Nottingham Forest,1.052,1.438,-0.386
|
| 438 |
+
2025-10-18,Sunderland,0.789,1.549,-0.76
|
| 439 |
+
2025-10-18,Tottenham Hotspur,1.425,1.308,0.117
|
| 440 |
+
2025-10-18,West Ham United,1.122,1.577,-0.454
|
| 441 |
+
2025-10-18,Wolverhampton Wanderers,0.893,1.398,-0.505
|
| 442 |
+
2025-10-19,AFC Bournemouth,1.335,1.319,0.016
|
| 443 |
+
2025-10-19,Arsenal,1.622,0.746,0.876
|
| 444 |
+
2025-10-19,Aston Villa,1.164,1.315,-0.15
|
| 445 |
+
2025-10-19,Brentford,1.284,1.368,-0.084
|
| 446 |
+
2025-10-19,Brighton and Hove Albion,1.375,1.261,0.114
|
| 447 |
+
2025-10-19,Burnley,0.766,1.488,-0.722
|
| 448 |
+
2025-10-19,Chelsea,1.578,1.292,0.286
|
| 449 |
+
2025-10-19,Crystal Palace,1.376,1.189,0.187
|
| 450 |
+
2025-10-19,Everton,1.064,1.24,-0.176
|
| 451 |
+
2025-10-19,Fulham,1.117,1.299,-0.182
|
| 452 |
+
2025-10-19,Leeds United,1.079,1.325,-0.246
|
| 453 |
+
2025-10-19,Liverpool,1.794,1.012,0.782
|
| 454 |
+
2025-10-19,Manchester City,1.775,0.954,0.821
|
| 455 |
+
2025-10-19,Manchester United,1.381,1.385,-0.004
|
| 456 |
+
2025-10-19,Newcastle United,1.421,1.124,0.296
|
| 457 |
+
2025-10-19,Nottingham Forest,1.048,1.438,-0.39
|
| 458 |
+
2025-10-19,Sunderland,0.787,1.549,-0.762
|
| 459 |
+
2025-10-19,Tottenham Hotspur,1.379,1.304,0.074
|
| 460 |
+
2025-10-19,West Ham United,1.119,1.577,-0.458
|
| 461 |
+
2025-10-19,Wolverhampton Wanderers,0.891,1.398,-0.507
|
| 462 |
+
2025-10-20,AFC Bournemouth,1.335,1.335,0.0
|
| 463 |
+
2025-10-20,Arsenal,1.622,0.755,0.867
|
| 464 |
+
2025-10-20,Aston Villa,1.164,1.33,-0.166
|
| 465 |
+
2025-10-20,Brentford,1.315,1.336,-0.021
|
| 466 |
+
2025-10-20,Brighton and Hove Albion,1.375,1.276,0.099
|
| 467 |
+
2025-10-20,Burnley,0.766,1.506,-0.74
|
| 468 |
+
2025-10-20,Chelsea,1.578,1.308,0.271
|
| 469 |
+
2025-10-20,Crystal Palace,1.376,1.203,0.173
|
| 470 |
+
2025-10-20,Everton,1.064,1.255,-0.19
|
| 471 |
+
2025-10-20,Fulham,1.117,1.314,-0.197
|
| 472 |
+
2025-10-20,Leeds United,1.079,1.341,-0.262
|
| 473 |
+
2025-10-20,Liverpool,1.794,1.024,0.77
|
| 474 |
+
2025-10-20,Manchester City,1.775,0.965,0.81
|
| 475 |
+
2025-10-20,Manchester United,1.381,1.401,-0.021
|
| 476 |
+
2025-10-20,Newcastle United,1.421,1.138,0.283
|
| 477 |
+
2025-10-20,Nottingham Forest,1.048,1.455,-0.407
|
| 478 |
+
2025-10-20,Sunderland,0.787,1.568,-0.781
|
| 479 |
+
2025-10-20,Tottenham Hotspur,1.379,1.32,0.059
|
| 480 |
+
2025-10-20,West Ham United,1.077,1.628,-0.551
|
| 481 |
+
2025-10-20,Wolverhampton Wanderers,0.891,1.415,-0.524
|
| 482 |
+
2025-10-24,AFC Bournemouth,1.335,1.335,0.0
|
| 483 |
+
2025-10-24,Arsenal,1.622,0.755,0.867
|
| 484 |
+
2025-10-24,Aston Villa,1.164,1.33,-0.166
|
| 485 |
+
2025-10-24,Brentford,1.315,1.336,-0.021
|
| 486 |
+
2025-10-24,Brighton and Hove Albion,1.375,1.276,0.099
|
| 487 |
+
2025-10-24,Burnley,0.766,1.506,-0.74
|
| 488 |
+
2025-10-24,Chelsea,1.578,1.308,0.271
|
| 489 |
+
2025-10-24,Crystal Palace,1.376,1.203,0.173
|
| 490 |
+
2025-10-24,Everton,1.064,1.255,-0.19
|
| 491 |
+
2025-10-24,Fulham,1.117,1.314,-0.197
|
| 492 |
+
2025-10-24,Leeds United,1.08,1.331,-0.252
|
| 493 |
+
2025-10-24,Liverpool,1.794,1.024,0.77
|
| 494 |
+
2025-10-24,Manchester City,1.775,0.965,0.81
|
| 495 |
+
2025-10-24,Manchester United,1.381,1.401,-0.021
|
| 496 |
+
2025-10-24,Newcastle United,1.421,1.138,0.283
|
| 497 |
+
2025-10-24,Nottingham Forest,1.048,1.455,-0.407
|
| 498 |
+
2025-10-24,Sunderland,0.787,1.568,-0.781
|
| 499 |
+
2025-10-24,Tottenham Hotspur,1.379,1.32,0.059
|
| 500 |
+
2025-10-24,West Ham United,1.068,1.631,-0.563
|
| 501 |
+
2025-10-24,Wolverhampton Wanderers,0.891,1.415,-0.524
|
| 502 |
+
2025-10-25,AFC Bournemouth,1.341,1.365,-0.023
|
| 503 |
+
2025-10-25,Arsenal,1.629,0.772,0.857
|
| 504 |
+
2025-10-25,Aston Villa,1.169,1.36,-0.19
|
| 505 |
+
2025-10-25,Brentford,1.392,1.382,0.01
|
| 506 |
+
2025-10-25,Brighton and Hove Albion,1.379,1.333,0.046
|
| 507 |
+
2025-10-25,Burnley,0.769,1.539,-0.77
|
| 508 |
+
2025-10-25,Chelsea,1.519,1.369,0.151
|
| 509 |
+
2025-10-25,Crystal Palace,1.382,1.23,0.153
|
| 510 |
+
2025-10-25,Everton,1.069,1.282,-0.213
|
| 511 |
+
2025-10-25,Fulham,1.138,1.359,-0.22
|
| 512 |
+
2025-10-25,Leeds United,1.084,1.361,-0.276
|
| 513 |
+
2025-10-25,Liverpool,1.829,1.097,0.732
|
| 514 |
+
2025-10-25,Manchester City,1.783,0.986,0.796
|
| 515 |
+
2025-10-25,Manchester United,1.412,1.433,-0.021
|
| 516 |
+
2025-10-25,Newcastle United,1.446,1.176,0.27
|
| 517 |
+
2025-10-25,Nottingham Forest,1.053,1.487,-0.434
|
| 518 |
+
2025-10-25,Sunderland,0.81,1.542,-0.732
|
| 519 |
+
2025-10-25,Tottenham Hotspur,1.385,1.349,0.036
|
| 520 |
+
2025-10-25,West Ham United,1.072,1.667,-0.595
|
| 521 |
+
2025-10-25,Wolverhampton Wanderers,0.894,1.446,-0.552
|
| 522 |
+
2025-10-26,AFC Bournemouth,1.295,1.315,-0.02
|
| 523 |
+
2025-10-26,Arsenal,1.567,0.75,0.818
|
| 524 |
+
2025-10-26,Aston Villa,1.154,1.3,-0.146
|
| 525 |
+
2025-10-26,Brentford,1.379,1.364,0.014
|
| 526 |
+
2025-10-26,Brighton and Hove Albion,1.367,1.316,0.05
|
| 527 |
+
2025-10-26,Burnley,0.793,1.56,-0.767
|
| 528 |
+
2025-10-26,Chelsea,1.505,1.351,0.154
|
| 529 |
+
2025-10-26,Crystal Palace,1.345,1.183,0.162
|
| 530 |
+
2025-10-26,Everton,1.052,1.303,-0.251
|
| 531 |
+
2025-10-26,Fulham,1.128,1.341,-0.213
|
| 532 |
+
2025-10-26,Leeds United,1.074,1.343,-0.269
|
| 533 |
+
2025-10-26,Liverpool,1.812,1.083,0.729
|
| 534 |
+
2025-10-26,Manchester City,1.709,0.97,0.739
|
| 535 |
+
2025-10-26,Manchester United,1.399,1.415,-0.016
|
| 536 |
+
2025-10-26,Newcastle United,1.433,1.161,0.272
|
| 537 |
+
2025-10-26,Nottingham Forest,1.016,1.44,-0.424
|
| 538 |
+
2025-10-26,Sunderland,0.803,1.522,-0.72
|
| 539 |
+
2025-10-26,Tottenham Hotspur,1.414,1.32,0.094
|
| 540 |
+
2025-10-26,West Ham United,1.062,1.645,-0.583
|
| 541 |
+
2025-10-26,Wolverhampton Wanderers,0.913,1.482,-0.569
|
| 542 |
+
2025-11-01,AFC Bournemouth,1.278,1.291,-0.013
|
| 543 |
+
2025-11-01,Arsenal,1.566,0.729,0.836
|
| 544 |
+
2025-11-01,Aston Villa,1.115,1.253,-0.138
|
| 545 |
+
2025-11-01,Brentford,1.321,1.319,0.002
|
| 546 |
+
2025-11-01,Brighton and Hove Albion,1.41,1.263,0.147
|
| 547 |
+
2025-11-01,Burnley,0.775,1.548,-0.773
|
| 548 |
+
2025-11-01,Chelsea,1.549,1.263,0.286
|
| 549 |
+
2025-11-01,Crystal Palace,1.3,1.13,0.17
|
| 550 |
+
2025-11-01,Everton,1.038,1.279,-0.241
|
| 551 |
+
2025-11-01,Fulham,1.13,1.287,-0.157
|
| 552 |
+
2025-11-01,Leeds United,1.035,1.372,-0.337
|
| 553 |
+
2025-11-01,Liverpool,1.749,1.042,0.707
|
| 554 |
+
2025-11-01,Manchester City,1.687,0.953,0.734
|
| 555 |
+
2025-11-01,Manchester United,1.373,1.416,-0.043
|
| 556 |
+
2025-11-01,Newcastle United,1.414,1.14,0.274
|
| 557 |
+
2025-11-01,Nottingham Forest,1.025,1.41,-0.385
|
| 558 |
+
2025-11-01,Sunderland,0.792,1.494,-0.702
|
| 559 |
+
2025-11-01,Tottenham Hotspur,1.322,1.338,-0.016
|
| 560 |
+
2025-11-01,West Ham United,1.048,1.615,-0.567
|
| 561 |
+
2025-11-01,Wolverhampton Wanderers,0.879,1.479,-0.6
|
| 562 |
+
2025-11-02,AFC Bournemouth,1.283,1.308,-0.025
|
| 563 |
+
2025-11-02,Arsenal,1.578,0.728,0.85
|
| 564 |
+
2025-11-02,Aston Villa,1.123,1.251,-0.128
|
| 565 |
+
2025-11-02,Brentford,1.331,1.317,0.015
|
| 566 |
+
2025-11-02,Brighton and Hove Albion,1.421,1.261,0.16
|
| 567 |
+
2025-11-02,Burnley,0.781,1.545,-0.764
|
| 568 |
+
2025-11-02,Chelsea,1.561,1.261,0.3
|
| 569 |
+
2025-11-02,Crystal Palace,1.31,1.128,0.181
|
| 570 |
+
2025-11-02,Everton,1.046,1.277,-0.231
|
| 571 |
+
2025-11-02,Fulham,1.139,1.285,-0.146
|
| 572 |
+
2025-11-02,Leeds United,1.042,1.369,-0.327
|
| 573 |
+
2025-11-02,Liverpool,1.762,1.04,0.722
|
| 574 |
+
2025-11-02,Manchester City,1.727,0.948,0.779
|
| 575 |
+
2025-11-02,Manchester United,1.383,1.413,-0.03
|
| 576 |
+
2025-11-02,Newcastle United,1.377,1.178,0.199
|
| 577 |
+
2025-11-02,Nottingham Forest,1.032,1.407,-0.375
|
| 578 |
+
2025-11-02,Sunderland,0.798,1.492,-0.694
|
| 579 |
+
2025-11-02,Tottenham Hotspur,1.332,1.335,-0.004
|
| 580 |
+
2025-11-02,West Ham United,1.096,1.565,-0.469
|
| 581 |
+
2025-11-02,Wolverhampton Wanderers,0.886,1.476,-0.591
|
| 582 |
+
2025-11-03,AFC Bournemouth,1.283,1.308,-0.025
|
| 583 |
+
2025-11-03,Arsenal,1.578,0.728,0.85
|
| 584 |
+
2025-11-03,Aston Villa,1.123,1.251,-0.128
|
| 585 |
+
2025-11-03,Brentford,1.331,1.317,0.015
|
| 586 |
+
2025-11-03,Brighton and Hove Albion,1.421,1.261,0.16
|
| 587 |
+
2025-11-03,Burnley,0.781,1.545,-0.764
|
| 588 |
+
2025-11-03,Chelsea,1.561,1.261,0.3
|
| 589 |
+
2025-11-03,Crystal Palace,1.31,1.128,0.181
|
| 590 |
+
2025-11-03,Everton,1.037,1.282,-0.245
|
| 591 |
+
2025-11-03,Fulham,1.139,1.285,-0.146
|
| 592 |
+
2025-11-03,Leeds United,1.042,1.369,-0.327
|
| 593 |
+
2025-11-03,Liverpool,1.762,1.04,0.722
|
| 594 |
+
2025-11-03,Manchester City,1.727,0.948,0.779
|
| 595 |
+
2025-11-03,Manchester United,1.383,1.413,-0.03
|
| 596 |
+
2025-11-03,Newcastle United,1.377,1.178,0.199
|
| 597 |
+
2025-11-03,Nottingham Forest,1.032,1.407,-0.375
|
| 598 |
+
2025-11-03,Sunderland,0.802,1.48,-0.678
|
| 599 |
+
2025-11-03,Tottenham Hotspur,1.332,1.335,-0.004
|
| 600 |
+
2025-11-03,West Ham United,1.096,1.565,-0.469
|
| 601 |
+
2025-11-03,Wolverhampton Wanderers,0.886,1.476,-0.591
|
| 602 |
+
2025-11-08,AFC Bournemouth,1.291,1.308,-0.017
|
| 603 |
+
2025-11-08,Arsenal,1.597,0.74,0.857
|
| 604 |
+
2025-11-08,Aston Villa,1.13,1.251,-0.121
|
| 605 |
+
2025-11-08,Brentford,1.339,1.317,0.022
|
| 606 |
+
2025-11-08,Brighton and Hove Albion,1.429,1.261,0.168
|
| 607 |
+
2025-11-08,Burnley,0.798,1.609,-0.811
|
| 608 |
+
2025-11-08,Chelsea,1.625,1.233,0.392
|
| 609 |
+
2025-11-08,Crystal Palace,1.317,1.128,0.189
|
| 610 |
+
2025-11-08,Everton,1.056,1.249,-0.193
|
| 611 |
+
2025-11-08,Fulham,1.113,1.3,-0.187
|
| 612 |
+
2025-11-08,Leeds United,1.049,1.369,-0.321
|
| 613 |
+
2025-11-08,Liverpool,1.773,1.04,0.732
|
| 614 |
+
2025-11-08,Manchester City,1.737,0.948,0.789
|
| 615 |
+
2025-11-08,Manchester United,1.374,1.399,-0.025
|
| 616 |
+
2025-11-08,Newcastle United,1.385,1.178,0.207
|
| 617 |
+
2025-11-08,Nottingham Forest,1.039,1.407,-0.369
|
| 618 |
+
2025-11-08,Sunderland,0.819,1.488,-0.67
|
| 619 |
+
2025-11-08,Tottenham Hotspur,1.323,1.325,-0.002
|
| 620 |
+
2025-11-08,West Ham United,1.154,1.589,-0.435
|
| 621 |
+
2025-11-08,Wolverhampton Wanderers,0.869,1.52,-0.651
|
| 622 |
+
2025-11-09,AFC Bournemouth,1.275,1.359,-0.084
|
| 623 |
+
2025-11-09,Arsenal,1.587,0.739,0.848
|
| 624 |
+
2025-11-09,Aston Villa,1.169,1.239,-0.071
|
| 625 |
+
2025-11-09,Brentford,1.38,1.29,0.09
|
| 626 |
+
2025-11-09,Brighton and Hove Albion,1.373,1.217,0.156
|
| 627 |
+
2025-11-09,Burnley,0.792,1.608,-0.815
|
| 628 |
+
2025-11-09,Chelsea,1.614,1.232,0.382
|
| 629 |
+
2025-11-09,Crystal Palace,1.26,1.094,0.166
|
| 630 |
+
2025-11-09,Everton,1.049,1.248,-0.199
|
| 631 |
+
2025-11-09,Fulham,1.106,1.299,-0.193
|
| 632 |
+
2025-11-09,Leeds United,1.03,1.426,-0.396
|
| 633 |
+
2025-11-09,Liverpool,1.712,1.053,0.659
|
| 634 |
+
2025-11-09,Manchester City,1.746,0.922,0.823
|
| 635 |
+
2025-11-09,Manchester United,1.365,1.398,-0.033
|
| 636 |
+
2025-11-09,Newcastle United,1.346,1.217,0.128
|
| 637 |
+
2025-11-09,Nottingham Forest,1.08,1.393,-0.312
|
| 638 |
+
2025-11-09,Sunderland,0.813,1.487,-0.674
|
| 639 |
+
2025-11-09,Tottenham Hotspur,1.314,1.324,-0.01
|
| 640 |
+
2025-11-09,West Ham United,1.146,1.587,-0.441
|
| 641 |
+
2025-11-09,Wolverhampton Wanderers,0.864,1.519,-0.655
|
| 642 |
+
2025-11-22,AFC Bournemouth,1.319,1.392,-0.073
|
| 643 |
+
2025-11-22,Arsenal,1.567,0.757,0.811
|
| 644 |
+
2025-11-22,Aston Villa,1.154,1.268,-0.114
|
| 645 |
+
2025-11-22,Brentford,1.376,1.316,0.061
|
| 646 |
+
2025-11-22,Brighton and Hove Albion,1.349,1.254,0.095
|
| 647 |
+
2025-11-22,Burnley,0.766,1.633,-0.867
|
| 648 |
+
2025-11-22,Chelsea,1.578,1.236,0.342
|
| 649 |
+
2025-11-22,Crystal Palace,1.245,1.124,0.12
|
| 650 |
+
2025-11-22,Everton,1.036,1.277,-0.241
|
| 651 |
+
2025-11-22,Fulham,1.102,1.301,-0.199
|
| 652 |
+
2025-11-22,Leeds United,1.017,1.46,-0.442
|
| 653 |
+
2025-11-22,Liverpool,1.637,1.119,0.518
|
| 654 |
+
2025-11-22,Manchester City,1.744,0.972,0.772
|
| 655 |
+
2025-11-22,Manchester United,1.349,1.431,-0.082
|
| 656 |
+
2025-11-22,Newcastle United,1.375,1.255,0.12
|
| 657 |
+
2025-11-22,Nottingham Forest,1.11,1.38,-0.27
|
| 658 |
+
2025-11-22,Sunderland,0.784,1.529,-0.745
|
| 659 |
+
2025-11-22,Tottenham Hotspur,1.298,1.355,-0.057
|
| 660 |
+
2025-11-22,West Ham United,1.13,1.686,-0.556
|
| 661 |
+
2025-11-22,Wolverhampton Wanderers,0.861,1.558,-0.697
|
| 662 |
+
2025-11-23,AFC Bournemouth,1.319,1.386,-0.067
|
| 663 |
+
2025-11-23,Arsenal,1.602,0.748,0.854
|
| 664 |
+
2025-11-23,Aston Villa,1.172,1.271,-0.099
|
| 665 |
+
2025-11-23,Brentford,1.376,1.31,0.067
|
| 666 |
+
2025-11-23,Brighton and Hove Albion,1.349,1.248,0.101
|
| 667 |
+
2025-11-23,Burnley,0.766,1.625,-0.859
|
| 668 |
+
2025-11-23,Chelsea,1.578,1.23,0.348
|
| 669 |
+
2025-11-23,Crystal Palace,1.245,1.119,0.126
|
| 670 |
+
2025-11-23,Everton,1.036,1.271,-0.235
|
| 671 |
+
2025-11-23,Fulham,1.102,1.295,-0.193
|
| 672 |
+
2025-11-23,Leeds United,1.027,1.474,-0.447
|
| 673 |
+
2025-11-23,Liverpool,1.637,1.114,0.523
|
| 674 |
+
2025-11-23,Manchester City,1.744,0.967,0.777
|
| 675 |
+
2025-11-23,Manchester United,1.349,1.424,-0.076
|
| 676 |
+
2025-11-23,Newcastle United,1.375,1.249,0.126
|
| 677 |
+
2025-11-23,Nottingham Forest,1.11,1.373,-0.263
|
| 678 |
+
2025-11-23,Sunderland,0.784,1.522,-0.738
|
| 679 |
+
2025-11-23,Tottenham Hotspur,1.286,1.38,-0.094
|
| 680 |
+
2025-11-23,West Ham United,1.13,1.678,-0.548
|
| 681 |
+
2025-11-23,Wolverhampton Wanderers,0.861,1.55,-0.69
|
| 682 |
+
2025-11-24,AFC Bournemouth,1.319,1.386,-0.067
|
| 683 |
+
2025-11-24,Arsenal,1.602,0.748,0.854
|
| 684 |
+
2025-11-24,Aston Villa,1.172,1.271,-0.099
|
| 685 |
+
2025-11-24,Brentford,1.376,1.31,0.067
|
| 686 |
+
2025-11-24,Brighton and Hove Albion,1.349,1.248,0.101
|
| 687 |
+
2025-11-24,Burnley,0.766,1.625,-0.859
|
| 688 |
+
2025-11-24,Chelsea,1.578,1.23,0.348
|
| 689 |
+
2025-11-24,Crystal Palace,1.245,1.119,0.126
|
| 690 |
+
2025-11-24,Everton,1.014,1.246,-0.232
|
| 691 |
+
2025-11-24,Fulham,1.102,1.295,-0.193
|
| 692 |
+
2025-11-24,Leeds United,1.027,1.474,-0.447
|
| 693 |
+
2025-11-24,Liverpool,1.637,1.114,0.523
|
| 694 |
+
2025-11-24,Manchester City,1.744,0.967,0.777
|
| 695 |
+
2025-11-24,Manchester United,1.323,1.399,-0.077
|
| 696 |
+
2025-11-24,Newcastle United,1.375,1.249,0.126
|
| 697 |
+
2025-11-24,Nottingham Forest,1.11,1.373,-0.263
|
| 698 |
+
2025-11-24,Sunderland,0.784,1.522,-0.738
|
| 699 |
+
2025-11-24,Tottenham Hotspur,1.286,1.38,-0.094
|
| 700 |
+
2025-11-24,West Ham United,1.13,1.678,-0.548
|
| 701 |
+
2025-11-24,Wolverhampton Wanderers,0.861,1.55,-0.69
|
| 702 |
+
2025-11-29,AFC Bournemouth,1.339,1.372,-0.033
|
| 703 |
+
2025-11-29,Arsenal,1.611,0.72,0.891
|
| 704 |
+
2025-11-29,Aston Villa,1.179,1.224,-0.045
|
| 705 |
+
2025-11-29,Brentford,1.42,1.268,0.152
|
| 706 |
+
2025-11-29,Brighton and Hove Albion,1.357,1.202,0.155
|
| 707 |
+
2025-11-29,Burnley,0.776,1.602,-0.826
|
| 708 |
+
2025-11-29,Chelsea,1.587,1.184,0.403
|
| 709 |
+
2025-11-29,Crystal Palace,1.252,1.077,0.175
|
| 710 |
+
2025-11-29,Everton,1.013,1.253,-0.24
|
| 711 |
+
2025-11-29,Fulham,1.103,1.226,-0.123
|
| 712 |
+
2025-11-29,Leeds United,1.065,1.445,-0.379
|
| 713 |
+
2025-11-29,Liverpool,1.647,1.072,0.574
|
| 714 |
+
2025-11-29,Manchester City,1.791,0.958,0.833
|
| 715 |
+
2025-11-29,Manchester United,1.33,1.347,-0.017
|
| 716 |
+
2025-11-29,Newcastle United,1.446,1.195,0.251
|
| 717 |
+
2025-11-29,Nottingham Forest,1.116,1.322,-0.205
|
| 718 |
+
2025-11-29,Sunderland,0.812,1.478,-0.666
|
| 719 |
+
2025-11-29,Tottenham Hotspur,1.27,1.327,-0.057
|
| 720 |
+
2025-11-29,West Ham United,1.137,1.615,-0.478
|
| 721 |
+
2025-11-29,Wolverhampton Wanderers,0.866,1.492,-0.627
|
| 722 |
+
2025-11-30,AFC Bournemouth,1.339,1.369,-0.03
|
| 723 |
+
2025-11-30,Arsenal,1.593,0.713,0.88
|
| 724 |
+
2025-11-30,Aston Villa,1.152,1.201,-0.049
|
| 725 |
+
2025-11-30,Brentford,1.42,1.265,0.155
|
| 726 |
+
2025-11-30,Brighton and Hove Albion,1.382,1.171,0.211
|
| 727 |
+
2025-11-30,Burnley,0.776,1.598,-0.822
|
| 728 |
+
2025-11-30,Chelsea,1.575,1.169,0.407
|
| 729 |
+
2025-11-30,Crystal Palace,1.245,1.086,0.159
|
| 730 |
+
2025-11-30,Everton,1.013,1.25,-0.237
|
| 731 |
+
2025-11-30,Fulham,1.103,1.222,-0.119
|
| 732 |
+
2025-11-30,Leeds United,1.065,1.441,-0.376
|
| 733 |
+
2025-11-30,Liverpool,1.618,1.038,0.58
|
| 734 |
+
2025-11-30,Manchester City,1.791,0.955,0.835
|
| 735 |
+
2025-11-30,Manchester United,1.344,1.335,0.009
|
| 736 |
+
2025-11-30,Newcastle United,1.446,1.192,0.254
|
| 737 |
+
2025-11-30,Nottingham Forest,1.09,1.34,-0.25
|
| 738 |
+
2025-11-30,Sunderland,0.812,1.474,-0.662
|
| 739 |
+
2025-11-30,Tottenham Hotspur,1.27,1.323,-0.053
|
| 740 |
+
2025-11-30,West Ham United,1.1,1.587,-0.488
|
| 741 |
+
2025-11-30,Wolverhampton Wanderers,0.851,1.457,-0.606
|
| 742 |
+
2025-12-02,AFC Bournemouth,1.297,1.377,-0.079
|
| 743 |
+
2025-12-02,Arsenal,1.614,0.714,0.9
|
| 744 |
+
2025-12-02,Aston Villa,1.167,1.203,-0.035
|
| 745 |
+
2025-12-02,Brentford,1.439,1.267,0.172
|
| 746 |
+
2025-12-02,Brighton and Hove Albion,1.4,1.173,0.227
|
| 747 |
+
2025-12-02,Burnley,0.786,1.6,-0.814
|
| 748 |
+
2025-12-02,Chelsea,1.596,1.17,0.426
|
| 749 |
+
2025-12-02,Crystal Palace,1.262,1.088,0.174
|
| 750 |
+
2025-12-02,Everton,1.033,1.202,-0.17
|
| 751 |
+
2025-12-02,Fulham,1.155,1.285,-0.13
|
| 752 |
+
2025-12-02,Leeds United,1.079,1.443,-0.363
|
| 753 |
+
2025-12-02,Liverpool,1.639,1.039,0.6
|
| 754 |
+
2025-12-02,Manchester City,1.906,0.991,0.915
|
| 755 |
+
2025-12-02,Manchester United,1.362,1.337,0.025
|
| 756 |
+
2025-12-02,Newcastle United,1.475,1.198,0.277
|
| 757 |
+
2025-12-02,Nottingham Forest,1.104,1.342,-0.238
|
| 758 |
+
2025-12-02,Sunderland,0.822,1.476,-0.654
|
| 759 |
+
2025-12-02,Tottenham Hotspur,1.291,1.332,-0.042
|
| 760 |
+
2025-12-02,West Ham United,1.114,1.59,-0.475
|
| 761 |
+
2025-12-02,Wolverhampton Wanderers,0.862,1.459,-0.597
|
| 762 |
+
2025-12-03,AFC Bournemouth,1.296,1.368,-0.072
|
| 763 |
+
2025-12-03,Arsenal,1.608,0.697,0.911
|
| 764 |
+
2025-12-03,Aston Villa,1.244,1.227,0.017
|
| 765 |
+
2025-12-03,Brentford,1.41,1.256,0.154
|
| 766 |
+
2025-12-03,Brighton and Hove Albion,1.438,1.237,0.2
|
| 767 |
+
2025-12-03,Burnley,0.78,1.547,-0.767
|
| 768 |
+
2025-12-03,Chelsea,1.55,1.22,0.33
|
| 769 |
+
2025-12-03,Crystal Palace,1.219,1.072,0.147
|
| 770 |
+
2025-12-03,Everton,1.031,1.195,-0.163
|
| 771 |
+
2025-12-03,Fulham,1.154,1.277,-0.123
|
| 772 |
+
2025-12-03,Leeds United,1.137,1.399,-0.261
|
| 773 |
+
2025-12-03,Liverpool,1.596,1.032,0.564
|
| 774 |
+
2025-12-03,Manchester City,1.904,0.985,0.919
|
| 775 |
+
2025-12-03,Manchester United,1.361,1.329,0.032
|
| 776 |
+
2025-12-03,Newcastle United,1.473,1.191,0.283
|
| 777 |
+
2025-12-03,Nottingham Forest,1.088,1.311,-0.223
|
| 778 |
+
2025-12-03,Sunderland,0.82,1.43,-0.61
|
| 779 |
+
2025-12-03,Tottenham Hotspur,1.289,1.324,-0.035
|
| 780 |
+
2025-12-03,West Ham United,1.113,1.58,-0.467
|
| 781 |
+
2025-12-03,Wolverhampton Wanderers,0.846,1.433,-0.586
|
| 782 |
+
2025-12-04,AFC Bournemouth,1.296,1.368,-0.072
|
| 783 |
+
2025-12-04,Arsenal,1.608,0.697,0.911
|
| 784 |
+
2025-12-04,Aston Villa,1.244,1.227,0.017
|
| 785 |
+
2025-12-04,Brentford,1.41,1.256,0.154
|
| 786 |
+
2025-12-04,Brighton and Hove Albion,1.438,1.237,0.2
|
| 787 |
+
2025-12-04,Burnley,0.78,1.547,-0.767
|
| 788 |
+
2025-12-04,Chelsea,1.55,1.22,0.33
|
| 789 |
+
2025-12-04,Crystal Palace,1.219,1.072,0.147
|
| 790 |
+
2025-12-04,Everton,1.031,1.195,-0.163
|
| 791 |
+
2025-12-04,Fulham,1.154,1.277,-0.123
|
| 792 |
+
2025-12-04,Leeds United,1.137,1.399,-0.261
|
| 793 |
+
2025-12-04,Liverpool,1.596,1.032,0.564
|
| 794 |
+
2025-12-04,Manchester City,1.904,0.985,0.919
|
| 795 |
+
2025-12-04,Manchester United,1.332,1.319,0.013
|
| 796 |
+
2025-12-04,Newcastle United,1.473,1.191,0.283
|
| 797 |
+
2025-12-04,Nottingham Forest,1.088,1.311,-0.223
|
| 798 |
+
2025-12-04,Sunderland,0.82,1.43,-0.61
|
| 799 |
+
2025-12-04,Tottenham Hotspur,1.289,1.324,-0.035
|
| 800 |
+
2025-12-04,West Ham United,1.103,1.548,-0.445
|
| 801 |
+
2025-12-04,Wolverhampton Wanderers,0.846,1.433,-0.586
|
| 802 |
+
2025-12-06,AFC Bournemouth,1.278,1.342,-0.063
|
| 803 |
+
2025-12-06,Arsenal,1.621,0.734,0.887
|
| 804 |
+
2025-12-06,Aston Villa,1.308,1.243,0.065
|
| 805 |
+
2025-12-06,Brentford,1.36,1.296,0.064
|
| 806 |
+
2025-12-06,Brighton and Hove Albion,1.448,1.255,0.193
|
| 807 |
+
2025-12-06,Burnley,0.803,1.551,-0.748
|
| 808 |
+
2025-12-06,Chelsea,1.507,1.211,0.296
|
| 809 |
+
2025-12-06,Crystal Palace,1.228,1.087,0.141
|
| 810 |
+
2025-12-06,Everton,1.054,1.186,-0.131
|
| 811 |
+
2025-12-06,Fulham,1.162,1.295,-0.133
|
| 812 |
+
2025-12-06,Leeds United,1.178,1.446,-0.268
|
| 813 |
+
2025-12-06,Liverpool,1.641,1.076,0.565
|
| 814 |
+
2025-12-06,Manchester City,1.918,0.991,0.927
|
| 815 |
+
2025-12-06,Manchester United,1.341,1.337,0.004
|
| 816 |
+
2025-12-06,Newcastle United,1.464,1.229,0.234
|
| 817 |
+
2025-12-06,Nottingham Forest,1.071,1.352,-0.281
|
| 818 |
+
2025-12-06,Sunderland,0.82,1.451,-0.631
|
| 819 |
+
2025-12-06,Tottenham Hotspur,1.327,1.291,0.036
|
| 820 |
+
2025-12-06,West Ham United,1.111,1.57,-0.459
|
| 821 |
+
2025-12-06,Wolverhampton Wanderers,0.852,1.453,-0.6
|
| 822 |
+
2025-12-07,AFC Bournemouth,1.279,1.342,-0.063
|
| 823 |
+
2025-12-07,Arsenal,1.622,0.734,0.888
|
| 824 |
+
2025-12-07,Aston Villa,1.308,1.243,0.066
|
| 825 |
+
2025-12-07,Brentford,1.36,1.296,0.064
|
| 826 |
+
2025-12-07,Brighton and Hove Albion,1.417,1.256,0.162
|
| 827 |
+
2025-12-07,Burnley,0.803,1.551,-0.748
|
| 828 |
+
2025-12-07,Chelsea,1.508,1.211,0.297
|
| 829 |
+
2025-12-07,Crystal Palace,1.25,1.076,0.174
|
| 830 |
+
2025-12-07,Everton,1.055,1.186,-0.131
|
| 831 |
+
2025-12-07,Fulham,1.15,1.316,-0.166
|
| 832 |
+
2025-12-07,Leeds United,1.179,1.446,-0.267
|
| 833 |
+
2025-12-07,Liverpool,1.642,1.076,0.565
|
| 834 |
+
2025-12-07,Manchester City,1.919,0.991,0.928
|
| 835 |
+
2025-12-07,Manchester United,1.342,1.337,0.005
|
| 836 |
+
2025-12-07,Newcastle United,1.464,1.229,0.235
|
| 837 |
+
2025-12-07,Nottingham Forest,1.072,1.352,-0.28
|
| 838 |
+
2025-12-07,Sunderland,0.82,1.451,-0.631
|
| 839 |
+
2025-12-07,Tottenham Hotspur,1.328,1.291,0.037
|
| 840 |
+
2025-12-07,West Ham United,1.113,1.537,-0.424
|
| 841 |
+
2025-12-07,Wolverhampton Wanderers,0.853,1.453,-0.6
|
| 842 |
+
2025-12-08,AFC Bournemouth,1.279,1.342,-0.063
|
| 843 |
+
2025-12-08,Arsenal,1.622,0.734,0.888
|
| 844 |
+
2025-12-08,Aston Villa,1.308,1.243,0.066
|
| 845 |
+
2025-12-08,Brentford,1.36,1.296,0.064
|
| 846 |
+
2025-12-08,Brighton and Hove Albion,1.417,1.256,0.162
|
| 847 |
+
2025-12-08,Burnley,0.803,1.551,-0.748
|
| 848 |
+
2025-12-08,Chelsea,1.508,1.211,0.297
|
| 849 |
+
2025-12-08,Crystal Palace,1.25,1.076,0.174
|
| 850 |
+
2025-12-08,Everton,1.055,1.186,-0.131
|
| 851 |
+
2025-12-08,Fulham,1.15,1.316,-0.166
|
| 852 |
+
2025-12-08,Leeds United,1.179,1.446,-0.267
|
| 853 |
+
2025-12-08,Liverpool,1.642,1.076,0.565
|
| 854 |
+
2025-12-08,Manchester City,1.919,0.991,0.928
|
| 855 |
+
2025-12-08,Manchester United,1.463,1.321,0.142
|
| 856 |
+
2025-12-08,Newcastle United,1.464,1.229,0.235
|
| 857 |
+
2025-12-08,Nottingham Forest,1.072,1.352,-0.28
|
| 858 |
+
2025-12-08,Sunderland,0.82,1.451,-0.631
|
| 859 |
+
2025-12-08,Tottenham Hotspur,1.328,1.291,0.037
|
| 860 |
+
2025-12-08,West Ham United,1.113,1.537,-0.424
|
| 861 |
+
2025-12-08,Wolverhampton Wanderers,0.841,1.568,-0.727
|
| 862 |
+
2025-12-13,AFC Bournemouth,1.279,1.342,-0.063
|
| 863 |
+
2025-12-13,Arsenal,1.569,0.738,0.831
|
| 864 |
+
2025-12-13,Aston Villa,1.308,1.243,0.066
|
| 865 |
+
2025-12-13,Brentford,1.36,1.296,0.064
|
| 866 |
+
2025-12-13,Brighton and Hove Albion,1.417,1.257,0.16
|
| 867 |
+
2025-12-13,Burnley,0.837,1.604,-0.767
|
| 868 |
+
2025-12-13,Chelsea,1.531,1.197,0.334
|
| 869 |
+
2025-12-13,Crystal Palace,1.25,1.076,0.174
|
| 870 |
+
2025-12-13,Everton,1.043,1.201,-0.158
|
| 871 |
+
2025-12-13,Fulham,1.192,1.365,-0.173
|
| 872 |
+
2025-12-13,Leeds United,1.179,1.446,-0.267
|
| 873 |
+
2025-12-13,Liverpool,1.645,1.073,0.573
|
| 874 |
+
2025-12-13,Manchester City,1.919,0.991,0.928
|
| 875 |
+
2025-12-13,Manchester United,1.463,1.321,0.142
|
| 876 |
+
2025-12-13,Newcastle United,1.464,1.229,0.235
|
| 877 |
+
2025-12-13,Nottingham Forest,1.072,1.352,-0.28
|
| 878 |
+
2025-12-13,Sunderland,0.82,1.451,-0.631
|
| 879 |
+
2025-12-13,Tottenham Hotspur,1.328,1.291,0.037
|
| 880 |
+
2025-12-13,West Ham United,1.113,1.537,-0.424
|
| 881 |
+
2025-12-13,Wolverhampton Wanderers,0.845,1.525,-0.68
|
| 882 |
+
2025-12-14,AFC Bournemouth,1.289,1.327,-0.039
|
| 883 |
+
2025-12-14,Arsenal,1.581,0.73,0.851
|
| 884 |
+
2025-12-14,Aston Villa,1.316,1.235,0.081
|
| 885 |
+
2025-12-14,Brentford,1.323,1.286,0.037
|
| 886 |
+
2025-12-14,Brighton and Hove Albion,1.428,1.244,0.184
|
| 887 |
+
2025-12-14,Burnley,0.844,1.587,-0.743
|
| 888 |
+
2025-12-14,Chelsea,1.543,1.184,0.359
|
| 889 |
+
2025-12-14,Crystal Palace,1.259,1.076,0.183
|
| 890 |
+
2025-12-14,Everton,1.051,1.188,-0.137
|
| 891 |
+
2025-12-14,Fulham,1.201,1.35,-0.149
|
| 892 |
+
2025-12-14,Leeds United,1.192,1.387,-0.195
|
| 893 |
+
2025-12-14,Liverpool,1.658,1.061,0.597
|
| 894 |
+
2025-12-14,Manchester City,1.948,0.977,0.971
|
| 895 |
+
2025-12-14,Manchester United,1.474,1.307,0.167
|
| 896 |
+
2025-12-14,Newcastle United,1.408,1.203,0.206
|
| 897 |
+
2025-12-14,Nottingham Forest,1.126,1.293,-0.167
|
| 898 |
+
2025-12-14,Sunderland,0.815,1.376,-0.561
|
| 899 |
+
2025-12-14,Tottenham Hotspur,1.29,1.327,-0.037
|
| 900 |
+
2025-12-14,West Ham United,1.125,1.525,-0.399
|
| 901 |
+
2025-12-14,Wolverhampton Wanderers,0.851,1.509,-0.657
|
| 902 |
+
2025-12-15,AFC Bournemouth,1.35,1.41,-0.061
|
| 903 |
+
2025-12-15,Arsenal,1.581,0.737,0.843
|
| 904 |
+
2025-12-15,Aston Villa,1.316,1.248,0.068
|
| 905 |
+
2025-12-15,Brentford,1.323,1.299,0.024
|
| 906 |
+
2025-12-15,Brighton and Hove Albion,1.428,1.257,0.171
|
| 907 |
+
2025-12-15,Burnley,0.844,1.604,-0.76
|
| 908 |
+
2025-12-15,Chelsea,1.543,1.196,0.347
|
| 909 |
+
2025-12-15,Crystal Palace,1.259,1.087,0.172
|
| 910 |
+
2025-12-15,Everton,1.051,1.2,-0.149
|
| 911 |
+
2025-12-15,Fulham,1.201,1.365,-0.163
|
| 912 |
+
2025-12-15,Leeds United,1.192,1.402,-0.209
|
| 913 |
+
2025-12-15,Liverpool,1.658,1.072,0.586
|
| 914 |
+
2025-12-15,Manchester City,1.948,0.987,0.961
|
| 915 |
+
2025-12-15,Manchester United,1.556,1.381,0.175
|
| 916 |
+
2025-12-15,Newcastle United,1.408,1.216,0.193
|
| 917 |
+
2025-12-15,Nottingham Forest,1.126,1.307,-0.181
|
| 918 |
+
2025-12-15,Sunderland,0.815,1.391,-0.575
|
| 919 |
+
2025-12-15,Tottenham Hotspur,1.29,1.341,-0.051
|
| 920 |
+
2025-12-15,West Ham United,1.125,1.541,-0.415
|
| 921 |
+
2025-12-15,Wolverhampton Wanderers,0.851,1.525,-0.673
|
| 922 |
+
2025-12-20,AFC Bournemouth,1.324,1.391,-0.068
|
| 923 |
+
2025-12-20,Arsenal,1.606,0.721,0.885
|
| 924 |
+
2025-12-20,Aston Villa,1.328,1.242,0.087
|
| 925 |
+
2025-12-20,Brentford,1.336,1.283,0.054
|
| 926 |
+
2025-12-20,Brighton and Hove Albion,1.389,1.251,0.138
|
| 927 |
+
2025-12-20,Burnley,0.842,1.555,-0.713
|
| 928 |
+
2025-12-20,Chelsea,1.563,1.212,0.35
|
| 929 |
+
2025-12-20,Crystal Palace,1.27,1.146,0.124
|
| 930 |
+
2025-12-20,Everton,1.041,1.199,-0.158
|
| 931 |
+
2025-12-20,Fulham,1.213,1.358,-0.145
|
| 932 |
+
2025-12-20,Leeds United,1.28,1.393,-0.112
|
| 933 |
+
2025-12-20,Liverpool,1.648,1.06,0.588
|
| 934 |
+
2025-12-20,Manchester City,1.938,0.974,0.964
|
| 935 |
+
2025-12-20,Manchester United,1.571,1.375,0.197
|
| 936 |
+
2025-12-20,Newcastle United,1.453,1.214,0.239
|
| 937 |
+
2025-12-20,Nottingham Forest,1.137,1.3,-0.163
|
| 938 |
+
2025-12-20,Sunderland,0.826,1.336,-0.51
|
| 939 |
+
2025-12-20,Tottenham Hotspur,1.295,1.318,-0.023
|
| 940 |
+
2025-12-20,West Ham United,1.128,1.516,-0.388
|
| 941 |
+
2025-12-20,Wolverhampton Wanderers,0.854,1.52,-0.665
|
| 942 |
+
2025-12-21,AFC Bournemouth,1.324,1.391,-0.068
|
| 943 |
+
2025-12-21,Arsenal,1.606,0.721,0.885
|
| 944 |
+
2025-12-21,Aston Villa,1.328,1.228,0.101
|
| 945 |
+
2025-12-21,Brentford,1.336,1.283,0.054
|
| 946 |
+
2025-12-21,Brighton and Hove Albion,1.389,1.251,0.138
|
| 947 |
+
2025-12-21,Burnley,0.842,1.555,-0.713
|
| 948 |
+
2025-12-21,Chelsea,1.563,1.212,0.35
|
| 949 |
+
2025-12-21,Crystal Palace,1.27,1.146,0.124
|
| 950 |
+
2025-12-21,Everton,1.041,1.199,-0.158
|
| 951 |
+
2025-12-21,Fulham,1.213,1.358,-0.145
|
| 952 |
+
2025-12-21,Leeds United,1.28,1.393,-0.112
|
| 953 |
+
2025-12-21,Liverpool,1.648,1.06,0.588
|
| 954 |
+
2025-12-21,Manchester City,1.938,0.974,0.964
|
| 955 |
+
2025-12-21,Manchester United,1.551,1.375,0.175
|
| 956 |
+
2025-12-21,Newcastle United,1.453,1.214,0.239
|
| 957 |
+
2025-12-21,Nottingham Forest,1.137,1.3,-0.163
|
| 958 |
+
2025-12-21,Sunderland,0.826,1.336,-0.51
|
| 959 |
+
2025-12-21,Tottenham Hotspur,1.295,1.318,-0.023
|
| 960 |
+
2025-12-21,West Ham United,1.128,1.516,-0.388
|
| 961 |
+
2025-12-21,Wolverhampton Wanderers,0.854,1.52,-0.665
|
| 962 |
+
2025-12-22,AFC Bournemouth,1.315,1.391,-0.077
|
| 963 |
+
2025-12-22,Arsenal,1.595,0.721,0.874
|
| 964 |
+
2025-12-22,Aston Villa,1.319,1.228,0.092
|
| 965 |
+
2025-12-22,Brentford,1.327,1.283,0.045
|
| 966 |
+
2025-12-22,Brighton and Hove Albion,1.38,1.251,0.129
|
| 967 |
+
2025-12-22,Burnley,0.837,1.555,-0.719
|
| 968 |
+
2025-12-22,Chelsea,1.552,1.212,0.34
|
| 969 |
+
2025-12-22,Crystal Palace,1.261,1.146,0.115
|
| 970 |
+
2025-12-22,Everton,1.034,1.199,-0.166
|
| 971 |
+
2025-12-22,Fulham,1.198,1.326,-0.128
|
| 972 |
+
2025-12-22,Leeds United,1.271,1.393,-0.121
|
| 973 |
+
2025-12-22,Liverpool,1.637,1.06,0.576
|
| 974 |
+
2025-12-22,Manchester City,1.925,0.974,0.951
|
| 975 |
+
2025-12-22,Manchester United,1.54,1.375,0.165
|
| 976 |
+
2025-12-22,Newcastle United,1.443,1.214,0.229
|
| 977 |
+
2025-12-22,Nottingham Forest,1.101,1.293,-0.192
|
| 978 |
+
2025-12-22,Sunderland,0.82,1.336,-0.516
|
| 979 |
+
2025-12-22,Tottenham Hotspur,1.286,1.318,-0.032
|
| 980 |
+
2025-12-22,West Ham United,1.121,1.516,-0.396
|
| 981 |
+
2025-12-22,Wolverhampton Wanderers,0.849,1.52,-0.671
|
| 982 |
+
2025-12-26,AFC Bournemouth,1.315,1.391,-0.077
|
| 983 |
+
2025-12-26,Arsenal,1.595,0.721,0.874
|
| 984 |
+
2025-12-26,Aston Villa,1.319,1.228,0.092
|
| 985 |
+
2025-12-26,Brentford,1.327,1.283,0.045
|
| 986 |
+
2025-12-26,Brighton and Hove Albion,1.38,1.251,0.129
|
| 987 |
+
2025-12-26,Burnley,0.837,1.555,-0.719
|
| 988 |
+
2025-12-26,Chelsea,1.552,1.212,0.34
|
| 989 |
+
2025-12-26,Crystal Palace,1.261,1.146,0.115
|
| 990 |
+
2025-12-26,Everton,1.034,1.199,-0.166
|
| 991 |
+
2025-12-26,Fulham,1.198,1.326,-0.128
|
| 992 |
+
2025-12-26,Leeds United,1.271,1.393,-0.121
|
| 993 |
+
2025-12-26,Liverpool,1.637,1.06,0.576
|
| 994 |
+
2025-12-26,Manchester City,1.925,0.974,0.951
|
| 995 |
+
2025-12-26,Manchester United,1.505,1.343,0.161
|
| 996 |
+
2025-12-26,Newcastle United,1.41,1.19,0.22
|
| 997 |
+
2025-12-26,Nottingham Forest,1.101,1.293,-0.192
|
| 998 |
+
2025-12-26,Sunderland,0.82,1.336,-0.516
|
| 999 |
+
2025-12-26,Tottenham Hotspur,1.286,1.318,-0.032
|
| 1000 |
+
2025-12-26,West Ham United,1.121,1.516,-0.396
|
| 1001 |
+
2025-12-26,Wolverhampton Wanderers,0.849,1.52,-0.671
|
| 1002 |
+
2025-12-27,AFC Bournemouth,1.352,1.487,-0.134
|
| 1003 |
+
2025-12-27,Arsenal,1.64,0.729,0.911
|
| 1004 |
+
2025-12-27,Aston Villa,1.332,1.23,0.101
|
| 1005 |
+
2025-12-27,Brentford,1.421,1.317,0.104
|
| 1006 |
+
2025-12-27,Brighton and Hove Albion,1.388,1.286,0.102
|
| 1007 |
+
2025-12-27,Burnley,0.835,1.53,-0.694
|
| 1008 |
+
2025-12-27,Chelsea,1.551,1.23,0.321
|
| 1009 |
+
2025-12-27,Crystal Palace,1.262,1.153,0.11
|
| 1010 |
+
2025-12-27,Everton,1.01,1.201,-0.191
|
| 1011 |
+
2025-12-27,Fulham,1.201,1.301,-0.101
|
| 1012 |
+
2025-12-27,Leeds United,1.273,1.401,-0.128
|
| 1013 |
+
2025-12-27,Liverpool,1.61,1.078,0.533
|
| 1014 |
+
2025-12-27,Manchester City,1.909,0.972,0.937
|
| 1015 |
+
2025-12-27,Manchester United,1.506,1.351,0.155
|
| 1016 |
+
2025-12-27,Newcastle United,1.411,1.197,0.214
|
| 1017 |
+
2025-12-27,Nottingham Forest,1.091,1.291,-0.2
|
| 1018 |
+
2025-12-27,Sunderland,0.821,1.343,-0.523
|
| 1019 |
+
2025-12-27,Tottenham Hotspur,1.287,1.326,-0.039
|
| 1020 |
+
2025-12-27,West Ham United,1.093,1.524,-0.431
|
| 1021 |
+
2025-12-27,Wolverhampton Wanderers,0.86,1.505,-0.645
|
| 1022 |
+
2025-12-28,AFC Bournemouth,1.342,1.488,-0.146
|
| 1023 |
+
2025-12-28,Arsenal,1.627,0.729,0.898
|
| 1024 |
+
2025-12-28,Aston Villa,1.321,1.231,0.09
|
| 1025 |
+
2025-12-28,Brentford,1.41,1.318,0.092
|
| 1026 |
+
2025-12-28,Brighton and Hove Albion,1.377,1.287,0.09
|
| 1027 |
+
2025-12-28,Burnley,0.829,1.531,-0.702
|
| 1028 |
+
2025-12-28,Chelsea,1.539,1.232,0.308
|
| 1029 |
+
2025-12-28,Crystal Palace,1.225,1.149,0.076
|
| 1030 |
+
2025-12-28,Everton,1.002,1.202,-0.199
|
| 1031 |
+
2025-12-28,Fulham,1.191,1.302,-0.111
|
| 1032 |
+
2025-12-28,Leeds United,1.28,1.391,-0.111
|
| 1033 |
+
2025-12-28,Liverpool,1.598,1.079,0.519
|
| 1034 |
+
2025-12-28,Manchester City,1.894,0.973,0.921
|
| 1035 |
+
2025-12-28,Manchester United,1.495,1.353,0.142
|
| 1036 |
+
2025-12-28,Newcastle United,1.4,1.198,0.202
|
| 1037 |
+
2025-12-28,Nottingham Forest,1.082,1.292,-0.21
|
| 1038 |
+
2025-12-28,Sunderland,0.807,1.358,-0.552
|
| 1039 |
+
2025-12-28,Tottenham Hotspur,1.272,1.298,-0.026
|
| 1040 |
+
2025-12-28,West Ham United,1.085,1.526,-0.441
|
| 1041 |
+
2025-12-28,Wolverhampton Wanderers,0.853,1.506,-0.653
|
| 1042 |
+
2025-12-30,AFC Bournemouth,1.415,1.52,-0.104
|
| 1043 |
+
2025-12-30,Arsenal,1.718,0.77,0.949
|
| 1044 |
+
2025-12-30,Aston Villa,1.385,1.315,0.071
|
| 1045 |
+
2025-12-30,Brentford,1.419,1.346,0.074
|
| 1046 |
+
2025-12-30,Brighton and Hove Albion,1.432,1.342,0.09
|
| 1047 |
+
2025-12-30,Burnley,0.837,1.607,-0.77
|
| 1048 |
+
2025-12-30,Chelsea,1.551,1.308,0.243
|
| 1049 |
+
2025-12-30,Crystal Palace,1.233,1.173,0.06
|
| 1050 |
+
2025-12-30,Everton,1.027,1.214,-0.187
|
| 1051 |
+
2025-12-30,Fulham,1.199,1.33,-0.131
|
| 1052 |
+
2025-12-30,Leeds United,1.288,1.42,-0.132
|
| 1053 |
+
2025-12-30,Liverpool,1.608,1.101,0.507
|
| 1054 |
+
2025-12-30,Manchester City,1.906,0.993,0.913
|
| 1055 |
+
2025-12-30,Manchester United,1.439,1.39,0.049
|
| 1056 |
+
2025-12-30,Newcastle United,1.452,1.227,0.226
|
| 1057 |
+
2025-12-30,Nottingham Forest,1.08,1.342,-0.262
|
| 1058 |
+
2025-12-30,Sunderland,0.812,1.386,-0.575
|
| 1059 |
+
2025-12-30,Tottenham Hotspur,1.28,1.325,-0.045
|
| 1060 |
+
2025-12-30,West Ham United,1.119,1.6,-0.481
|
| 1061 |
+
2025-12-30,Wolverhampton Wanderers,0.865,1.48,-0.615
|
| 1062 |
+
2026-01-01,AFC Bournemouth,1.402,1.491,-0.09
|
| 1063 |
+
2026-01-01,Arsenal,1.702,0.755,0.947
|
| 1064 |
+
2026-01-01,Aston Villa,1.372,1.29,0.082
|
| 1065 |
+
2026-01-01,Brentford,1.354,1.293,0.061
|
| 1066 |
+
2026-01-01,Brighton and Hove Albion,1.418,1.317,0.101
|
| 1067 |
+
2026-01-01,Burnley,0.829,1.578,-0.748
|
| 1068 |
+
2026-01-01,Chelsea,1.536,1.284,0.252
|
| 1069 |
+
2026-01-01,Crystal Palace,1.223,1.164,0.059
|
| 1070 |
+
2026-01-01,Everton,1.017,1.192,-0.175
|
| 1071 |
+
2026-01-01,Fulham,1.205,1.304,-0.1
|
| 1072 |
+
2026-01-01,Leeds United,1.246,1.361,-0.115
|
| 1073 |
+
2026-01-01,Liverpool,1.56,1.058,0.502
|
| 1074 |
+
2026-01-01,Manchester City,1.859,0.968,0.891
|
| 1075 |
+
2026-01-01,Manchester United,1.426,1.364,0.062
|
| 1076 |
+
2026-01-01,Newcastle United,1.439,1.204,0.235
|
| 1077 |
+
2026-01-01,Nottingham Forest,1.07,1.317,-0.247
|
| 1078 |
+
2026-01-01,Sunderland,0.799,1.335,-0.536
|
| 1079 |
+
2026-01-01,Tottenham Hotspur,1.242,1.256,-0.014
|
| 1080 |
+
2026-01-01,West Ham United,1.108,1.571,-0.462
|
| 1081 |
+
2026-01-01,Wolverhampton Wanderers,0.857,1.453,-0.595
|
| 1082 |
+
2026-01-03,AFC Bournemouth,1.423,1.487,-0.065
|
| 1083 |
+
2026-01-03,Arsenal,1.68,0.77,0.91
|
| 1084 |
+
2026-01-03,Aston Villa,1.382,1.285,0.097
|
| 1085 |
+
2026-01-03,Brentford,1.347,1.293,0.054
|
| 1086 |
+
2026-01-03,Brighton and Hove Albion,1.383,1.291,0.092
|
| 1087 |
+
2026-01-03,Burnley,0.807,1.553,-0.746
|
| 1088 |
+
2026-01-03,Chelsea,1.528,1.284,0.244
|
| 1089 |
+
2026-01-03,Crystal Palace,1.217,1.164,0.052
|
| 1090 |
+
2026-01-03,Everton,1.012,1.192,-0.18
|
| 1091 |
+
2026-01-03,Fulham,1.199,1.304,-0.106
|
| 1092 |
+
2026-01-03,Leeds United,1.239,1.361,-0.121
|
| 1093 |
+
2026-01-03,Liverpool,1.552,1.058,0.494
|
| 1094 |
+
2026-01-03,Manchester City,1.849,0.968,0.882
|
| 1095 |
+
2026-01-03,Manchester United,1.418,1.364,0.054
|
| 1096 |
+
2026-01-03,Newcastle United,1.431,1.204,0.227
|
| 1097 |
+
2026-01-03,Nottingham Forest,1.06,1.335,-0.275
|
| 1098 |
+
2026-01-03,Sunderland,0.795,1.335,-0.54
|
| 1099 |
+
2026-01-03,Tottenham Hotspur,1.235,1.256,-0.02
|
| 1100 |
+
2026-01-03,West Ham United,1.066,1.621,-0.555
|
| 1101 |
+
2026-01-03,Wolverhampton Wanderers,0.882,1.408,-0.526
|
| 1102 |
+
2026-01-04,AFC Bournemouth,1.425,1.497,-0.072
|
| 1103 |
+
2026-01-04,Arsenal,1.683,0.775,0.908
|
| 1104 |
+
2026-01-04,Aston Villa,1.384,1.293,0.091
|
| 1105 |
+
2026-01-04,Brentford,1.434,1.306,0.128
|
| 1106 |
+
2026-01-04,Brighton and Hove Albion,1.385,1.299,0.086
|
| 1107 |
+
2026-01-04,Burnley,0.808,1.563,-0.755
|
| 1108 |
+
2026-01-04,Chelsea,1.551,1.244,0.307
|
| 1109 |
+
2026-01-04,Crystal Palace,1.191,1.188,0.003
|
| 1110 |
+
2026-01-04,Everton,1.015,1.27,-0.255
|
| 1111 |
+
2026-01-04,Fulham,1.199,1.318,-0.119
|
| 1112 |
+
2026-01-04,Leeds United,1.211,1.362,-0.151
|
| 1113 |
+
2026-01-04,Liverpool,1.561,1.066,0.495
|
| 1114 |
+
2026-01-04,Manchester City,1.775,0.984,0.791
|
| 1115 |
+
2026-01-04,Manchester United,1.412,1.344,0.069
|
| 1116 |
+
2026-01-04,Newcastle United,1.457,1.186,0.271
|
| 1117 |
+
2026-01-04,Nottingham Forest,1.061,1.344,-0.282
|
| 1118 |
+
2026-01-04,Sunderland,0.793,1.33,-0.537
|
| 1119 |
+
2026-01-04,Tottenham Hotspur,1.226,1.261,-0.035
|
| 1120 |
+
2026-01-04,West Ham United,1.068,1.632,-0.564
|
| 1121 |
+
2026-01-04,Wolverhampton Wanderers,0.884,1.418,-0.534
|
| 1122 |
+
2026-01-06,AFC Bournemouth,1.435,1.497,-0.062
|
| 1123 |
+
2026-01-06,Arsenal,1.695,0.775,0.92
|
| 1124 |
+
2026-01-06,Aston Villa,1.394,1.293,0.101
|
| 1125 |
+
2026-01-06,Brentford,1.445,1.306,0.139
|
| 1126 |
+
2026-01-06,Brighton and Hove Albion,1.395,1.299,0.096
|
| 1127 |
+
2026-01-06,Burnley,0.814,1.563,-0.749
|
| 1128 |
+
2026-01-06,Chelsea,1.562,1.244,0.318
|
| 1129 |
+
2026-01-06,Crystal Palace,1.199,1.188,0.011
|
| 1130 |
+
2026-01-06,Everton,1.023,1.27,-0.248
|
| 1131 |
+
2026-01-06,Fulham,1.208,1.318,-0.11
|
| 1132 |
+
2026-01-06,Leeds United,1.219,1.362,-0.142
|
| 1133 |
+
2026-01-06,Liverpool,1.572,1.066,0.506
|
| 1134 |
+
2026-01-06,Manchester City,1.787,0.984,0.804
|
| 1135 |
+
2026-01-06,Manchester United,1.422,1.344,0.079
|
| 1136 |
+
2026-01-06,Newcastle United,1.467,1.186,0.282
|
| 1137 |
+
2026-01-06,Nottingham Forest,1.079,1.33,-0.251
|
| 1138 |
+
2026-01-06,Sunderland,0.799,1.33,-0.531
|
| 1139 |
+
2026-01-06,Tottenham Hotspur,1.235,1.261,-0.026
|
| 1140 |
+
2026-01-06,West Ham United,1.064,1.647,-0.583
|
| 1141 |
+
2026-01-06,Wolverhampton Wanderers,0.89,1.418,-0.528
|
| 1142 |
+
2026-01-07,AFC Bournemouth,1.452,1.521,-0.069
|
| 1143 |
+
2026-01-07,Arsenal,1.706,0.782,0.924
|
| 1144 |
+
2026-01-07,Aston Villa,1.394,1.281,0.113
|
| 1145 |
+
2026-01-07,Brentford,1.519,1.326,0.193
|
| 1146 |
+
2026-01-07,Brighton and Hove Albion,1.405,1.301,0.104
|
| 1147 |
+
2026-01-07,Burnley,0.815,1.603,-0.788
|
| 1148 |
+
2026-01-07,Chelsea,1.589,1.26,0.328
|
| 1149 |
+
2026-01-07,Crystal Palace,1.185,1.189,-0.005
|
| 1150 |
+
2026-01-07,Everton,1.016,1.281,-0.265
|
| 1151 |
+
2026-01-07,Fulham,1.218,1.34,-0.122
|
| 1152 |
+
2026-01-07,Leeds United,1.274,1.425,-0.151
|
| 1153 |
+
2026-01-07,Liverpool,1.582,1.076,0.506
|
| 1154 |
+
2026-01-07,Manchester City,1.788,0.993,0.795
|
| 1155 |
+
2026-01-07,Manchester United,1.457,1.355,0.102
|
| 1156 |
+
2026-01-07,Newcastle United,1.533,1.241,0.293
|
| 1157 |
+
2026-01-07,Nottingham Forest,1.086,1.343,-0.257
|
| 1158 |
+
2026-01-07,Sunderland,0.812,1.396,-0.584
|
| 1159 |
+
2026-01-07,Tottenham Hotspur,1.251,1.283,-0.032
|
| 1160 |
+
2026-01-07,West Ham United,1.071,1.663,-0.592
|
| 1161 |
+
2026-01-07,Wolverhampton Wanderers,0.894,1.415,-0.521
|
| 1162 |
+
2026-01-08,AFC Bournemouth,1.452,1.521,-0.069
|
| 1163 |
+
2026-01-08,Arsenal,1.631,0.766,0.865
|
| 1164 |
+
2026-01-08,Aston Villa,1.394,1.281,0.113
|
| 1165 |
+
2026-01-08,Brentford,1.519,1.326,0.193
|
| 1166 |
+
2026-01-08,Brighton and Hove Albion,1.405,1.301,0.104
|
| 1167 |
+
2026-01-08,Burnley,0.815,1.603,-0.788
|
| 1168 |
+
2026-01-08,Chelsea,1.589,1.26,0.328
|
| 1169 |
+
2026-01-08,Crystal Palace,1.185,1.189,-0.005
|
| 1170 |
+
2026-01-08,Everton,1.016,1.281,-0.265
|
| 1171 |
+
2026-01-08,Fulham,1.218,1.34,-0.122
|
| 1172 |
+
2026-01-08,Leeds United,1.274,1.425,-0.151
|
| 1173 |
+
2026-01-08,Liverpool,1.547,1.033,0.514
|
| 1174 |
+
2026-01-08,Manchester City,1.788,0.993,0.795
|
| 1175 |
+
2026-01-08,Manchester United,1.457,1.355,0.102
|
| 1176 |
+
2026-01-08,Newcastle United,1.533,1.241,0.293
|
| 1177 |
+
2026-01-08,Nottingham Forest,1.086,1.343,-0.257
|
| 1178 |
+
2026-01-08,Sunderland,0.812,1.396,-0.584
|
| 1179 |
+
2026-01-08,Tottenham Hotspur,1.251,1.283,-0.032
|
| 1180 |
+
2026-01-08,West Ham United,1.071,1.663,-0.592
|
| 1181 |
+
2026-01-08,Wolverhampton Wanderers,0.894,1.415,-0.521
|
| 1182 |
+
2026-01-17,AFC Bournemouth,1.439,1.51,-0.071
|
| 1183 |
+
2026-01-17,Arsenal,1.601,0.748,0.852
|
| 1184 |
+
2026-01-17,Aston Villa,1.382,1.272,0.11
|
| 1185 |
+
2026-01-17,Brentford,1.479,1.309,0.17
|
| 1186 |
+
2026-01-17,Brighton and Hove Albion,1.392,1.292,0.1
|
| 1187 |
+
2026-01-17,Burnley,0.807,1.593,-0.786
|
| 1188 |
+
2026-01-17,Chelsea,1.562,1.229,0.333
|
| 1189 |
+
2026-01-17,Crystal Palace,1.153,1.213,-0.06
|
| 1190 |
+
2026-01-17,Everton,1.007,1.272,-0.265
|
| 1191 |
+
2026-01-17,Fulham,1.166,1.314,-0.148
|
| 1192 |
+
2026-01-17,Leeds United,1.245,1.371,-0.126
|
| 1193 |
+
2026-01-17,Liverpool,1.543,1.026,0.517
|
| 1194 |
+
2026-01-17,Manchester City,1.689,1.008,0.681
|
| 1195 |
+
2026-01-17,Manchester United,1.479,1.287,0.192
|
| 1196 |
+
2026-01-17,Newcastle United,1.519,1.232,0.288
|
| 1197 |
+
2026-01-17,Nottingham Forest,1.057,1.317,-0.26
|
| 1198 |
+
2026-01-17,Sunderland,0.829,1.366,-0.537
|
| 1199 |
+
2026-01-17,Tottenham Hotspur,1.22,1.332,-0.112
|
| 1200 |
+
2026-01-17,West Ham United,1.118,1.624,-0.506
|
| 1201 |
+
2026-01-17,Wolverhampton Wanderers,0.886,1.405,-0.519
|
| 1202 |
+
2026-01-18,AFC Bournemouth,1.427,1.491,-0.064
|
| 1203 |
+
2026-01-18,Arsenal,1.587,0.739,0.849
|
| 1204 |
+
2026-01-18,Aston Villa,1.335,1.247,0.089
|
| 1205 |
+
2026-01-18,Brentford,1.466,1.292,0.174
|
| 1206 |
+
2026-01-18,Brighton and Hove Albion,1.38,1.275,0.105
|
| 1207 |
+
2026-01-18,Burnley,0.8,1.572,-0.772
|
| 1208 |
+
2026-01-18,Chelsea,1.549,1.213,0.336
|
| 1209 |
+
2026-01-18,Crystal Palace,1.144,1.198,-0.054
|
| 1210 |
+
2026-01-18,Everton,0.989,1.224,-0.235
|
| 1211 |
+
2026-01-18,Fulham,1.156,1.297,-0.141
|
| 1212 |
+
2026-01-18,Leeds United,1.234,1.354,-0.119
|
| 1213 |
+
2026-01-18,Liverpool,1.53,1.013,0.517
|
| 1214 |
+
2026-01-18,Manchester City,1.675,0.995,0.68
|
| 1215 |
+
2026-01-18,Manchester United,1.467,1.271,0.196
|
| 1216 |
+
2026-01-18,Newcastle United,1.459,1.187,0.273
|
| 1217 |
+
2026-01-18,Nottingham Forest,1.048,1.3,-0.252
|
| 1218 |
+
2026-01-18,Sunderland,0.822,1.348,-0.526
|
| 1219 |
+
2026-01-18,Tottenham Hotspur,1.21,1.315,-0.105
|
| 1220 |
+
2026-01-18,West Ham United,1.108,1.603,-0.495
|
| 1221 |
+
2026-01-18,Wolverhampton Wanderers,0.855,1.345,-0.49
|
| 1222 |
+
2026-01-19,AFC Bournemouth,1.41,1.448,-0.038
|
| 1223 |
+
2026-01-19,Arsenal,1.585,0.739,0.846
|
| 1224 |
+
2026-01-19,Aston Villa,1.333,1.246,0.086
|
| 1225 |
+
2026-01-19,Brentford,1.464,1.292,0.171
|
| 1226 |
+
2026-01-19,Brighton and Hove Albion,1.333,1.264,0.069
|
| 1227 |
+
2026-01-19,Burnley,0.799,1.572,-0.773
|
| 1228 |
+
2026-01-19,Chelsea,1.546,1.213,0.333
|
| 1229 |
+
2026-01-19,Crystal Palace,1.142,1.198,-0.056
|
| 1230 |
+
2026-01-19,Everton,0.987,1.224,-0.237
|
| 1231 |
+
2026-01-19,Fulham,1.154,1.297,-0.143
|
| 1232 |
+
2026-01-19,Leeds United,1.232,1.354,-0.121
|
| 1233 |
+
2026-01-19,Liverpool,1.527,1.013,0.514
|
| 1234 |
+
2026-01-19,Manchester City,1.672,0.995,0.677
|
| 1235 |
+
2026-01-19,Manchester United,1.464,1.271,0.194
|
| 1236 |
+
2026-01-19,Newcastle United,1.457,1.187,0.27
|
| 1237 |
+
2026-01-19,Nottingham Forest,1.046,1.3,-0.253
|
| 1238 |
+
2026-01-19,Sunderland,0.82,1.348,-0.528
|
| 1239 |
+
2026-01-19,Tottenham Hotspur,1.208,1.314,-0.107
|
| 1240 |
+
2026-01-19,West Ham United,1.106,1.603,-0.497
|
| 1241 |
+
2026-01-19,Wolverhampton Wanderers,0.854,1.345,-0.491
|
| 1242 |
+
2026-01-24,AFC Bournemouth,1.465,1.437,0.028
|
| 1243 |
+
2026-01-24,Arsenal,1.585,0.739,0.846
|
| 1244 |
+
2026-01-24,Aston Villa,1.333,1.247,0.086
|
| 1245 |
+
2026-01-24,Brentford,1.464,1.293,0.171
|
| 1246 |
+
2026-01-24,Brighton and Hove Albion,1.333,1.266,0.067
|
| 1247 |
+
2026-01-24,Burnley,0.816,1.601,-0.785
|
| 1248 |
+
2026-01-24,Chelsea,1.546,1.213,0.333
|
| 1249 |
+
2026-01-24,Crystal Palace,1.142,1.198,-0.056
|
| 1250 |
+
2026-01-24,Everton,0.987,1.225,-0.237
|
| 1251 |
+
2026-01-24,Fulham,1.154,1.297,-0.143
|
| 1252 |
+
2026-01-24,Leeds United,1.232,1.354,-0.122
|
| 1253 |
+
2026-01-24,Liverpool,1.512,1.051,0.462
|
| 1254 |
+
2026-01-24,Manchester City,1.632,0.986,0.646
|
| 1255 |
+
2026-01-24,Manchester United,1.464,1.271,0.193
|
| 1256 |
+
2026-01-24,Newcastle United,1.457,1.187,0.27
|
| 1257 |
+
2026-01-24,Nottingham Forest,1.046,1.3,-0.254
|
| 1258 |
+
2026-01-24,Sunderland,0.813,1.378,-0.565
|
| 1259 |
+
2026-01-24,Tottenham Hotspur,1.233,1.341,-0.108
|
| 1260 |
+
2026-01-24,West Ham United,1.131,1.593,-0.462
|
| 1261 |
+
2026-01-24,Wolverhampton Wanderers,0.846,1.317,-0.472
|
| 1262 |
+
2026-01-25,AFC Bournemouth,1.466,1.438,0.029
|
| 1263 |
+
2026-01-25,Arsenal,1.566,0.757,0.809
|
| 1264 |
+
2026-01-25,Aston Villa,1.345,1.23,0.115
|
| 1265 |
+
2026-01-25,Brentford,1.429,1.302,0.127
|
| 1266 |
+
2026-01-25,Brighton and Hove Albion,1.334,1.267,0.068
|
| 1267 |
+
2026-01-25,Burnley,0.816,1.601,-0.785
|
| 1268 |
+
2026-01-25,Chelsea,1.599,1.216,0.383
|
| 1269 |
+
2026-01-25,Crystal Palace,1.146,1.236,-0.09
|
| 1270 |
+
2026-01-25,Everton,0.988,1.225,-0.237
|
| 1271 |
+
2026-01-25,Fulham,1.154,1.297,-0.143
|
| 1272 |
+
2026-01-25,Leeds United,1.233,1.354,-0.121
|
| 1273 |
+
2026-01-25,Liverpool,1.513,1.051,0.462
|
| 1274 |
+
2026-01-25,Manchester City,1.633,0.987,0.647
|
| 1275 |
+
2026-01-25,Manchester United,1.497,1.258,0.239
|
| 1276 |
+
2026-01-25,Newcastle United,1.442,1.198,0.245
|
| 1277 |
+
2026-01-25,Nottingham Forest,1.053,1.269,-0.216
|
| 1278 |
+
2026-01-25,Sunderland,0.814,1.379,-0.565
|
| 1279 |
+
2026-01-25,Tottenham Hotspur,1.234,1.341,-0.108
|
| 1280 |
+
2026-01-25,West Ham United,1.131,1.593,-0.462
|
| 1281 |
+
2026-01-25,Wolverhampton Wanderers,0.846,1.318,-0.471
|
| 1282 |
+
2026-01-26,AFC Bournemouth,1.466,1.438,0.029
|
| 1283 |
+
2026-01-26,Arsenal,1.566,0.757,0.809
|
| 1284 |
+
2026-01-26,Aston Villa,1.345,1.23,0.115
|
| 1285 |
+
2026-01-26,Brentford,1.429,1.302,0.127
|
| 1286 |
+
2026-01-26,Brighton and Hove Albion,1.334,1.267,0.068
|
| 1287 |
+
2026-01-26,Burnley,0.816,1.601,-0.785
|
| 1288 |
+
2026-01-26,Chelsea,1.599,1.216,0.383
|
| 1289 |
+
2026-01-26,Crystal Palace,1.146,1.236,-0.09
|
| 1290 |
+
2026-01-26,Everton,0.973,1.223,-0.25
|
| 1291 |
+
2026-01-26,Fulham,1.154,1.297,-0.143
|
| 1292 |
+
2026-01-26,Leeds United,1.231,1.337,-0.106
|
| 1293 |
+
2026-01-26,Liverpool,1.513,1.051,0.462
|
| 1294 |
+
2026-01-26,Manchester City,1.633,0.987,0.647
|
| 1295 |
+
2026-01-26,Manchester United,1.497,1.258,0.239
|
| 1296 |
+
2026-01-26,Newcastle United,1.442,1.198,0.245
|
| 1297 |
+
2026-01-26,Nottingham Forest,1.053,1.269,-0.216
|
| 1298 |
+
2026-01-26,Sunderland,0.814,1.379,-0.565
|
| 1299 |
+
2026-01-26,Tottenham Hotspur,1.234,1.341,-0.108
|
| 1300 |
+
2026-01-26,West Ham United,1.131,1.593,-0.462
|
| 1301 |
+
2026-01-26,Wolverhampton Wanderers,0.846,1.318,-0.471
|
| 1302 |
+
2026-01-31,AFC Bournemouth,1.472,1.415,0.057
|
| 1303 |
+
2026-01-31,Arsenal,1.633,0.734,0.898
|
| 1304 |
+
2026-01-31,Aston Villa,1.346,1.223,0.123
|
| 1305 |
+
2026-01-31,Brentford,1.431,1.295,0.136
|
| 1306 |
+
2026-01-31,Brighton and Hove Albion,1.321,1.265,0.056
|
| 1307 |
+
2026-01-31,Burnley,0.817,1.592,-0.775
|
| 1308 |
+
2026-01-31,Chelsea,1.619,1.224,0.396
|
| 1309 |
+
2026-01-31,Crystal Palace,1.148,1.229,-0.081
|
| 1310 |
+
2026-01-31,Everton,0.98,1.204,-0.224
|
| 1311 |
+
2026-01-31,Fulham,1.156,1.29,-0.134
|
| 1312 |
+
2026-01-31,Leeds United,1.199,1.383,-0.184
|
| 1313 |
+
2026-01-31,Liverpool,1.581,1.029,0.553
|
| 1314 |
+
2026-01-31,Manchester City,1.635,0.981,0.654
|
| 1315 |
+
2026-01-31,Manchester United,1.499,1.251,0.248
|
| 1316 |
+
2026-01-31,Newcastle United,1.417,1.239,0.178
|
| 1317 |
+
2026-01-31,Nottingham Forest,1.055,1.262,-0.207
|
| 1318 |
+
2026-01-31,Sunderland,0.815,1.371,-0.556
|
| 1319 |
+
2026-01-31,Tottenham Hotspur,1.235,1.334,-0.098
|
| 1320 |
+
2026-01-31,West Ham United,1.146,1.601,-0.455
|
| 1321 |
+
2026-01-31,Wolverhampton Wanderers,0.841,1.315,-0.474
|
| 1322 |
+
2026-02-01,AFC Bournemouth,1.469,1.422,0.047
|
| 1323 |
+
2026-02-01,Arsenal,1.629,0.738,0.891
|
| 1324 |
+
2026-02-01,Aston Villa,1.337,1.201,0.136
|
| 1325 |
+
2026-02-01,Brentford,1.389,1.29,0.099
|
| 1326 |
+
2026-02-01,Brighton and Hove Albion,1.318,1.272,0.047
|
| 1327 |
+
2026-02-01,Burnley,0.815,1.6,-0.784
|
| 1328 |
+
2026-02-01,Chelsea,1.616,1.23,0.386
|
| 1329 |
+
2026-02-01,Crystal Palace,1.16,1.215,-0.055
|
| 1330 |
+
2026-02-01,Everton,0.978,1.21,-0.232
|
| 1331 |
+
2026-02-01,Fulham,1.187,1.309,-0.122
|
| 1332 |
+
2026-02-01,Leeds United,1.196,1.389,-0.193
|
| 1333 |
+
2026-02-01,Liverpool,1.578,1.034,0.544
|
| 1334 |
+
2026-02-01,Manchester City,1.655,0.996,0.659
|
| 1335 |
+
2026-02-01,Manchester United,1.507,1.29,0.217
|
| 1336 |
+
2026-02-01,Newcastle United,1.414,1.245,0.169
|
| 1337 |
+
2026-02-01,Nottingham Forest,1.032,1.281,-0.25
|
| 1338 |
+
2026-02-01,Sunderland,0.813,1.378,-0.565
|
| 1339 |
+
2026-02-01,Tottenham Hotspur,1.244,1.356,-0.111
|
| 1340 |
+
2026-02-01,West Ham United,1.144,1.609,-0.465
|
| 1341 |
+
2026-02-01,Wolverhampton Wanderers,0.839,1.321,-0.483
|
| 1342 |
+
2026-02-02,AFC Bournemouth,1.469,1.422,0.047
|
| 1343 |
+
2026-02-02,Arsenal,1.629,0.738,0.891
|
| 1344 |
+
2026-02-02,Aston Villa,1.337,1.201,0.136
|
| 1345 |
+
2026-02-02,Brentford,1.389,1.29,0.099
|
| 1346 |
+
2026-02-02,Brighton and Hove Albion,1.318,1.272,0.047
|
| 1347 |
+
2026-02-02,Burnley,0.793,1.639,-0.846
|
| 1348 |
+
2026-02-02,Chelsea,1.616,1.23,0.386
|
| 1349 |
+
2026-02-02,Crystal Palace,1.16,1.215,-0.055
|
| 1350 |
+
2026-02-02,Everton,0.978,1.21,-0.232
|
| 1351 |
+
2026-02-02,Fulham,1.187,1.309,-0.122
|
| 1352 |
+
2026-02-02,Leeds United,1.196,1.389,-0.193
|
| 1353 |
+
2026-02-02,Liverpool,1.578,1.034,0.544
|
| 1354 |
+
2026-02-02,Manchester City,1.655,0.996,0.659
|
| 1355 |
+
2026-02-02,Manchester United,1.507,1.29,0.217
|
| 1356 |
+
2026-02-02,Newcastle United,1.414,1.245,0.169
|
| 1357 |
+
2026-02-02,Nottingham Forest,1.032,1.281,-0.25
|
| 1358 |
+
2026-02-02,Sunderland,0.832,1.344,-0.512
|
| 1359 |
+
2026-02-02,Tottenham Hotspur,1.244,1.356,-0.111
|
| 1360 |
+
2026-02-02,West Ham United,1.144,1.609,-0.465
|
| 1361 |
+
2026-02-02,Wolverhampton Wanderers,0.839,1.321,-0.483
|
| 1362 |
+
2026-02-06,AFC Bournemouth,1.469,1.422,0.047
|
| 1363 |
+
2026-02-06,Arsenal,1.629,0.738,0.891
|
| 1364 |
+
2026-02-06,Aston Villa,1.337,1.201,0.136
|
| 1365 |
+
2026-02-06,Brentford,1.389,1.29,0.099
|
| 1366 |
+
2026-02-06,Brighton and Hove Albion,1.318,1.272,0.047
|
| 1367 |
+
2026-02-06,Burnley,0.793,1.639,-0.846
|
| 1368 |
+
2026-02-06,Chelsea,1.616,1.23,0.386
|
| 1369 |
+
2026-02-06,Crystal Palace,1.16,1.215,-0.055
|
| 1370 |
+
2026-02-06,Everton,0.978,1.21,-0.232
|
| 1371 |
+
2026-02-06,Fulham,1.187,1.309,-0.122
|
| 1372 |
+
2026-02-06,Leeds United,1.241,1.393,-0.152
|
| 1373 |
+
2026-02-06,Liverpool,1.578,1.034,0.544
|
| 1374 |
+
2026-02-06,Manchester City,1.655,0.996,0.659
|
| 1375 |
+
2026-02-06,Manchester United,1.507,1.29,0.217
|
| 1376 |
+
2026-02-06,Newcastle United,1.414,1.245,0.169
|
| 1377 |
+
2026-02-06,Nottingham Forest,1.036,1.326,-0.29
|
| 1378 |
+
2026-02-06,Sunderland,0.832,1.344,-0.512
|
| 1379 |
+
2026-02-06,Tottenham Hotspur,1.244,1.356,-0.111
|
| 1380 |
+
2026-02-06,West Ham United,1.144,1.609,-0.465
|
| 1381 |
+
2026-02-06,Wolverhampton Wanderers,0.839,1.321,-0.483
|
| 1382 |
+
2026-02-07,AFC Bournemouth,1.478,1.383,0.095
|
| 1383 |
+
2026-02-07,Arsenal,1.643,0.725,0.917
|
| 1384 |
+
2026-02-07,Aston Villa,1.316,1.188,0.128
|
| 1385 |
+
2026-02-07,Brentford,1.442,1.297,0.146
|
| 1386 |
+
2026-02-07,Brighton and Hove Albion,1.33,1.263,0.067
|
| 1387 |
+
2026-02-07,Burnley,0.791,1.616,-0.825
|
| 1388 |
+
2026-02-07,Chelsea,1.723,1.223,0.5
|
| 1389 |
+
2026-02-07,Crystal Palace,1.171,1.207,-0.036
|
| 1390 |
+
2026-02-07,Everton,1.018,1.208,-0.19
|
| 1391 |
+
2026-02-07,Fulham,1.207,1.337,-0.13
|
| 1392 |
+
2026-02-07,Leeds United,1.253,1.384,-0.131
|
| 1393 |
+
2026-02-07,Liverpool,1.592,1.027,0.565
|
| 1394 |
+
2026-02-07,Manchester City,1.67,0.989,0.681
|
| 1395 |
+
2026-02-07,Manchester United,1.51,1.248,0.262
|
| 1396 |
+
2026-02-07,Newcastle United,1.447,1.272,0.176
|
| 1397 |
+
2026-02-07,Nottingham Forest,1.045,1.317,-0.272
|
| 1398 |
+
2026-02-07,Sunderland,0.83,1.338,-0.507
|
| 1399 |
+
2026-02-07,Tottenham Hotspur,1.223,1.34,-0.117
|
| 1400 |
+
2026-02-07,West Ham United,1.141,1.577,-0.436
|
| 1401 |
+
2026-02-07,Wolverhampton Wanderers,0.848,1.376,-0.529
|
| 1402 |
+
2026-02-08,AFC Bournemouth,1.478,1.365,0.113
|
| 1403 |
+
2026-02-08,Arsenal,1.643,0.716,0.927
|
| 1404 |
+
2026-02-08,Aston Villa,1.316,1.173,0.143
|
| 1405 |
+
2026-02-08,Brentford,1.442,1.28,0.162
|
| 1406 |
+
2026-02-08,Brighton and Hove Albion,1.283,1.243,0.04
|
| 1407 |
+
2026-02-08,Burnley,0.791,1.596,-0.805
|
| 1408 |
+
2026-02-08,Chelsea,1.723,1.207,0.515
|
| 1409 |
+
2026-02-08,Crystal Palace,1.167,1.152,0.014
|
| 1410 |
+
2026-02-08,Everton,1.018,1.192,-0.174
|
| 1411 |
+
2026-02-08,Fulham,1.207,1.32,-0.113
|
| 1412 |
+
2026-02-08,Leeds United,1.253,1.366,-0.114
|
| 1413 |
+
2026-02-08,Liverpool,1.568,1.048,0.52
|
| 1414 |
+
2026-02-08,Manchester City,1.737,0.963,0.775
|
| 1415 |
+
2026-02-08,Manchester United,1.51,1.232,0.278
|
| 1416 |
+
2026-02-08,Newcastle United,1.447,1.255,0.192
|
| 1417 |
+
2026-02-08,Nottingham Forest,1.045,1.301,-0.255
|
| 1418 |
+
2026-02-08,Sunderland,0.83,1.321,-0.49
|
| 1419 |
+
2026-02-08,Tottenham Hotspur,1.223,1.323,-0.1
|
| 1420 |
+
2026-02-08,West Ham United,1.141,1.557,-0.416
|
| 1421 |
+
2026-02-08,Wolverhampton Wanderers,0.848,1.359,-0.511
|
| 1422 |
+
2026-02-10,AFC Bournemouth,1.483,1.404,0.079
|
| 1423 |
+
2026-02-10,Arsenal,1.644,0.72,0.924
|
| 1424 |
+
2026-02-10,Aston Villa,1.318,1.18,0.138
|
| 1425 |
+
2026-02-10,Brentford,1.444,1.287,0.157
|
| 1426 |
+
2026-02-10,Brighton and Hove Albion,1.284,1.25,0.034
|
| 1427 |
+
2026-02-10,Burnley,0.792,1.605,-0.813
|
| 1428 |
+
2026-02-10,Chelsea,1.745,1.229,0.516
|
| 1429 |
+
2026-02-10,Crystal Palace,1.168,1.159,0.009
|
| 1430 |
+
2026-02-10,Everton,1.05,1.204,-0.154
|
| 1431 |
+
2026-02-10,Fulham,1.208,1.327,-0.119
|
| 1432 |
+
2026-02-10,Leeds United,1.268,1.386,-0.118
|
| 1433 |
+
2026-02-10,Liverpool,1.57,1.054,0.516
|
| 1434 |
+
2026-02-10,Manchester City,1.739,0.968,0.771
|
| 1435 |
+
2026-02-10,Manchester United,1.451,1.23,0.222
|
| 1436 |
+
2026-02-10,Newcastle United,1.489,1.265,0.223
|
| 1437 |
+
2026-02-10,Nottingham Forest,1.047,1.308,-0.261
|
| 1438 |
+
2026-02-10,Sunderland,0.831,1.328,-0.497
|
| 1439 |
+
2026-02-10,Tottenham Hotspur,1.231,1.361,-0.13
|
| 1440 |
+
2026-02-10,West Ham United,1.133,1.513,-0.379
|
| 1441 |
+
2026-02-10,Wolverhampton Wanderers,0.848,1.367,-0.518
|
| 1442 |
+
2026-02-11,AFC Bournemouth,1.483,1.386,0.098
|
| 1443 |
+
2026-02-11,Arsenal,1.644,0.71,0.934
|
| 1444 |
+
2026-02-11,Aston Villa,1.287,1.135,0.152
|
| 1445 |
+
2026-02-11,Brentford,1.444,1.27,0.174
|
| 1446 |
+
2026-02-11,Brighton and Hove Albion,1.25,1.208,0.042
|
| 1447 |
+
2026-02-11,Burnley,0.81,1.583,-0.773
|
| 1448 |
+
2026-02-11,Chelsea,1.745,1.212,0.532
|
| 1449 |
+
2026-02-11,Crystal Palace,1.166,1.172,-0.006
|
| 1450 |
+
2026-02-11,Everton,1.05,1.188,-0.138
|
| 1451 |
+
2026-02-11,Fulham,1.207,1.304,-0.096
|
| 1452 |
+
2026-02-11,Leeds United,1.268,1.368,-0.099
|
| 1453 |
+
2026-02-11,Liverpool,1.595,1.025,0.57
|
| 1454 |
+
2026-02-11,Manchester City,1.725,0.952,0.773
|
| 1455 |
+
2026-02-11,Manchester United,1.451,1.213,0.238
|
| 1456 |
+
2026-02-11,Newcastle United,1.489,1.248,0.24
|
| 1457 |
+
2026-02-11,Nottingham Forest,1.058,1.267,-0.209
|
| 1458 |
+
2026-02-11,Sunderland,0.819,1.323,-0.505
|
| 1459 |
+
2026-02-11,Tottenham Hotspur,1.231,1.343,-0.112
|
| 1460 |
+
2026-02-11,West Ham United,1.133,1.492,-0.359
|
| 1461 |
+
2026-02-11,Wolverhampton Wanderers,0.832,1.354,-0.522
|
| 1462 |
+
2026-02-12,AFC Bournemouth,1.464,1.386,0.078
|
| 1463 |
+
2026-02-12,Arsenal,1.574,0.716,0.858
|
| 1464 |
+
2026-02-12,Aston Villa,1.27,1.135,0.135
|
| 1465 |
+
2026-02-12,Brentford,1.44,1.237,0.203
|
| 1466 |
+
2026-02-12,Brighton and Hove Albion,1.234,1.208,0.026
|
| 1467 |
+
2026-02-12,Burnley,0.799,1.583,-0.783
|
| 1468 |
+
2026-02-12,Chelsea,1.722,1.212,0.51
|
| 1469 |
+
2026-02-12,Crystal Palace,1.151,1.172,-0.021
|
| 1470 |
+
2026-02-12,Everton,1.036,1.188,-0.152
|
| 1471 |
+
2026-02-12,Fulham,1.192,1.304,-0.112
|
| 1472 |
+
2026-02-12,Leeds United,1.252,1.368,-0.116
|
| 1473 |
+
2026-02-12,Liverpool,1.574,1.025,0.549
|
| 1474 |
+
2026-02-12,Manchester City,1.703,0.952,0.751
|
| 1475 |
+
2026-02-12,Manchester United,1.433,1.213,0.219
|
| 1476 |
+
2026-02-12,Newcastle United,1.469,1.248,0.221
|
| 1477 |
+
2026-02-12,Nottingham Forest,1.044,1.267,-0.223
|
| 1478 |
+
2026-02-12,Sunderland,0.808,1.323,-0.515
|
| 1479 |
+
2026-02-12,Tottenham Hotspur,1.215,1.343,-0.128
|
| 1480 |
+
2026-02-12,West Ham United,1.119,1.492,-0.374
|
| 1481 |
+
2026-02-12,Wolverhampton Wanderers,0.821,1.354,-0.532
|
| 1482 |
+
2026-02-18,AFC Bournemouth,1.464,1.386,0.078
|
| 1483 |
+
2026-02-18,Arsenal,1.578,0.726,0.852
|
| 1484 |
+
2026-02-18,Aston Villa,1.27,1.135,0.135
|
| 1485 |
+
2026-02-18,Brentford,1.44,1.237,0.203
|
| 1486 |
+
2026-02-18,Brighton and Hove Albion,1.234,1.208,0.026
|
| 1487 |
+
2026-02-18,Burnley,0.799,1.583,-0.783
|
| 1488 |
+
2026-02-18,Chelsea,1.722,1.212,0.51
|
| 1489 |
+
2026-02-18,Crystal Palace,1.151,1.172,-0.021
|
| 1490 |
+
2026-02-18,Everton,1.036,1.188,-0.152
|
| 1491 |
+
2026-02-18,Fulham,1.192,1.304,-0.112
|
| 1492 |
+
2026-02-18,Leeds United,1.252,1.368,-0.116
|
| 1493 |
+
2026-02-18,Liverpool,1.574,1.025,0.549
|
| 1494 |
+
2026-02-18,Manchester City,1.703,0.952,0.751
|
| 1495 |
+
2026-02-18,Manchester United,1.433,1.213,0.219
|
| 1496 |
+
2026-02-18,Newcastle United,1.469,1.248,0.221
|
| 1497 |
+
2026-02-18,Nottingham Forest,1.044,1.267,-0.223
|
| 1498 |
+
2026-02-18,Sunderland,0.808,1.323,-0.515
|
| 1499 |
+
2026-02-18,Tottenham Hotspur,1.215,1.343,-0.128
|
| 1500 |
+
2026-02-18,West Ham United,1.119,1.492,-0.374
|
| 1501 |
+
2026-02-18,Wolverhampton Wanderers,0.831,1.357,-0.526
|
| 1502 |
+
2026-02-21,AFC Bournemouth,1.394,1.405,-0.011
|
| 1503 |
+
2026-02-21,Arsenal,1.574,0.728,0.845
|
| 1504 |
+
2026-02-21,Aston Villa,1.25,1.139,0.11
|
| 1505 |
+
2026-02-21,Brentford,1.4,1.251,0.149
|
| 1506 |
+
2026-02-21,Brighton and Hove Albion,1.239,1.183,0.056
|
| 1507 |
+
2026-02-21,Burnley,0.8,1.529,-0.729
|
| 1508 |
+
2026-02-21,Chelsea,1.646,1.221,0.425
|
| 1509 |
+
2026-02-21,Crystal Palace,1.148,1.176,-0.029
|
| 1510 |
+
2026-02-21,Everton,1.033,1.192,-0.159
|
| 1511 |
+
2026-02-21,Fulham,1.188,1.309,-0.12
|
| 1512 |
+
2026-02-21,Leeds United,1.249,1.355,-0.106
|
| 1513 |
+
2026-02-21,Liverpool,1.569,1.028,0.541
|
| 1514 |
+
2026-02-21,Manchester City,1.672,0.945,0.727
|
| 1515 |
+
2026-02-21,Manchester United,1.429,1.218,0.211
|
| 1516 |
+
2026-02-21,Newcastle United,1.446,1.237,0.21
|
| 1517 |
+
2026-02-21,Nottingham Forest,1.041,1.272,-0.231
|
| 1518 |
+
2026-02-21,Sunderland,0.806,1.328,-0.522
|
| 1519 |
+
2026-02-21,Tottenham Hotspur,1.212,1.348,-0.136
|
| 1520 |
+
2026-02-21,West Ham United,1.137,1.437,-0.3
|
| 1521 |
+
2026-02-21,Wolverhampton Wanderers,0.828,1.362,-0.533
|
| 1522 |
+
2026-02-22,AFC Bournemouth,1.394,1.405,-0.011
|
| 1523 |
+
2026-02-22,Arsenal,1.63,0.729,0.9
|
| 1524 |
+
2026-02-22,Aston Villa,1.25,1.139,0.11
|
| 1525 |
+
2026-02-22,Brentford,1.4,1.251,0.149
|
| 1526 |
+
2026-02-22,Brighton and Hove Albion,1.239,1.183,0.056
|
| 1527 |
+
2026-02-22,Burnley,0.8,1.529,-0.729
|
| 1528 |
+
2026-02-22,Chelsea,1.646,1.221,0.425
|
| 1529 |
+
2026-02-22,Crystal Palace,1.151,1.182,-0.031
|
| 1530 |
+
2026-02-22,Everton,1.033,1.192,-0.159
|
| 1531 |
+
2026-02-22,Fulham,1.23,1.325,-0.095
|
| 1532 |
+
2026-02-22,Leeds United,1.249,1.355,-0.106
|
| 1533 |
+
2026-02-22,Liverpool,1.565,1.017,0.548
|
| 1534 |
+
2026-02-22,Manchester City,1.672,0.945,0.727
|
| 1535 |
+
2026-02-22,Manchester United,1.429,1.218,0.211
|
| 1536 |
+
2026-02-22,Newcastle United,1.446,1.237,0.21
|
| 1537 |
+
2026-02-22,Nottingham Forest,1.031,1.266,-0.235
|
| 1538 |
+
2026-02-22,Sunderland,0.819,1.371,-0.553
|
| 1539 |
+
2026-02-22,Tottenham Hotspur,1.214,1.395,-0.181
|
| 1540 |
+
2026-02-22,West Ham United,1.137,1.437,-0.3
|
| 1541 |
+
2026-02-22,Wolverhampton Wanderers,0.836,1.363,-0.527
|
| 1542 |
+
2026-02-23,AFC Bournemouth,1.394,1.405,-0.011
|
| 1543 |
+
2026-02-23,Arsenal,1.63,0.729,0.9
|
| 1544 |
+
2026-02-23,Aston Villa,1.25,1.139,0.11
|
| 1545 |
+
2026-02-23,Brentford,1.4,1.251,0.149
|
| 1546 |
+
2026-02-23,Brighton and Hove Albion,1.239,1.183,0.056
|
| 1547 |
+
2026-02-23,Burnley,0.8,1.529,-0.729
|
| 1548 |
+
2026-02-23,Chelsea,1.646,1.221,0.425
|
| 1549 |
+
2026-02-23,Crystal Palace,1.151,1.182,-0.031
|
| 1550 |
+
2026-02-23,Everton,1.006,1.183,-0.176
|
| 1551 |
+
2026-02-23,Fulham,1.23,1.325,-0.095
|
| 1552 |
+
2026-02-23,Leeds United,1.249,1.355,-0.106
|
| 1553 |
+
2026-02-23,Liverpool,1.565,1.017,0.548
|
| 1554 |
+
2026-02-23,Manchester City,1.672,0.945,0.727
|
| 1555 |
+
2026-02-23,Manchester United,1.416,1.187,0.228
|
| 1556 |
+
2026-02-23,Newcastle United,1.446,1.237,0.21
|
| 1557 |
+
2026-02-23,Nottingham Forest,1.031,1.266,-0.235
|
| 1558 |
+
2026-02-23,Sunderland,0.819,1.371,-0.553
|
| 1559 |
+
2026-02-23,Tottenham Hotspur,1.214,1.395,-0.181
|
| 1560 |
+
2026-02-23,West Ham United,1.137,1.437,-0.3
|
| 1561 |
+
2026-02-23,Wolverhampton Wanderers,0.836,1.363,-0.527
|
| 1562 |
+
2026-02-27,AFC Bournemouth,1.394,1.394,0.0
|
| 1563 |
+
2026-02-27,Arsenal,1.63,0.724,0.906
|
| 1564 |
+
2026-02-27,Aston Villa,1.223,1.144,0.079
|
| 1565 |
+
2026-02-27,Brentford,1.4,1.242,0.159
|
| 1566 |
+
2026-02-27,Brighton and Hove Albion,1.239,1.174,0.065
|
| 1567 |
+
2026-02-27,Burnley,0.8,1.517,-0.717
|
| 1568 |
+
2026-02-27,Chelsea,1.646,1.212,0.434
|
| 1569 |
+
2026-02-27,Crystal Palace,1.151,1.173,-0.022
|
| 1570 |
+
2026-02-27,Everton,1.006,1.174,-0.167
|
| 1571 |
+
2026-02-27,Fulham,1.23,1.315,-0.085
|
| 1572 |
+
2026-02-27,Leeds United,1.249,1.345,-0.096
|
| 1573 |
+
2026-02-27,Liverpool,1.565,1.009,0.556
|
| 1574 |
+
2026-02-27,Manchester City,1.672,0.938,0.734
|
| 1575 |
+
2026-02-27,Manchester United,1.416,1.178,0.237
|
| 1576 |
+
2026-02-27,Newcastle United,1.446,1.227,0.219
|
| 1577 |
+
2026-02-27,Nottingham Forest,1.031,1.256,-0.225
|
| 1578 |
+
2026-02-27,Sunderland,0.819,1.361,-0.542
|
| 1579 |
+
2026-02-27,Tottenham Hotspur,1.214,1.385,-0.171
|
| 1580 |
+
2026-02-27,West Ham United,1.137,1.426,-0.289
|
| 1581 |
+
2026-02-27,Wolverhampton Wanderers,0.845,1.323,-0.478
|
| 1582 |
+
2026-02-28,AFC Bournemouth,1.421,1.404,0.017
|
| 1583 |
+
2026-02-28,Arsenal,1.686,0.723,0.964
|
| 1584 |
+
2026-02-28,Aston Villa,1.265,1.142,0.123
|
| 1585 |
+
2026-02-28,Brentford,1.501,1.27,0.23
|
| 1586 |
+
2026-02-28,Brighton and Hove Albion,1.282,1.172,0.11
|
| 1587 |
+
2026-02-28,Burnley,0.847,1.57,-0.722
|
| 1588 |
+
2026-02-28,Chelsea,1.703,1.21,0.493
|
| 1589 |
+
2026-02-28,Crystal Palace,1.191,1.171,0.02
|
| 1590 |
+
2026-02-28,Everton,1.092,1.163,-0.071
|
| 1591 |
+
2026-02-28,Fulham,1.272,1.313,-0.041
|
| 1592 |
+
2026-02-28,Leeds United,1.279,1.335,-0.056
|
| 1593 |
+
2026-02-28,Liverpool,1.668,1.037,0.63
|
| 1594 |
+
2026-02-28,Manchester City,1.723,0.926,0.797
|
| 1595 |
+
2026-02-28,Manchester United,1.465,1.177,0.288
|
| 1596 |
+
2026-02-28,Newcastle United,1.48,1.28,0.2
|
| 1597 |
+
2026-02-28,Nottingham Forest,1.067,1.255,-0.188
|
| 1598 |
+
2026-02-28,Sunderland,0.856,1.339,-0.484
|
| 1599 |
+
2026-02-28,Tottenham Hotspur,1.256,1.383,-0.127
|
| 1600 |
+
2026-02-28,West Ham United,1.215,1.468,-0.253
|
| 1601 |
+
2026-02-28,Wolverhampton Wanderers,0.874,1.322,-0.447
|
| 1602 |
+
2026-03-01,AFC Bournemouth,1.421,1.41,0.011
|
| 1603 |
+
2026-03-01,Arsenal,1.654,0.727,0.927
|
| 1604 |
+
2026-03-01,Aston Villa,1.265,1.147,0.118
|
| 1605 |
+
2026-03-01,Brentford,1.501,1.276,0.225
|
| 1606 |
+
2026-03-01,Brighton and Hove Albion,1.283,1.173,0.11
|
| 1607 |
+
2026-03-01,Burnley,0.847,1.576,-0.729
|
| 1608 |
+
2026-03-01,Chelsea,1.707,1.197,0.51
|
| 1609 |
+
2026-03-01,Crystal Palace,1.173,1.189,-0.016
|
| 1610 |
+
2026-03-01,Everton,1.092,1.168,-0.076
|
| 1611 |
+
2026-03-01,Fulham,1.291,1.307,-0.016
|
| 1612 |
+
2026-03-01,Leeds United,1.279,1.34,-0.062
|
| 1613 |
+
2026-03-01,Liverpool,1.668,1.042,0.626
|
| 1614 |
+
2026-03-01,Manchester City,1.723,0.93,0.793
|
| 1615 |
+
2026-03-01,Manchester United,1.482,1.166,0.316
|
| 1616 |
+
2026-03-01,Newcastle United,1.48,1.286,0.194
|
| 1617 |
+
2026-03-01,Nottingham Forest,1.063,1.262,-0.2
|
| 1618 |
+
2026-03-01,Sunderland,0.856,1.345,-0.489
|
| 1619 |
+
2026-03-01,Tottenham Hotspur,1.245,1.406,-0.162
|
| 1620 |
+
2026-03-01,West Ham United,1.215,1.474,-0.259
|
| 1621 |
+
2026-03-01,Wolverhampton Wanderers,0.874,1.327,-0.453
|
| 1622 |
+
2026-03-03,AFC Bournemouth,1.383,1.343,0.04
|
| 1623 |
+
2026-03-03,Arsenal,1.638,0.724,0.915
|
| 1624 |
+
2026-03-03,Aston Villa,1.253,1.141,0.112
|
| 1625 |
+
2026-03-03,Brentford,1.415,1.245,0.17
|
| 1626 |
+
2026-03-03,Brighton and Hove Albion,1.271,1.167,0.104
|
| 1627 |
+
2026-03-03,Burnley,0.831,1.563,-0.732
|
| 1628 |
+
2026-03-03,Chelsea,1.691,1.191,0.5
|
| 1629 |
+
2026-03-03,Crystal Palace,1.161,1.183,-0.022
|
| 1630 |
+
2026-03-03,Everton,1.075,1.151,-0.076
|
| 1631 |
+
2026-03-03,Fulham,1.279,1.3,-0.022
|
| 1632 |
+
2026-03-03,Leeds United,1.225,1.333,-0.108
|
| 1633 |
+
2026-03-03,Liverpool,1.671,1.043,0.628
|
| 1634 |
+
2026-03-03,Manchester City,1.707,0.925,0.781
|
| 1635 |
+
2026-03-03,Manchester United,1.468,1.16,0.308
|
| 1636 |
+
2026-03-03,Newcastle United,1.466,1.279,0.187
|
| 1637 |
+
2026-03-03,Nottingham Forest,1.053,1.256,-0.203
|
| 1638 |
+
2026-03-03,Sunderland,0.847,1.298,-0.451
|
| 1639 |
+
2026-03-03,Tottenham Hotspur,1.233,1.399,-0.166
|
| 1640 |
+
2026-03-03,West Ham United,1.203,1.467,-0.263
|
| 1641 |
+
2026-03-03,Wolverhampton Wanderers,0.87,1.329,-0.46
|
| 1642 |
+
2026-03-04,AFC Bournemouth,1.377,1.31,0.067
|
| 1643 |
+
2026-03-04,Arsenal,1.588,0.698,0.89
|
| 1644 |
+
2026-03-04,Aston Villa,1.225,1.187,0.038
|
| 1645 |
+
2026-03-04,Brentford,1.41,1.215,0.195
|
| 1646 |
+
2026-03-04,Brighton and Hove Albion,1.252,1.112,0.14
|
| 1647 |
+
2026-03-04,Burnley,0.828,1.525,-0.697
|
| 1648 |
+
2026-03-04,Chelsea,1.808,1.143,0.665
|
| 1649 |
+
2026-03-04,Crystal Palace,1.157,1.154,0.003
|
| 1650 |
+
2026-03-04,Everton,1.071,1.123,-0.052
|
| 1651 |
+
2026-03-04,Fulham,1.222,1.261,-0.039
|
| 1652 |
+
2026-03-04,Leeds United,1.221,1.301,-0.08
|
| 1653 |
+
2026-03-04,Liverpool,1.665,1.018,0.647
|
| 1654 |
+
2026-03-04,Manchester City,1.702,0.919,0.783
|
| 1655 |
+
2026-03-04,Manchester United,1.451,1.155,0.296
|
| 1656 |
+
2026-03-04,Newcastle United,1.496,1.239,0.258
|
| 1657 |
+
2026-03-04,Nottingham Forest,1.068,1.226,-0.158
|
| 1658 |
+
2026-03-04,Sunderland,0.844,1.266,-0.422
|
| 1659 |
+
2026-03-04,Tottenham Hotspur,1.228,1.365,-0.137
|
| 1660 |
+
2026-03-04,West Ham United,1.191,1.377,-0.186
|
| 1661 |
+
2026-03-04,Wolverhampton Wanderers,0.866,1.297,-0.431
|
| 1662 |
+
2026-03-05,AFC Bournemouth,1.37,1.307,0.063
|
| 1663 |
+
2026-03-05,Arsenal,1.579,0.696,0.883
|
| 1664 |
+
2026-03-05,Aston Villa,1.219,1.185,0.034
|
| 1665 |
+
2026-03-05,Brentford,1.402,1.212,0.191
|
| 1666 |
+
2026-03-05,Brighton and Hove Albion,1.246,1.109,0.136
|
| 1667 |
+
2026-03-05,Burnley,0.824,1.521,-0.697
|
| 1668 |
+
2026-03-05,Chelsea,1.799,1.14,0.659
|
| 1669 |
+
2026-03-05,Crystal Palace,1.185,1.141,0.044
|
| 1670 |
+
2026-03-05,Everton,1.065,1.12,-0.054
|
| 1671 |
+
2026-03-05,Fulham,1.216,1.258,-0.042
|
| 1672 |
+
2026-03-05,Leeds United,1.214,1.298,-0.083
|
| 1673 |
+
2026-03-05,Liverpool,1.656,1.016,0.641
|
| 1674 |
+
2026-03-05,Manchester City,1.694,0.917,0.776
|
| 1675 |
+
2026-03-05,Manchester United,1.443,1.152,0.291
|
| 1676 |
+
2026-03-05,Newcastle United,1.489,1.236,0.253
|
| 1677 |
+
2026-03-05,Nottingham Forest,1.062,1.223,-0.161
|
| 1678 |
+
2026-03-05,Sunderland,0.839,1.263,-0.424
|
| 1679 |
+
2026-03-05,Tottenham Hotspur,1.211,1.401,-0.191
|
| 1680 |
+
2026-03-05,West Ham United,1.185,1.374,-0.189
|
| 1681 |
+
2026-03-05,Wolverhampton Wanderers,0.862,1.294,-0.432
|
| 1682 |
+
2026-03-14,AFC Bournemouth,1.342,1.296,0.046
|
| 1683 |
+
2026-03-14,Arsenal,1.589,0.696,0.893
|
| 1684 |
+
2026-03-14,Aston Villa,1.199,1.185,0.015
|
| 1685 |
+
2026-03-14,Brentford,1.38,1.212,0.169
|
| 1686 |
+
2026-03-14,Brighton and Hove Albion,1.234,1.095,0.139
|
| 1687 |
+
2026-03-14,Burnley,0.805,1.508,-0.703
|
| 1688 |
+
2026-03-14,Chelsea,1.686,1.135,0.551
|
| 1689 |
+
2026-03-14,Crystal Palace,1.167,1.141,0.026
|
| 1690 |
+
2026-03-14,Everton,1.051,1.141,-0.09
|
| 1691 |
+
2026-03-14,Fulham,1.197,1.258,-0.061
|
| 1692 |
+
2026-03-14,Leeds United,1.195,1.298,-0.103
|
| 1693 |
+
2026-03-14,Liverpool,1.63,1.016,0.615
|
| 1694 |
+
2026-03-14,Manchester City,1.659,0.907,0.753
|
| 1695 |
+
2026-03-14,Manchester United,1.42,1.152,0.268
|
| 1696 |
+
2026-03-14,Newcastle United,1.459,1.181,0.278
|
| 1697 |
+
2026-03-14,Nottingham Forest,1.046,1.223,-0.177
|
| 1698 |
+
2026-03-14,Sunderland,0.816,1.268,-0.452
|
| 1699 |
+
2026-03-14,Tottenham Hotspur,1.191,1.401,-0.21
|
| 1700 |
+
2026-03-14,West Ham United,1.15,1.364,-0.214
|
| 1701 |
+
2026-03-14,Wolverhampton Wanderers,0.848,1.294,-0.446
|
| 1702 |
+
2026-03-15,AFC Bournemouth,1.344,1.295,0.049
|
| 1703 |
+
2026-03-15,Arsenal,1.592,0.696,0.897
|
| 1704 |
+
2026-03-15,Aston Villa,1.199,1.188,0.01
|
| 1705 |
+
2026-03-15,Brentford,1.383,1.211,0.172
|
| 1706 |
+
2026-03-15,Brighton and Hove Albion,1.236,1.095,0.141
|
| 1707 |
+
2026-03-15,Burnley,0.806,1.507,-0.701
|
| 1708 |
+
2026-03-15,Chelsea,1.689,1.134,0.555
|
| 1709 |
+
2026-03-15,Crystal Palace,1.125,1.122,0.003
|
| 1710 |
+
2026-03-15,Everton,1.053,1.14,-0.087
|
| 1711 |
+
2026-03-15,Fulham,1.176,1.228,-0.052
|
| 1712 |
+
2026-03-15,Leeds United,1.177,1.252,-0.075
|
| 1713 |
+
2026-03-15,Liverpool,1.588,1.019,0.568
|
| 1714 |
+
2026-03-15,Manchester City,1.662,0.906,0.756
|
| 1715 |
+
2026-03-15,Manchester United,1.422,1.148,0.274
|
| 1716 |
+
2026-03-15,Newcastle United,1.462,1.18,0.281
|
| 1717 |
+
2026-03-15,Nottingham Forest,1.022,1.2,-0.177
|
| 1718 |
+
2026-03-15,Sunderland,0.817,1.267,-0.45
|
| 1719 |
+
2026-03-15,Tottenham Hotspur,1.201,1.364,-0.163
|
| 1720 |
+
2026-03-15,West Ham United,1.152,1.363,-0.211
|
| 1721 |
+
2026-03-15,Wolverhampton Wanderers,0.85,1.293,-0.443
|
| 1722 |
+
2026-03-16,AFC Bournemouth,1.354,1.295,0.059
|
| 1723 |
+
2026-03-16,Arsenal,1.604,0.696,0.908
|
| 1724 |
+
2026-03-16,Aston Villa,1.207,1.188,0.019
|
| 1725 |
+
2026-03-16,Brentford,1.416,1.239,0.177
|
| 1726 |
+
2026-03-16,Brighton and Hove Albion,1.245,1.095,0.15
|
| 1727 |
+
2026-03-16,Burnley,0.812,1.507,-0.695
|
| 1728 |
+
2026-03-16,Chelsea,1.701,1.134,0.567
|
| 1729 |
+
2026-03-16,Crystal Palace,1.133,1.122,0.011
|
| 1730 |
+
2026-03-16,Everton,1.06,1.14,-0.08
|
| 1731 |
+
2026-03-16,Fulham,1.185,1.228,-0.044
|
| 1732 |
+
2026-03-16,Leeds United,1.186,1.252,-0.067
|
| 1733 |
+
2026-03-16,Liverpool,1.599,1.019,0.579
|
| 1734 |
+
2026-03-16,Manchester City,1.674,0.906,0.768
|
| 1735 |
+
2026-03-16,Manchester United,1.432,1.148,0.284
|
| 1736 |
+
2026-03-16,Newcastle United,1.472,1.18,0.291
|
| 1737 |
+
2026-03-16,Nottingham Forest,1.029,1.2,-0.17
|
| 1738 |
+
2026-03-16,Sunderland,0.823,1.267,-0.444
|
| 1739 |
+
2026-03-16,Tottenham Hotspur,1.209,1.364,-0.154
|
| 1740 |
+
2026-03-16,West Ham United,1.16,1.363,-0.203
|
| 1741 |
+
2026-03-16,Wolverhampton Wanderers,0.877,1.311,-0.435
|
| 1742 |
+
2026-03-20,AFC Bournemouth,1.368,1.306,0.062
|
| 1743 |
+
2026-03-20,Arsenal,1.604,0.696,0.908
|
| 1744 |
+
2026-03-20,Aston Villa,1.207,1.188,0.019
|
| 1745 |
+
2026-03-20,Brentford,1.416,1.239,0.177
|
| 1746 |
+
2026-03-20,Brighton and Hove Albion,1.245,1.095,0.15
|
| 1747 |
+
2026-03-20,Burnley,0.812,1.507,-0.695
|
| 1748 |
+
2026-03-20,Chelsea,1.701,1.134,0.567
|
| 1749 |
+
2026-03-20,Crystal Palace,1.133,1.122,0.011
|
| 1750 |
+
2026-03-20,Everton,1.06,1.14,-0.08
|
| 1751 |
+
2026-03-20,Fulham,1.185,1.228,-0.044
|
| 1752 |
+
2026-03-20,Leeds United,1.186,1.252,-0.067
|
| 1753 |
+
2026-03-20,Liverpool,1.599,1.019,0.579
|
| 1754 |
+
2026-03-20,Manchester City,1.674,0.906,0.768
|
| 1755 |
+
2026-03-20,Manchester United,1.444,1.159,0.285
|
| 1756 |
+
2026-03-20,Newcastle United,1.472,1.18,0.291
|
| 1757 |
+
2026-03-20,Nottingham Forest,1.029,1.2,-0.17
|
| 1758 |
+
2026-03-20,Sunderland,0.823,1.267,-0.444
|
| 1759 |
+
2026-03-20,Tottenham Hotspur,1.209,1.364,-0.154
|
| 1760 |
+
2026-03-20,West Ham United,1.16,1.363,-0.203
|
| 1761 |
+
2026-03-20,Wolverhampton Wanderers,0.877,1.311,-0.435
|
| 1762 |
+
2026-03-21,AFC Bournemouth,1.349,1.32,0.028
|
| 1763 |
+
2026-03-21,Arsenal,1.581,0.703,0.878
|
| 1764 |
+
2026-03-21,Aston Villa,1.19,1.201,-0.011
|
| 1765 |
+
2026-03-21,Brentford,1.342,1.207,0.135
|
| 1766 |
+
2026-03-21,Brighton and Hove Albion,1.261,1.094,0.167
|
| 1767 |
+
2026-03-21,Burnley,0.809,1.579,-0.77
|
| 1768 |
+
2026-03-21,Chelsea,1.616,1.17,0.445
|
| 1769 |
+
2026-03-21,Crystal Palace,1.117,1.134,-0.017
|
| 1770 |
+
2026-03-21,Everton,1.066,1.114,-0.048
|
| 1771 |
+
2026-03-21,Fulham,1.216,1.253,-0.036
|
| 1772 |
+
2026-03-21,Leeds United,1.122,1.222,-0.099
|
| 1773 |
+
2026-03-21,Liverpool,1.557,1.055,0.502
|
| 1774 |
+
2026-03-21,Manchester City,1.651,0.916,0.735
|
| 1775 |
+
2026-03-21,Manchester United,1.424,1.171,0.253
|
| 1776 |
+
2026-03-21,Newcastle United,1.451,1.193,0.258
|
| 1777 |
+
2026-03-21,Nottingham Forest,1.015,1.213,-0.198
|
| 1778 |
+
2026-03-21,Sunderland,0.811,1.281,-0.469
|
| 1779 |
+
2026-03-21,Tottenham Hotspur,1.192,1.378,-0.186
|
| 1780 |
+
2026-03-21,West Ham United,1.144,1.378,-0.234
|
| 1781 |
+
2026-03-21,Wolverhampton Wanderers,0.864,1.325,-0.461
|
| 1782 |
+
2026-03-22,AFC Bournemouth,1.341,1.324,0.018
|
| 1783 |
+
2026-03-22,Arsenal,1.573,0.705,0.868
|
| 1784 |
+
2026-03-22,Aston Villa,1.193,1.182,0.011
|
| 1785 |
+
2026-03-22,Brentford,1.335,1.21,0.125
|
| 1786 |
+
2026-03-22,Brighton and Hove Albion,1.255,1.097,0.158
|
| 1787 |
+
2026-03-22,Burnley,0.805,1.584,-0.779
|
| 1788 |
+
2026-03-22,Chelsea,1.607,1.174,0.434
|
| 1789 |
+
2026-03-22,Crystal Palace,1.111,1.137,-0.026
|
| 1790 |
+
2026-03-22,Everton,1.06,1.117,-0.057
|
| 1791 |
+
2026-03-22,Fulham,1.21,1.256,-0.046
|
| 1792 |
+
2026-03-22,Leeds United,1.117,1.225,-0.108
|
| 1793 |
+
2026-03-22,Liverpool,1.549,1.058,0.491
|
| 1794 |
+
2026-03-22,Manchester City,1.642,0.919,0.723
|
| 1795 |
+
2026-03-22,Manchester United,1.416,1.175,0.242
|
| 1796 |
+
2026-03-22,Newcastle United,1.412,1.248,0.164
|
| 1797 |
+
2026-03-22,Nottingham Forest,1.036,1.192,-0.156
|
| 1798 |
+
2026-03-22,Sunderland,0.847,1.258,-0.411
|
| 1799 |
+
2026-03-22,Tottenham Hotspur,1.164,1.418,-0.254
|
| 1800 |
+
2026-03-22,West Ham United,1.116,1.39,-0.275
|
| 1801 |
+
2026-03-22,Wolverhampton Wanderers,0.86,1.329,-0.469
|
| 1802 |
+
2026-04-10,AFC Bournemouth,1.341,1.324,0.018
|
| 1803 |
+
2026-04-10,Arsenal,1.573,0.705,0.868
|
| 1804 |
+
2026-04-10,Aston Villa,1.193,1.182,0.011
|
| 1805 |
+
2026-04-10,Brentford,1.335,1.21,0.125
|
| 1806 |
+
2026-04-10,Brighton and Hove Albion,1.255,1.097,0.158
|
| 1807 |
+
2026-04-10,Burnley,0.805,1.584,-0.779
|
| 1808 |
+
2026-04-10,Chelsea,1.607,1.174,0.434
|
| 1809 |
+
2026-04-10,Crystal Palace,1.111,1.137,-0.026
|
| 1810 |
+
2026-04-10,Everton,1.06,1.117,-0.057
|
| 1811 |
+
2026-04-10,Fulham,1.21,1.256,-0.046
|
| 1812 |
+
2026-04-10,Leeds United,1.117,1.225,-0.108
|
| 1813 |
+
2026-04-10,Liverpool,1.549,1.058,0.491
|
| 1814 |
+
2026-04-10,Manchester City,1.642,0.919,0.723
|
| 1815 |
+
2026-04-10,Manchester United,1.416,1.175,0.242
|
| 1816 |
+
2026-04-10,Newcastle United,1.412,1.248,0.164
|
| 1817 |
+
2026-04-10,Nottingham Forest,1.036,1.192,-0.156
|
| 1818 |
+
2026-04-10,Sunderland,0.847,1.258,-0.411
|
| 1819 |
+
2026-04-10,Tottenham Hotspur,1.164,1.418,-0.254
|
| 1820 |
+
2026-04-10,West Ham United,1.169,1.365,-0.195
|
| 1821 |
+
2026-04-10,Wolverhampton Wanderers,0.844,1.39,-0.546
|
| 1822 |
+
2026-04-11,AFC Bournemouth,1.38,1.3,0.08
|
| 1823 |
+
2026-04-11,Arsenal,1.567,0.715,0.852
|
| 1824 |
+
2026-04-11,Aston Villa,1.2,1.173,0.027
|
| 1825 |
+
2026-04-11,Brentford,1.386,1.225,0.161
|
| 1826 |
+
2026-04-11,Brighton and Hove Albion,1.272,1.076,0.196
|
| 1827 |
+
2026-04-11,Burnley,0.801,1.585,-0.784
|
| 1828 |
+
2026-04-11,Chelsea,1.617,1.165,0.452
|
| 1829 |
+
2026-04-11,Crystal Palace,1.118,1.129,-0.011
|
| 1830 |
+
2026-04-11,Everton,1.088,1.139,-0.051
|
| 1831 |
+
2026-04-11,Fulham,1.2,1.24,-0.041
|
| 1832 |
+
2026-04-11,Leeds United,1.123,1.216,-0.093
|
| 1833 |
+
2026-04-11,Liverpool,1.549,1.035,0.514
|
| 1834 |
+
2026-04-11,Manchester City,1.652,0.912,0.74
|
| 1835 |
+
2026-04-11,Manchester United,1.425,1.166,0.259
|
| 1836 |
+
2026-04-11,Newcastle United,1.42,1.239,0.181
|
| 1837 |
+
2026-04-11,Nottingham Forest,1.042,1.183,-0.141
|
| 1838 |
+
2026-04-11,Sunderland,0.852,1.249,-0.397
|
| 1839 |
+
2026-04-11,Tottenham Hotspur,1.171,1.408,-0.237
|
| 1840 |
+
2026-04-11,West Ham United,1.176,1.355,-0.179
|
| 1841 |
+
2026-04-11,Wolverhampton Wanderers,0.849,1.38,-0.532
|
| 1842 |
+
2026-04-12,AFC Bournemouth,1.377,1.297,0.08
|
| 1843 |
+
2026-04-12,Arsenal,1.564,0.714,0.85
|
| 1844 |
+
2026-04-12,Aston Villa,1.191,1.165,0.026
|
| 1845 |
+
2026-04-12,Brentford,1.383,1.222,0.161
|
| 1846 |
+
2026-04-12,Brighton and Hove Albion,1.27,1.074,0.196
|
| 1847 |
+
2026-04-12,Burnley,0.799,1.581,-0.782
|
| 1848 |
+
2026-04-12,Chelsea,1.568,1.197,0.371
|
| 1849 |
+
2026-04-12,Crystal Palace,1.149,1.117,0.032
|
| 1850 |
+
2026-04-12,Everton,1.086,1.136,-0.051
|
| 1851 |
+
2026-04-12,Fulham,1.197,1.237,-0.041
|
| 1852 |
+
2026-04-12,Leeds United,1.121,1.213,-0.093
|
| 1853 |
+
2026-04-12,Liverpool,1.545,1.033,0.513
|
| 1854 |
+
2026-04-12,Manchester City,1.702,0.886,0.817
|
| 1855 |
+
2026-04-12,Manchester United,1.422,1.163,0.258
|
| 1856 |
+
2026-04-12,Newcastle United,1.405,1.269,0.136
|
| 1857 |
+
2026-04-12,Nottingham Forest,1.035,1.175,-0.14
|
| 1858 |
+
2026-04-12,Sunderland,0.848,1.222,-0.375
|
| 1859 |
+
2026-04-12,Tottenham Hotspur,1.147,1.401,-0.254
|
| 1860 |
+
2026-04-12,West Ham United,1.174,1.352,-0.178
|
| 1861 |
+
2026-04-12,Wolverhampton Wanderers,0.847,1.377,-0.53
|
| 1862 |
+
2026-04-13,AFC Bournemouth,1.382,1.297,0.085
|
| 1863 |
+
2026-04-13,Arsenal,1.569,0.714,0.856
|
| 1864 |
+
2026-04-13,Aston Villa,1.195,1.165,0.031
|
| 1865 |
+
2026-04-13,Brentford,1.388,1.222,0.166
|
| 1866 |
+
2026-04-13,Brighton and Hove Albion,1.274,1.074,0.2
|
| 1867 |
+
2026-04-13,Burnley,0.802,1.581,-0.779
|
| 1868 |
+
2026-04-13,Chelsea,1.574,1.197,0.377
|
| 1869 |
+
2026-04-13,Crystal Palace,1.153,1.117,0.036
|
| 1870 |
+
2026-04-13,Everton,1.09,1.136,-0.047
|
| 1871 |
+
2026-04-13,Fulham,1.201,1.237,-0.036
|
| 1872 |
+
2026-04-13,Leeds United,1.173,1.191,-0.018
|
| 1873 |
+
2026-04-13,Liverpool,1.551,1.033,0.518
|
| 1874 |
+
2026-04-13,Manchester City,1.709,0.886,0.823
|
| 1875 |
+
2026-04-13,Manchester United,1.397,1.206,0.191
|
| 1876 |
+
2026-04-13,Newcastle United,1.41,1.269,0.142
|
| 1877 |
+
2026-04-13,Nottingham Forest,1.038,1.175,-0.137
|
| 1878 |
+
2026-04-13,Sunderland,0.851,1.222,-0.372
|
| 1879 |
+
2026-04-13,Tottenham Hotspur,1.151,1.401,-0.25
|
| 1880 |
+
2026-04-13,West Ham United,1.178,1.352,-0.174
|
| 1881 |
+
2026-04-13,Wolverhampton Wanderers,0.85,1.377,-0.527
|
| 1882 |
+
2026-04-18,AFC Bournemouth,1.404,1.285,0.119
|
| 1883 |
+
2026-04-18,Arsenal,1.538,0.718,0.819
|
| 1884 |
+
2026-04-18,Aston Villa,1.171,1.172,-0.001
|
| 1885 |
+
2026-04-18,Brentford,1.321,1.202,0.119
|
| 1886 |
+
2026-04-18,Brighton and Hove Albion,1.238,1.09,0.149
|
| 1887 |
+
2026-04-18,Burnley,0.786,1.591,-0.806
|
| 1888 |
+
2026-04-18,Chelsea,1.496,1.176,0.319
|
| 1889 |
+
2026-04-18,Crystal Palace,1.13,1.125,0.006
|
| 1890 |
+
2026-04-18,Everton,1.068,1.144,-0.076
|
| 1891 |
+
2026-04-18,Fulham,1.149,1.21,-0.062
|
| 1892 |
+
2026-04-18,Leeds United,1.192,1.181,0.011
|
| 1893 |
+
2026-04-18,Liverpool,1.52,1.039,0.48
|
| 1894 |
+
2026-04-18,Manchester City,1.674,0.892,0.783
|
| 1895 |
+
2026-04-18,Manchester United,1.33,1.178,0.152
|
| 1896 |
+
2026-04-18,Newcastle United,1.359,1.317,0.042
|
| 1897 |
+
2026-04-18,Nottingham Forest,1.018,1.183,-0.165
|
| 1898 |
+
2026-04-18,Sunderland,0.834,1.23,-0.397
|
| 1899 |
+
2026-04-18,Tottenham Hotspur,1.138,1.403,-0.265
|
| 1900 |
+
2026-04-18,West Ham United,1.154,1.361,-0.206
|
| 1901 |
+
2026-04-18,Wolverhampton Wanderers,0.82,1.434,-0.613
|
| 1902 |
+
2026-04-19,AFC Bournemouth,1.415,1.324,0.091
|
| 1903 |
+
2026-04-19,Arsenal,1.562,0.749,0.813
|
| 1904 |
+
2026-04-19,Aston Villa,1.254,1.259,-0.005
|
| 1905 |
+
2026-04-19,Brentford,1.331,1.238,0.093
|
| 1906 |
+
2026-04-19,Brighton and Hove Albion,1.248,1.123,0.125
|
| 1907 |
+
2026-04-19,Burnley,0.786,1.672,-0.885
|
| 1908 |
+
2026-04-19,Chelsea,1.508,1.212,0.296
|
| 1909 |
+
2026-04-19,Crystal Palace,1.139,1.159,-0.02
|
| 1910 |
+
2026-04-19,Everton,1.064,1.186,-0.122
|
| 1911 |
+
2026-04-19,Fulham,1.158,1.247,-0.089
|
| 1912 |
+
2026-04-19,Leeds United,1.202,1.217,-0.015
|
| 1913 |
+
2026-04-19,Liverpool,1.542,1.061,0.481
|
| 1914 |
+
2026-04-19,Manchester City,1.709,0.924,0.785
|
| 1915 |
+
2026-04-19,Manchester United,1.34,1.213,0.127
|
| 1916 |
+
2026-04-19,Newcastle United,1.37,1.357,0.013
|
| 1917 |
+
2026-04-19,Nottingham Forest,1.042,1.213,-0.171
|
| 1918 |
+
2026-04-19,Sunderland,0.878,1.339,-0.462
|
| 1919 |
+
2026-04-19,Tottenham Hotspur,1.147,1.446,-0.299
|
| 1920 |
+
2026-04-19,West Ham United,1.164,1.402,-0.238
|
| 1921 |
+
2026-04-19,Wolverhampton Wanderers,0.827,1.477,-0.65
|
| 1922 |
+
2026-04-20,AFC Bournemouth,1.415,1.324,0.091
|
| 1923 |
+
2026-04-20,Arsenal,1.562,0.749,0.813
|
| 1924 |
+
2026-04-20,Aston Villa,1.254,1.259,-0.005
|
| 1925 |
+
2026-04-20,Brentford,1.331,1.238,0.093
|
| 1926 |
+
2026-04-20,Brighton and Hove Albion,1.248,1.123,0.125
|
| 1927 |
+
2026-04-20,Burnley,0.786,1.672,-0.885
|
| 1928 |
+
2026-04-20,Chelsea,1.508,1.212,0.296
|
| 1929 |
+
2026-04-20,Crystal Palace,1.098,1.133,-0.035
|
| 1930 |
+
2026-04-20,Everton,1.064,1.186,-0.122
|
| 1931 |
+
2026-04-20,Fulham,1.158,1.247,-0.089
|
| 1932 |
+
2026-04-20,Leeds United,1.202,1.217,-0.015
|
| 1933 |
+
2026-04-20,Liverpool,1.542,1.061,0.481
|
| 1934 |
+
2026-04-20,Manchester City,1.709,0.924,0.785
|
| 1935 |
+
2026-04-20,Manchester United,1.34,1.213,0.127
|
| 1936 |
+
2026-04-20,Newcastle United,1.37,1.357,0.013
|
| 1937 |
+
2026-04-20,Nottingham Forest,1.042,1.213,-0.171
|
| 1938 |
+
2026-04-20,Sunderland,0.878,1.339,-0.462
|
| 1939 |
+
2026-04-20,Tottenham Hotspur,1.147,1.446,-0.299
|
| 1940 |
+
2026-04-20,West Ham United,1.136,1.355,-0.219
|
| 1941 |
+
2026-04-20,Wolverhampton Wanderers,0.827,1.477,-0.65
|
| 1942 |
+
2026-04-21,AFC Bournemouth,1.415,1.324,0.091
|
| 1943 |
+
2026-04-21,Arsenal,1.562,0.749,0.813
|
| 1944 |
+
2026-04-21,Aston Villa,1.254,1.259,-0.005
|
| 1945 |
+
2026-04-21,Brentford,1.331,1.238,0.093
|
| 1946 |
+
2026-04-21,Brighton and Hove Albion,1.288,1.085,0.203
|
| 1947 |
+
2026-04-21,Burnley,0.786,1.672,-0.885
|
| 1948 |
+
2026-04-21,Chelsea,1.451,1.248,0.203
|
| 1949 |
+
2026-04-21,Crystal Palace,1.098,1.133,-0.035
|
| 1950 |
+
2026-04-21,Everton,1.064,1.186,-0.122
|
| 1951 |
+
2026-04-21,Fulham,1.158,1.247,-0.089
|
| 1952 |
+
2026-04-21,Leeds United,1.202,1.217,-0.015
|
| 1953 |
+
2026-04-21,Liverpool,1.542,1.061,0.481
|
| 1954 |
+
2026-04-21,Manchester City,1.709,0.924,0.785
|
| 1955 |
+
2026-04-21,Manchester United,1.34,1.213,0.127
|
| 1956 |
+
2026-04-21,Newcastle United,1.37,1.357,0.013
|
| 1957 |
+
2026-04-21,Nottingham Forest,1.042,1.213,-0.171
|
| 1958 |
+
2026-04-21,Sunderland,0.878,1.339,-0.462
|
| 1959 |
+
2026-04-21,Tottenham Hotspur,1.147,1.446,-0.299
|
| 1960 |
+
2026-04-21,West Ham United,1.136,1.355,-0.219
|
| 1961 |
+
2026-04-21,Wolverhampton Wanderers,0.827,1.477,-0.65
|
| 1962 |
+
2026-04-22,AFC Bournemouth,1.407,1.318,0.089
|
| 1963 |
+
2026-04-22,Arsenal,1.56,0.747,0.813
|
| 1964 |
+
2026-04-22,Aston Villa,1.252,1.256,-0.004
|
| 1965 |
+
2026-04-22,Brentford,1.33,1.235,0.094
|
| 1966 |
+
2026-04-22,Brighton and Hove Albion,1.286,1.082,0.204
|
| 1967 |
+
2026-04-22,Burnley,0.777,1.667,-0.89
|
| 1968 |
+
2026-04-22,Chelsea,1.449,1.245,0.205
|
| 1969 |
+
2026-04-22,Crystal Palace,1.097,1.13,-0.034
|
| 1970 |
+
2026-04-22,Everton,1.063,1.183,-0.121
|
| 1971 |
+
2026-04-22,Fulham,1.156,1.244,-0.087
|
| 1972 |
+
2026-04-22,Leeds United,1.194,1.21,-0.016
|
| 1973 |
+
2026-04-22,Liverpool,1.54,1.058,0.482
|
| 1974 |
+
2026-04-22,Manchester City,1.714,0.912,0.802
|
| 1975 |
+
2026-04-22,Manchester United,1.339,1.21,0.129
|
| 1976 |
+
2026-04-22,Newcastle United,1.368,1.353,0.015
|
| 1977 |
+
2026-04-22,Nottingham Forest,1.04,1.21,-0.169
|
| 1978 |
+
2026-04-22,Sunderland,0.876,1.336,-0.459
|
| 1979 |
+
2026-04-22,Tottenham Hotspur,1.145,1.442,-0.297
|
| 1980 |
+
2026-04-22,West Ham United,1.134,1.351,-0.217
|
| 1981 |
+
2026-04-22,Wolverhampton Wanderers,0.826,1.473,-0.647
|