fantasydata 0.0.2 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +32 -8
- data/lib/fantasydata.rb +12 -0
- data/lib/fantasydata/api/box_score.rb +11 -6
- data/lib/fantasydata/api/league_leaders.rb +18 -0
- data/lib/fantasydata/api/score.rb +18 -0
- data/lib/fantasydata/box_score.rb +87 -0
- data/lib/fantasydata/boxscore/kicking_stat.rb +13 -0
- data/lib/fantasydata/boxscore/passing_stat.rb +16 -0
- data/lib/fantasydata/boxscore/player_defense_stat.rb +15 -0
- data/lib/fantasydata/boxscore/punting_stat.rb +12 -0
- data/lib/fantasydata/boxscore/receiving_stat.rb +15 -0
- data/lib/fantasydata/boxscore/return_stat.rb +16 -0
- data/lib/fantasydata/boxscore/rushing_stat.rb +14 -0
- data/lib/fantasydata/boxscore/score.rb +24 -0
- data/lib/fantasydata/boxscore/scoring_play.rb +11 -0
- data/lib/fantasydata/boxscore/team_defense_stat.rb +30 -0
- data/lib/fantasydata/client.rb +4 -0
- data/lib/fantasydata/score.rb +22 -0
- data/lib/fantasydata/version.rb +1 -1
- data/spec/fantasydata/api/box_score_spec.rb +188 -2
- data/spec/fantasydata/api/league_leaders_spec.rb +50 -0
- data/spec/fantasydata/api/scores_spec.rb +53 -0
- data/spec/fixtures/box_score/active.json +1 -0
- data/spec/fixtures/box_score/by_team.json +1 -0
- data/spec/fixtures/box_score/by_week.json +1 -0
- data/spec/fixtures/box_score/delta.json +1 -0
- data/spec/fixtures/box_score/delta_current.json +1 -0
- data/spec/fixtures/league_leaders/by_season.json +1 -0
- data/spec/fixtures/league_leaders/by_week.json +1 -0
- data/spec/fixtures/scores/by_season.json +1 -0
- data/spec/fixtures/scores/by_week.json +1 -0
- metadata +38 -2
data/lib/fantasydata/client.rb
CHANGED
@@ -7,11 +7,13 @@ require 'fantasydata/api/bye_weeks'
|
|
7
7
|
require 'fantasydata/api/player_details'
|
8
8
|
require 'fantasydata/api/fantasy'
|
9
9
|
require 'fantasydata/api/injury'
|
10
|
+
require 'fantasydata/api/league_leaders'
|
10
11
|
require 'fantasydata/api/news'
|
11
12
|
require 'fantasydata/api/week'
|
12
13
|
require 'fantasydata/api/team'
|
13
14
|
require 'fantasydata/api/player_stat'
|
14
15
|
require 'fantasydata/api/schedule'
|
16
|
+
require 'fantasydata/api/score'
|
15
17
|
require 'fantasydata/api/season'
|
16
18
|
require 'fantasydata/api/stadium'
|
17
19
|
require 'fantasydata/api/standings'
|
@@ -24,11 +26,13 @@ module Fantasydata
|
|
24
26
|
include Fantasydata::API::BoxScore
|
25
27
|
include Fantasydata::API::Fantasy
|
26
28
|
include Fantasydata::API::Injury
|
29
|
+
include Fantasydata::API::LeagueLeaders
|
27
30
|
include Fantasydata::API::News
|
28
31
|
include Fantasydata::API::PlayerDetails
|
29
32
|
include Fantasydata::API::PlayerStat
|
30
33
|
include Fantasydata::API::Team
|
31
34
|
include Fantasydata::API::Season
|
35
|
+
include Fantasydata::API::Score
|
32
36
|
include Fantasydata::API::Schedule
|
33
37
|
include Fantasydata::API::Stadium
|
34
38
|
include Fantasydata::API::Standings
|
@@ -0,0 +1,22 @@
|
|
1
|
+
require 'fantasydata/base'
|
2
|
+
|
3
|
+
module Fantasydata
|
4
|
+
class Score < Fantasydata::Base
|
5
|
+
attr_reader :game_key, :season_type, :season, :week, :date, :away_team,
|
6
|
+
:home_team, :away_score, :home_score, :channel, :point_spread,
|
7
|
+
:over_under, :quarter, :time_remaining, :possession, :down,
|
8
|
+
:distance, :yard_line, :yard_line_territory, :red_zone,
|
9
|
+
:away_score_quarter1, :away_score_quarter2, :away_score_quarter3,
|
10
|
+
:away_score_quarter4, :away_score_overtime, :home_score_quarter1,
|
11
|
+
:home_score_quarter2, :home_score_quarter3, :home_score_quarter4,
|
12
|
+
:home_score_overtime, :has_started, :is_in_progress, :is_over,
|
13
|
+
:has1st_quarter_started, :has2nd_quarter_started,
|
14
|
+
:has3rd_quarter_started, :has4th_quarter_started, :is_overtime,
|
15
|
+
:down_and_distance, :quarter_description, :stadium_id, :last_updated
|
16
|
+
|
17
|
+
def stadium
|
18
|
+
@stadium ||= Fantasydata::Stadium.new(@attrs[:stadium_details])
|
19
|
+
end
|
20
|
+
|
21
|
+
end
|
22
|
+
end
|
data/lib/fantasydata/version.rb
CHANGED
@@ -6,12 +6,198 @@ describe Fantasydata::API::BoxScore do
|
|
6
6
|
@client = new_test_client
|
7
7
|
end
|
8
8
|
|
9
|
-
describe '#
|
9
|
+
describe '#box_score_by_team' do
|
10
|
+
before do
|
11
|
+
stub_get("/nfl/v2/JSON/BoxScore/2012/12/MIN").
|
12
|
+
to_return(:body => fixture("box_score/by_team.json"),
|
13
|
+
:headers => {:content_type => "application/json; charset=utf-8"})
|
14
|
+
end
|
10
15
|
|
16
|
+
it "requests correct resource" do
|
17
|
+
@client.box_score_by_team(2012, 12, 'MIN')
|
18
|
+
expect(a_get("/nfl/v2/JSON/BoxScore/2012/12/MIN")).to have_been_made
|
19
|
+
end
|
20
|
+
|
21
|
+
it "returns byeweeks" do
|
22
|
+
box_score = @client.box_score_by_team(2012, 12, 'MIN')
|
23
|
+
|
24
|
+
expect(box_score).to be_an Fantasydata::BoxScore
|
25
|
+
|
26
|
+
expect(box_score.away_defense).to be_an Array
|
27
|
+
expect(box_score.away_defense.first).to be_an Fantasydata::Boxscore::PlayerDefenseStat
|
28
|
+
expect(box_score.away_defense.first.player_game_id).to eq 5922976
|
29
|
+
|
30
|
+
expect(box_score.away_fantasy_defense).to be_an Fantasydata::Boxscore::TeamDefenseStat
|
31
|
+
expect(box_score.away_fantasy_defense.game_key).to eq '201211206'
|
32
|
+
|
33
|
+
expect(box_score.away_kick_punt_returns).to be_an Array
|
34
|
+
expect(box_score.away_kick_punt_returns.first).to be_an Fantasydata::Boxscore::ReturnStat
|
35
|
+
expect(box_score.away_kick_punt_returns.first.player_game_id).to eq 5922989
|
36
|
+
|
37
|
+
expect(box_score.away_kicking).to be_an Array
|
38
|
+
expect(box_score.away_kicking.first).to be_an Fantasydata::Boxscore::KickingStat
|
39
|
+
expect(box_score.away_kicking.first.player_game_id).to eq 5922907
|
40
|
+
|
41
|
+
expect(box_score.away_passing).to be_an Array
|
42
|
+
expect(box_score.away_passing.first).to be_an Fantasydata::Boxscore::PassingStat
|
43
|
+
expect(box_score.away_passing.first.player_game_id).to eq 5922968
|
44
|
+
|
45
|
+
expect(box_score.away_punting).to be_an Array
|
46
|
+
expect(box_score.away_punting.first).to be_an Fantasydata::Boxscore::PuntingStat
|
47
|
+
expect(box_score.away_punting.first.player_game_id).to eq 5922982
|
48
|
+
|
49
|
+
expect(box_score.away_receiving).to be_an Array
|
50
|
+
expect(box_score.away_receiving.first).to be_an Fantasydata::Boxscore::ReceivingStat
|
51
|
+
expect(box_score.away_receiving.first.player_game_id).to eq 5922966
|
52
|
+
|
53
|
+
expect(box_score.away_rushing).to be_an Array
|
54
|
+
expect(box_score.away_rushing.first).to be_an Fantasydata::Boxscore::RushingStat
|
55
|
+
expect(box_score.away_rushing.first.player_game_id).to eq 5922970
|
56
|
+
|
57
|
+
expect(box_score.game).to be_an Fantasydata::GameStat
|
58
|
+
expect(box_score.game.game_key).to eq '201211206'
|
59
|
+
|
60
|
+
expect(box_score.home_defense).to be_an Array
|
61
|
+
expect(box_score.home_defense.first).to be_an Fantasydata::Boxscore::PlayerDefenseStat
|
62
|
+
expect(box_score.home_defense.first.player_game_id).to eq 5922923
|
63
|
+
|
64
|
+
expect(box_score.home_fantasy_defense).to be_an Fantasydata::Boxscore::TeamDefenseStat
|
65
|
+
expect(box_score.home_fantasy_defense.game_key).to eq '201211206'
|
66
|
+
|
67
|
+
expect(box_score.home_kick_punt_returns).to be_an Array
|
68
|
+
expect(box_score.home_kick_punt_returns.first).to be_an Fantasydata::Boxscore::ReturnStat
|
69
|
+
expect(box_score.home_kick_punt_returns.first.player_game_id).to eq 5922931
|
70
|
+
|
71
|
+
expect(box_score.home_kicking).to be_an Array
|
72
|
+
expect(box_score.home_kicking.first).to be_an Fantasydata::Boxscore::KickingStat
|
73
|
+
expect(box_score.home_kicking.first.player_game_id).to eq 5922906
|
74
|
+
|
75
|
+
expect(box_score.home_passing).to be_an Array
|
76
|
+
expect(box_score.home_passing.first).to be_an Fantasydata::Boxscore::PassingStat
|
77
|
+
expect(box_score.home_passing.first.player_game_id).to eq 5922916
|
78
|
+
|
79
|
+
expect(box_score.home_punting).to be_an Array
|
80
|
+
expect(box_score.home_punting.first).to be_an Fantasydata::Boxscore::PuntingStat
|
81
|
+
expect(box_score.home_punting.first.player_game_id).to eq 5922930
|
82
|
+
|
83
|
+
expect(box_score.home_receiving).to be_an Array
|
84
|
+
expect(box_score.home_receiving.first).to be_an Fantasydata::Boxscore::ReceivingStat
|
85
|
+
expect(box_score.home_receiving.first.player_game_id).to eq 5922908
|
86
|
+
|
87
|
+
expect(box_score.home_rushing).to be_an Array
|
88
|
+
expect(box_score.home_rushing.first).to be_an Fantasydata::Boxscore::RushingStat
|
89
|
+
expect(box_score.home_rushing.first.player_game_id).to eq 5922937
|
90
|
+
|
91
|
+
expect(box_score.score).to be_an Fantasydata::Boxscore::Score
|
92
|
+
expect(box_score.score.game_key).to eq '201211206'
|
93
|
+
|
94
|
+
expect(box_score.scoring_details).to be_an Array
|
95
|
+
expect(box_score.scoring_details.first).to be_an Fantasydata::ScoringDetail
|
96
|
+
expect(box_score.scoring_details.first.player_game_id).to eq 5922907
|
97
|
+
|
98
|
+
expect(box_score.scoring_plays).to be_an Array
|
99
|
+
expect(box_score.scoring_plays.first).to be_an Fantasydata::Boxscore::ScoringPlay
|
100
|
+
expect(box_score.scoring_plays.first.game_key).to eq '201211206'
|
101
|
+
end
|
11
102
|
end
|
12
103
|
|
13
|
-
describe '#
|
104
|
+
describe '#box_score_by_week' do
|
105
|
+
before do
|
106
|
+
stub_get("/nfl/v2/JSON/BoxScores/2012/7").
|
107
|
+
to_return(:body => fixture("box_score/by_week.json"),
|
108
|
+
:headers => {:content_type => "application/json; charset=utf-8"})
|
109
|
+
end
|
110
|
+
|
111
|
+
it "requests correct resource" do
|
112
|
+
@client.box_scores_by_week(2012, 7)
|
113
|
+
expect(a_get("/nfl/v2/JSON/BoxScores/2012/7")).to have_been_made
|
114
|
+
end
|
115
|
+
|
116
|
+
it "returns byeweeks" do
|
117
|
+
box_scores = @client.box_scores_by_week(2012, 7)
|
118
|
+
|
119
|
+
expect(box_scores).to be_an Array
|
120
|
+
|
121
|
+
expect(box_scores.count).to eq 3
|
122
|
+
expect(box_scores.first).to be_an Fantasydata::BoxScore
|
123
|
+
expect(box_scores.first.away_defense).to be_an Array
|
124
|
+
expect(box_scores.first.away_defense.first).to be_an Fantasydata::Boxscore::PlayerDefenseStat
|
125
|
+
expect(box_scores.first.away_defense.first.player_game_id).to eq 5915351
|
126
|
+
end
|
127
|
+
end
|
128
|
+
|
129
|
+
describe '#box_score_by_week' do
|
130
|
+
before do
|
131
|
+
stub_get("/nfl/v2/JSON/ActiveBoxScores").
|
132
|
+
to_return(:body => fixture("box_score/active.json"),
|
133
|
+
:headers => {:content_type => "application/json; charset=utf-8"})
|
134
|
+
end
|
135
|
+
|
136
|
+
it "requests correct resource" do
|
137
|
+
@client.box_scores_active
|
138
|
+
expect(a_get("/nfl/v2/JSON/ActiveBoxScores")).to have_been_made
|
139
|
+
end
|
140
|
+
|
141
|
+
it "returns byeweeks" do
|
142
|
+
box_scores = @client.box_scores_active
|
143
|
+
|
144
|
+
expect(box_scores).to be_an Array
|
145
|
+
|
146
|
+
expect(box_scores.count).to eq 3
|
147
|
+
expect(box_scores.first).to be_an Fantasydata::BoxScore
|
148
|
+
expect(box_scores.first.away_defense).to be_an Array
|
149
|
+
expect(box_scores.first.away_defense.first).to be_an Fantasydata::Boxscore::PlayerDefenseStat
|
150
|
+
expect(box_scores.first.away_defense.first.player_game_id).to eq 5915351
|
151
|
+
end
|
152
|
+
end
|
153
|
+
|
154
|
+
describe '#box_scores_delta' do
|
155
|
+
before do
|
156
|
+
stub_get("/nfl/v2/JSON/BoxScoresDelta/2014/12/1").
|
157
|
+
to_return(:body => fixture("box_score/delta.json"),
|
158
|
+
:headers => {:content_type => "application/json; charset=utf-8"})
|
159
|
+
end
|
160
|
+
|
161
|
+
it "requests correct resource" do
|
162
|
+
@client.box_scores_delta(2014, 12, 1)
|
163
|
+
expect(a_get("/nfl/v2/JSON/BoxScoresDelta/2014/12/1")).to have_been_made
|
164
|
+
end
|
165
|
+
|
166
|
+
it "returns byeweeks" do
|
167
|
+
box_scores = @client.box_scores_delta(2014, 12, 1)
|
168
|
+
|
169
|
+
expect(box_scores).to be_an Array
|
170
|
+
|
171
|
+
expect(box_scores.count).to eq 2
|
172
|
+
expect(box_scores.first).to be_an Fantasydata::BoxScore
|
173
|
+
expect(box_scores.first.away_defense).to be_an Array
|
174
|
+
expect(box_scores.first.away_defense.first).to be nil
|
175
|
+
end
|
176
|
+
end
|
177
|
+
|
178
|
+
describe '#box_scores_delta_current_week' do
|
179
|
+
before do
|
180
|
+
stub_get("/nfl/v2/JSON/RecentlyUpdatedBoxScores/12").
|
181
|
+
to_return(:body => fixture("box_score/delta_current.json"),
|
182
|
+
:headers => {:content_type => "application/json; charset=utf-8"})
|
183
|
+
end
|
184
|
+
|
185
|
+
it "requests correct resource" do
|
186
|
+
@client.box_scores_delta_current_week(12)
|
187
|
+
expect(a_get("/nfl/v2/JSON/RecentlyUpdatedBoxScores/12")).to have_been_made
|
188
|
+
end
|
189
|
+
|
190
|
+
it "returns byeweeks" do
|
191
|
+
box_scores = @client.box_scores_delta_current_week(12)
|
192
|
+
|
193
|
+
expect(box_scores).to be_an Array
|
14
194
|
|
195
|
+
expect(box_scores.count).to eq 3
|
196
|
+
expect(box_scores.first).to be_an Fantasydata::BoxScore
|
197
|
+
expect(box_scores.first.away_defense).to be_an Array
|
198
|
+
expect(box_scores.first.away_defense.first).to be_an Fantasydata::Boxscore::PlayerDefenseStat
|
199
|
+
expect(box_scores.first.away_defense.first.player_game_id).to eq 5915351
|
200
|
+
end
|
15
201
|
end
|
16
202
|
|
17
203
|
end
|
@@ -0,0 +1,50 @@
|
|
1
|
+
require 'helper'
|
2
|
+
|
3
|
+
describe Fantasydata::API::LeagueLeaders do
|
4
|
+
|
5
|
+
before do
|
6
|
+
@client = new_test_client
|
7
|
+
end
|
8
|
+
|
9
|
+
describe '#league_leaders_by_season' do
|
10
|
+
before do
|
11
|
+
stub_get("/nfl/v2/JSON/SeasonLeagueLeaders/2014/OFFENSE/FantasyPoints").
|
12
|
+
to_return(:body => fixture("league_leaders/by_season.json"),
|
13
|
+
:headers => {:content_type => "application/json; charset=utf-8"})
|
14
|
+
end
|
15
|
+
|
16
|
+
it "requests correct resource" do
|
17
|
+
@client.league_leaders_by_season(2014, 'offense', 'FantasyPoints')
|
18
|
+
expect(a_get("/nfl/v2/JSON/SeasonLeagueLeaders/2014/OFFENSE/FantasyPoints")).to have_been_made
|
19
|
+
end
|
20
|
+
|
21
|
+
it "returns league leaders" do
|
22
|
+
leaders = @client.league_leaders_by_season(2014, 'offense', 'FantasyPoints')
|
23
|
+
expect(leaders).to be_an Array
|
24
|
+
expect(leaders.first).to be_an Fantasydata::PlayerSeasonStat
|
25
|
+
expect(leaders.first.player_id).to eq 2593
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
describe '#league_leaders_by_week' do
|
30
|
+
before do
|
31
|
+
stub_get("/nfl/v2/JSON/GameLeagueLeaders/2014/11/OFFENSE/FantasyPoints").
|
32
|
+
to_return(:body => fixture("league_leaders/by_week.json"),
|
33
|
+
:headers => {:content_type => "application/json; charset=utf-8"})
|
34
|
+
end
|
35
|
+
|
36
|
+
it "requests correct resource" do
|
37
|
+
@client.league_leaders_by_week(2014, 11, 'offense', 'FantasyPoints')
|
38
|
+
expect(a_get("/nfl/v2/JSON/GameLeagueLeaders/2014/11/OFFENSE/FantasyPoints")).to have_been_made
|
39
|
+
end
|
40
|
+
|
41
|
+
it "returns league leaders" do
|
42
|
+
leaders = @client.league_leaders_by_week(2014, 11, 'offense', 'FantasyPoints')
|
43
|
+
expect(leaders).to be_an Array
|
44
|
+
expect(leaders.first).to be_an Fantasydata::PlayerGameStat
|
45
|
+
expect(leaders.first.player_id).to eq 15565
|
46
|
+
expect(leaders.first.game_key).to eq '201411114'
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
end
|
@@ -0,0 +1,53 @@
|
|
1
|
+
require 'helper'
|
2
|
+
|
3
|
+
describe Fantasydata::API::Score do
|
4
|
+
|
5
|
+
before do
|
6
|
+
@client = new_test_client
|
7
|
+
end
|
8
|
+
|
9
|
+
describe '#scores_by_season' do
|
10
|
+
before do
|
11
|
+
stub_get("/nfl/v2/JSON/Scores/2012").
|
12
|
+
to_return(:body => fixture("scores/by_season.json"),
|
13
|
+
:headers => {:content_type => "application/json; charset=utf-8"})
|
14
|
+
end
|
15
|
+
|
16
|
+
it "requests correct resource" do
|
17
|
+
@client.scores_by_season(2012)
|
18
|
+
expect(a_get("/nfl/v2/JSON/Scores/2012")).to have_been_made
|
19
|
+
end
|
20
|
+
|
21
|
+
it "returns scores" do
|
22
|
+
scores = @client.scores_by_season(2012)
|
23
|
+
|
24
|
+
expect(scores).to be_an Array
|
25
|
+
expect(scores.first).to be_an Fantasydata::Score
|
26
|
+
expect(scores.first.game_key).to eq '201210123'
|
27
|
+
expect(scores.first.away_score_quarter3).to eq 10
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
describe '#scores_by_week' do
|
32
|
+
before do
|
33
|
+
stub_get("/nfl/v2/JSON/ScoresByWeek/2012/11").
|
34
|
+
to_return(:body => fixture("scores/by_week.json"),
|
35
|
+
:headers => {:content_type => "application/json; charset=utf-8"})
|
36
|
+
end
|
37
|
+
|
38
|
+
it "requests correct resource" do
|
39
|
+
@client.scores_by_week(2012, 11)
|
40
|
+
expect(a_get("/nfl/v2/JSON/ScoresByWeek/2012/11")).to have_been_made
|
41
|
+
end
|
42
|
+
|
43
|
+
it "returns scores" do
|
44
|
+
scores = @client.scores_by_week(2012, 11)
|
45
|
+
|
46
|
+
expect(scores).to be_an Array
|
47
|
+
expect(scores.first).to be_an Fantasydata::Score
|
48
|
+
expect(scores.first.game_key).to eq '201211104'
|
49
|
+
expect(scores.first.away_score_quarter3).to eq 0
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
[{"AwayDefense":[{"PlayerGameID":5915351,"PlayerID":13484,"ShortName":"K.Wright","Name":"KJ Wright","Team":"SEA","Number":50,"Position":"OLB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":10.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":8,"Tackles":10,"TacklesForLoss":null},{"PlayerGameID":5915349,"PlayerID":4345,"ShortName":"L.Hill","Name":"Leroy Hill","Team":"SEA","Number":56,"Position":"OLB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":8,"Updated":null,"AssistedTackles":2,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":7,"Tackles":9,"TacklesForLoss":null},{"PlayerGameID":5915350,"PlayerID":14534,"ShortName":"B.Wagner","Name":"Bobby Wagner","Team":"SEA","Number":54,"Position":"ILB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":7.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":7,"Tackles":8,"TacklesForLoss":null},{"PlayerGameID":5915352,"PlayerID":13479,"ShortName":"R.Sherman","Name":"Richard Sherman","Team":"SEA","Number":25,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":8,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":1,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":1,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":4,"Tackles":4,"TacklesForLoss":null},{"PlayerGameID":5915354,"PlayerID":11598,"ShortName":"K.Chancellor","Name":"Kam Chancellor","Team":"SEA","Number":31,"Position":"SS","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":4,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":4,"Tackles":4,"TacklesForLoss":null},{"PlayerGameID":5915355,"PlayerID":11612,"ShortName":"E.Thomas","Name":"Earl Thomas","Team":"SEA","Number":29,"Position":"FS","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":4,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":4,"Tackles":4,"TacklesForLoss":null},{"PlayerGameID":5915345,"PlayerID":678,"ShortName":"R.Bryant","Name":"Red Bryant","Team":"SEA","Number":79,"Position":"DE","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":3,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":2,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915348,"PlayerID":12116,"ShortName":"C.Clemons","Name":"Chris Clemons","Team":"SEA","Number":91,"Position":"DE","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":2,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":2,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915353,"PlayerID":13687,"ShortName":"B.Browner","Name":"Brandon Browner","Team":"SEA","Number":39,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":6,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":4,"Interceptions":1,"PassesDefended":1,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":2,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915371,"PlayerID":12460,"ShortName":"C.McDonald","Name":"Clinton McDonald","Team":"SEA","Number":69,"Position":"DT","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":2,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":2,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915347,"PlayerID":292,"ShortName":"B.Mebane","Name":"Brandon Mebane","Team":"SEA","Number":92,"Position":"DT","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":1,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915360,"PlayerID":8116,"ShortName":"M.Trufant","Name":"Marcus Trufant","Team":"SEA","Number":23,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":1,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915363,"PlayerID":11589,"ShortName":"C.Maragos","Name":"Chris Maragos","Team":"SEA","Number":42,"Position":"FS","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":0,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":0,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915366,"PlayerID":13480,"ShortName":"M.Smith","Name":"Malcolm Smith","Team":"SEA","Number":53,"Position":"LB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":0,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":0,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915367,"PlayerID":5640,"ShortName":"H.Farwell","Name":"Heath Farwell","Team":"SEA","Number":55,"Position":"LB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":0,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":0,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915376,"PlayerID":322,"ShortName":"J.Jones","Name":"Jason Jones","Team":"SEA","Number":90,"Position":"DE","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":5.2,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":2,"Sacks":1,"SoloTackles":1,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915377,"PlayerID":14527,"ShortName":"G.Scruggs","Name":"Greg Scruggs","Team":"SEA","Number":98,"Position":"DE","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":5,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":1,"SoloTackles":1,"Tackles":1,"TacklesForLoss":null}],"AwayFantasyDefense":{"ScoringDetails":[],"GameKey":"201210731","SeasonType":1,"Season":2012,"Week":7,"Date":"2012-10-18T20:20:00","Team":"SEA","Opponent":"SF","PointsAllowed":13,"TouchdownsScored":0,"SoloTackles":46,"AssistedTackles":4,"Sacks":2,"SackYards":2,"PassesDefended":2,"FumblesForced":1,"FumblesRecovered":0,"FumbleReturnYards":0,"FumbleReturnTouchdowns":0,"Interceptions":1,"InterceptionReturnYards":4,"InterceptionReturnTouchdowns":0,"BlockedKicks":0,"Safeties":0,"PuntReturns":2,"PuntReturnYards":5,"PuntReturnTouchdowns":0,"PuntReturnLong":5,"KickReturns":0,"KickReturnYards":0,"KickReturnTouchdowns":0,"KickReturnLong":0,"BlockedKickReturnTouchdowns":0,"FieldGoalReturnTouchdowns":0,"FantasyPointsAllowed":52.1,"QuarterbackFantasyPointsAllowed":8.6,"RunningbackFantasyPointsAllowed":22.7,"WideReceiverFantasyPointsAllowed":6.6,"TightEndFantasyPointsAllowed":7.2,"KickerFantasyPointsAllowed":7,"BlockedKickReturnYards":0,"FieldGoalReturnYards":0,"QuarterbackHits":3,"TacklesForLoss":4,"DefensiveTouchdowns":0,"SpecialTeamsTouchdowns":0,"IsGameOver":true,"FantasyPoints":8,"Stadium":"Candlestick Park","Temperature":80,"Humidity":30,"WindSpeed":15,"ThirdDownAttempts":11,"ThirdDownConversions":3,"FourthDownAttempts":0,"FourthDownConversions":0,"PointsAllowedByDefenseSpecialTeams":13,"FanDuelSalary":null,"DraftKingsSalary":null,"FantasyDataSalary":null,"VictivSalary":null},"AwayKickPuntReturns":[{"PlayerGameID":5915362,"PlayerID":12136,"ShortName":"L.Washington","Name":"Leon Washington","Team":"SEA","Number":33,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":0.4,"Updated":null,"KickReturnLong":0,"KickReturnTouchdowns":0,"KickReturnYards":0,"KickReturnYardsPerAttempt":0,"KickReturns":0,"PuntReturnLong":5,"PuntReturnTouchdowns":0,"PuntReturnYards":5,"PuntReturnYardsPerAttempt":2.5,"PuntReturns":2}],"AwayKicking":[{"PlayerGameID":5915281,"PlayerID":12594,"ShortName":"S.Hauschka","Name":"Steven Hauschka","Team":"SEA","Number":4,"Position":"K","PositionCategory":"ST","FantasyPosition":"K","FantasyPoints":6,"Updated":null,"ExtraPointsAttempted":0,"ExtraPointsMade":0,"FieldGoalPercentage":66.7,"FieldGoalsAttempted":3,"FieldGoalsLongestMade":52,"FieldGoalsMade":2}],"AwayPassing":[{"PlayerGameID":5915342,"PlayerID":14536,"ShortName":"R.Wilson","Name":"Russell Wilson","Team":"SEA","Number":3,"Position":"QB","PositionCategory":"OFF","FantasyPosition":"QB","FantasyPoints":3.88,"Updated":null,"PassingAttempts":23,"PassingCompletionPercentage":39.1,"PassingCompletions":9,"PassingInterceptions":1,"PassingLong":36,"PassingRating":38.68,"PassingSackYards":7,"PassingSacks":2,"PassingTouchdowns":0,"PassingYards":122,"PassingYardsPerAttempt":5.3,"PassingYardsPerCompletion":13.6,"TwoPointConversionPasses":0}],"AwayPunting":[{"PlayerGameID":5915356,"PlayerID":3764,"ShortName":"J.Ryan","Name":"Jon Ryan","Team":"SEA","Number":9,"Position":"P","PositionCategory":"ST","FantasyPosition":"P","FantasyPoints":0,"Updated":null,"PuntAverage":48.5,"PuntInside20":1,"PuntTouchbacks":0,"PuntYards":194,"Punts":4}],"AwayReceiving":[{"PlayerGameID":5915374,"PlayerID":6138,"ShortName":"B.Obomanu","Name":"Ben Obomanu","Team":"SEA","Number":87,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":5,"Updated":null,"FumblesLost":0,"ReceivingLong":36,"ReceivingTargets":4,"ReceivingTouchdowns":0,"ReceivingYards":50,"ReceivingYardsPerReception":16.7,"ReceivingYardsPerTarget":12.5,"ReceptionPercentage":75,"Receptions":3,"TwoPointConversionReceptions":0},{"PlayerGameID":5915334,"PlayerID":459,"ShortName":"S.Rice","Name":"Sidney Rice","Team":"SEA","Number":18,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":3.2,"Updated":null,"FumblesLost":0,"ReceivingLong":27,"ReceivingTargets":4,"ReceivingTouchdowns":0,"ReceivingYards":32,"ReceivingYardsPerReception":16,"ReceivingYardsPerTarget":8,"ReceptionPercentage":50,"Receptions":2,"TwoPointConversionReceptions":0},{"PlayerGameID":5915375,"PlayerID":13460,"ShortName":"D.Baldwin","Name":"Doug Baldwin","Team":"SEA","Number":89,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":1.5,"Updated":null,"FumblesLost":0,"ReceivingLong":8,"ReceivingTargets":2,"ReceivingTouchdowns":0,"ReceivingYards":15,"ReceivingYardsPerReception":7.5,"ReceivingYardsPerTarget":7.5,"ReceptionPercentage":100,"Receptions":2,"TwoPointConversionReceptions":0},{"PlayerGameID":5915344,"PlayerID":12386,"ShortName":"M.Lynch","Name":"Marshawn Lynch","Team":"SEA","Number":24,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":11.6,"Updated":null,"FumblesLost":0,"ReceivingLong":13,"ReceivingTargets":2,"ReceivingTouchdowns":0,"ReceivingYards":13,"ReceivingYardsPerReception":13,"ReceivingYardsPerTarget":6.5,"ReceptionPercentage":50,"Receptions":1,"TwoPointConversionReceptions":0},{"PlayerGameID":5915343,"PlayerID":12273,"ShortName":"M.Robinson","Name":"Michael Robinson","Team":"SEA","Number":26,"Position":"FB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":1.4,"Updated":null,"FumblesLost":0,"ReceivingLong":12,"ReceivingTargets":1,"ReceivingTouchdowns":0,"ReceivingYards":12,"ReceivingYardsPerReception":12,"ReceivingYardsPerTarget":12,"ReceptionPercentage":100,"Receptions":1,"TwoPointConversionReceptions":0},{"PlayerGameID":5915340,"PlayerID":4484,"ShortName":"Z.Miller","Name":"Zach Miller","Team":"SEA","Number":86,"Position":"TE","PositionCategory":"OFF","FantasyPosition":"TE","FantasyPoints":0,"Updated":null,"FumblesLost":0,"ReceivingLong":0,"ReceivingTargets":2,"ReceivingTouchdowns":0,"ReceivingYards":0,"ReceivingYardsPerReception":0,"ReceivingYardsPerTarget":0,"ReceptionPercentage":0,"Receptions":0,"TwoPointConversionReceptions":0},{"PlayerGameID":5915341,"PlayerID":11611,"ShortName":"G.Tate","Name":"Golden Tate","Team":"SEA","Number":81,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":0,"Updated":null,"FumblesLost":0,"ReceivingLong":0,"ReceivingTargets":3,"ReceivingTouchdowns":0,"ReceivingYards":0,"ReceivingYardsPerReception":0,"ReceivingYardsPerTarget":0,"ReceptionPercentage":0,"Receptions":0,"TwoPointConversionReceptions":0},{"PlayerGameID":5915357,"PlayerID":3816,"ShortName":"B.Edwards","Name":"Braylon Edwards","Team":"SEA","Number":17,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":0,"Updated":null,"FumblesLost":0,"ReceivingLong":0,"ReceivingTargets":2,"ReceivingTouchdowns":0,"ReceivingYards":0,"ReceivingYardsPerReception":0,"ReceivingYardsPerTarget":0,"ReceptionPercentage":0,"Receptions":0,"TwoPointConversionReceptions":0},{"PlayerGameID":5915359,"PlayerID":14533,"ShortName":"R.Turbin","Name":"Robert Turbin","Team":"SEA","Number":22,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":1.7,"Updated":null,"FumblesLost":0,"ReceivingLong":0,"ReceivingTargets":1,"ReceivingTouchdowns":0,"ReceivingYards":0,"ReceivingYardsPerReception":0,"ReceivingYardsPerTarget":0,"ReceptionPercentage":0,"Receptions":0,"TwoPointConversionReceptions":0},{"PlayerGameID":5915372,"PlayerID":10290,"ShortName":"E.Moore","Name":"Evan Moore","Team":"SEA","Number":82,"Position":"TE","PositionCategory":"OFF","FantasyPosition":"TE","FantasyPoints":0,"Updated":null,"FumblesLost":0,"ReceivingLong":0,"ReceivingTargets":1,"ReceivingTouchdowns":0,"ReceivingYards":0,"ReceivingYardsPerReception":0,"ReceivingYardsPerTarget":0,"ReceptionPercentage":0,"Receptions":0,"TwoPointConversionReceptions":0},{"PlayerGameID":5915373,"PlayerID":11603,"ShortName":"A.McCoy","Name":"Anthony McCoy","Team":"SEA","Number":85,"Position":"TE","PositionCategory":"OFF","FantasyPosition":"TE","FantasyPoints":0,"Updated":null,"FumblesLost":0,"ReceivingLong":0,"ReceivingTargets":1,"ReceivingTouchdowns":0,"ReceivingYards":0,"ReceivingYardsPerReception":0,"ReceivingYardsPerTarget":0,"ReceptionPercentage":0,"Receptions":0,"TwoPointConversionReceptions":0}],"AwayRushing":[{"PlayerGameID":5915344,"PlayerID":12386,"ShortName":"M.Lynch","Name":"Marshawn Lynch","Team":"SEA","Number":24,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":11.6,"Updated":null,"FumblesLost":0,"RushingAttempts":19,"RushingLong":15,"RushingTouchdowns":0,"RushingYards":103,"RushingYardsPerAttempt":5.4,"TwoPointConversionRuns":0},{"PlayerGameID":5915359,"PlayerID":14533,"ShortName":"R.Turbin","Name":"Robert Turbin","Team":"SEA","Number":22,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":1.7,"Updated":null,"FumblesLost":0,"RushingAttempts":4,"RushingLong":15,"RushingTouchdowns":0,"RushingYards":17,"RushingYardsPerAttempt":4.2,"TwoPointConversionRuns":0},{"PlayerGameID":5915342,"PlayerID":14536,"ShortName":"R.Wilson","Name":"Russell Wilson","Team":"SEA","Number":3,"Position":"QB","PositionCategory":"OFF","FantasyPosition":"QB","FantasyPoints":3.88,"Updated":null,"FumblesLost":0,"RushingAttempts":3,"RushingLong":9,"RushingTouchdowns":0,"RushingYards":10,"RushingYardsPerAttempt":3.3,"TwoPointConversionRuns":0},{"PlayerGameID":5915362,"PlayerID":12136,"ShortName":"L.Washington","Name":"Leon Washington","Team":"SEA","Number":33,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":0.4,"Updated":null,"FumblesLost":0,"RushingAttempts":2,"RushingLong":2,"RushingTouchdowns":0,"RushingYards":4,"RushingYardsPerAttempt":2,"TwoPointConversionRuns":0},{"PlayerGameID":5915343,"PlayerID":12273,"ShortName":"M.Robinson","Name":"Michael Robinson","Team":"SEA","Number":26,"Position":"FB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":1.4,"Updated":null,"FumblesLost":0,"RushingAttempts":1,"RushingLong":2,"RushingTouchdowns":0,"RushingYards":2,"RushingYardsPerAttempt":2,"TwoPointConversionRuns":0}],"Game":{"StadiumDetails":null,"GameKey":"201210731","Date":"2012-10-18T20:20:00","SeasonType":1,"Season":2012,"Week":7,"Stadium":"Candlestick Park","PlayingSurface":"Grass","Temperature":80,"Humidity":30,"WindSpeed":15,"AwayTeam":"SEA","HomeTeam":"SF","AwayScore":6,"HomeScore":13,"TotalScore":19,"OverUnder":37.5,"PointSpread":-9,"AwayScoreQuarter1":3,"AwayScoreQuarter2":3,"AwayScoreQuarter3":0,"AwayScoreQuarter4":0,"AwayScoreOvertime":0,"HomeScoreQuarter1":3,"HomeScoreQuarter2":0,"HomeScoreQuarter3":7,"HomeScoreQuarter4":3,"HomeScoreOvertime":0,"AwayTimeOfPossession":"27:59","HomeTimeOfPossession":"32:1","AwayFirstDowns":13,"HomeFirstDowns":18,"AwayFirstDownsByRushing":6,"HomeFirstDownsByRushing":8,"AwayFirstDownsByPassing":5,"HomeFirstDownsByPassing":9,"AwayFirstDownsByPenalty":2,"HomeFirstDownsByPenalty":1,"AwayOffensivePlays":54,"HomeOffensivePlays":57,"AwayOffensiveYards":251,"HomeOffensiveYards":313,"AwayOffensiveYardsPerPlay":4.6,"HomeOffensiveYardsPerPlay":5.5,"AwayTouchdowns":0,"HomeTouchdowns":1,"AwayRushingAttempts":29,"HomeRushingAttempts":32,"AwayRushingYards":136,"HomeRushingYards":175,"AwayRushingYardsPerAttempt":4.7,"HomeRushingYardsPerAttempt":5.5,"AwayRushingTouchdowns":0,"HomeRushingTouchdowns":0,"AwayPassingAttempts":23,"HomePassingAttempts":23,"AwayPassingCompletions":9,"HomePassingCompletions":14,"AwayPassingYards":115,"HomePassingYards":138,"AwayPassingTouchdowns":0,"HomePassingTouchdowns":1,"AwayPassingInterceptions":1,"HomePassingInterceptions":1,"AwayPassingYardsPerAttempt":5,"HomePassingYardsPerAttempt":6,"AwayPassingYardsPerCompletion":12.8,"HomePassingYardsPerCompletion":9.9,"AwayCompletionPercentage":39.1,"HomeCompletionPercentage":60.9,"AwayPasserRating":37.41,"HomePasserRating":74.18,"AwayThirdDownAttempts":13,"HomeThirdDownAttempts":11,"AwayThirdDownConversions":4,"HomeThirdDownConversions":3,"AwayThirdDownPercentage":30.8,"HomeThirdDownPercentage":27.3,"AwayFourthDownAttempts":1,"HomeFourthDownAttempts":0,"AwayFourthDownConversions":0,"HomeFourthDownConversions":0,"AwayFourthDownPercentage":0,"HomeFourthDownPercentage":0,"AwayRedZoneAttempts":1,"HomeRedZoneAttempts":4,"AwayRedZoneConversions":0,"HomeRedZoneConversions":1,"AwayGoalToGoAttempts":0,"HomeGoalToGoAttempts":1,"AwayGoalToGoConversions":0,"HomeGoalToGoConversions":0,"AwayReturnYards":9,"HomeReturnYards":71,"AwayPenalties":3,"HomePenalties":5,"AwayPenaltyYards":20,"HomePenaltyYards":40,"AwayFumbles":1,"HomeFumbles":1,"AwayFumblesLost":0,"HomeFumblesLost":0,"AwayTimesSacked":2,"HomeTimesSacked":2,"AwayTimesSackedYards":7,"HomeTimesSackedYards":2,"AwaySafeties":0,"HomeSafeties":0,"AwayPunts":4,"HomePunts":5,"AwayPuntYards":194,"HomePuntYards":228,"AwayPuntAverage":48.5,"HomePuntAverage":45.6,"AwayGiveaways":1,"HomeGiveaways":1,"AwayTakeaways":1,"HomeTakeaways":1,"AwayTurnoverDifferential":0,"HomeTurnoverDifferential":0,"AwayKickoffs":3,"HomeKickoffs":4,"AwayKickoffsInEndZone":2,"HomeKickoffsInEndZone":4,"AwayKickoffTouchbacks":1,"HomeKickoffTouchbacks":4,"AwayPuntsHadBlocked":0,"HomePuntsHadBlocked":0,"AwayPuntNetAverage":31,"HomePuntNetAverage":44.6,"AwayExtraPointKickingAttempts":0,"HomeExtraPointKickingAttempts":1,"AwayExtraPointKickingConversions":0,"HomeExtraPointKickingConversions":1,"AwayExtraPointsHadBlocked":0,"HomeExtraPointsHadBlocked":0,"AwayExtraPointPassingAttempts":0,"HomeExtraPointPassingAttempts":0,"AwayExtraPointPassingConversions":0,"HomeExtraPointPassingConversions":0,"AwayExtraPointRushingAttempts":0,"HomeExtraPointRushingAttempts":0,"AwayExtraPointRushingConversions":0,"HomeExtraPointRushingConversions":0,"AwayFieldGoalAttempts":3,"HomeFieldGoalAttempts":2,"AwayFieldGoalsMade":2,"HomeFieldGoalsMade":2,"AwayFieldGoalsHadBlocked":0,"HomeFieldGoalsHadBlocked":0,"AwayPuntReturns":2,"HomePuntReturns":3,"AwayPuntReturnYards":5,"HomePuntReturnYards":70,"AwayKickReturns":0,"HomeKickReturns":2,"AwayKickReturnYards":0,"HomeKickReturnYards":41,"AwayInterceptionReturns":1,"HomeInterceptionReturns":1,"AwayInterceptionReturnYards":4,"HomeInterceptionReturnYards":1,"AwaySoloTackles":46,"AwayAssistedTackles":4,"AwayQuarterbackHits":3,"AwayTacklesForLoss":4,"AwaySacks":2,"AwaySackYards":2,"AwayPassesDefended":2,"AwayFumblesForced":1,"AwayFumblesRecovered":0,"AwayFumbleReturnYards":0,"AwayFumbleReturnTouchdowns":0,"AwayInterceptionReturnTouchdowns":0,"AwayBlockedKicks":0,"AwayPuntReturnTouchdowns":0,"AwayPuntReturnLong":5,"AwayKickReturnTouchdowns":0,"AwayKickReturnLong":0,"AwayBlockedKickReturnYards":0,"AwayBlockedKickReturnTouchdowns":0,"AwayFieldGoalReturnYards":0,"AwayFieldGoalReturnTouchdowns":0,"AwayPuntNetYards":124,"HomeSoloTackles":39,"HomeAssistedTackles":10,"HomeQuarterbackHits":3,"HomeTacklesForLoss":3,"HomeSacks":2,"HomeSackYards":7,"HomePassesDefended":6,"HomeFumblesForced":0,"HomeFumblesRecovered":0,"HomeFumbleReturnYards":0,"HomeFumbleReturnTouchdowns":0,"HomeInterceptionReturnTouchdowns":0,"HomeBlockedKicks":0,"HomePuntReturnTouchdowns":0,"HomePuntReturnLong":38,"HomeKickReturnTouchdowns":0,"HomeKickReturnLong":26,"HomeBlockedKickReturnYards":0,"HomeBlockedKickReturnTouchdowns":0,"HomeFieldGoalReturnYards":0,"HomeFieldGoalReturnTouchdowns":0,"HomePuntNetYards":223,"IsGameOver":true,"GameID":62609,"StadiumID":null,"AwayTwoPointConversionReturns":null,"HomeTwoPointConversionReturns":null},"HomeDefense":[{"PlayerGameID":5915295,"PlayerID":7534,"ShortName":"J.Smith","Name":"Justin Smith","Team":"SF","Number":94,"Position":"DT","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":9,"Updated":null,"AssistedTackles":2,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":7,"Tackles":9,"TacklesForLoss":null},{"PlayerGameID":5915298,"PlayerID":511,"ShortName":"P.Willis","Name":"Patrick Willis","Team":"SF","Number":52,"Position":"ILB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":9.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":2,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":7,"Tackles":8,"TacklesForLoss":null},{"PlayerGameID":5915297,"PlayerID":11578,"ShortName":"N.Bowman","Name":"NaVorro Bowman","Team":"SF","Number":53,"Position":"ILB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":11,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":1,"SoloTackles":7,"Tackles":7,"TacklesForLoss":null},{"PlayerGameID":5915299,"PlayerID":13453,"ShortName":"Ald.Smith","Name":"Aldon Smith","Team":"SF","Number":99,"Position":"OLB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":8.2,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":7,"Sacks":1,"SoloTackles":3,"Tackles":4,"TacklesForLoss":null},{"PlayerGameID":5915300,"PlayerID":206,"ShortName":"C.Rogers","Name":"Carlos Rogers","Team":"SF","Number":22,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":4.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":3,"Tackles":4,"TacklesForLoss":null},{"PlayerGameID":5915301,"PlayerID":7350,"ShortName":"T.Brown","Name":"Tarell Brown","Team":"SF","Number":25,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":3.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":3,"Tackles":4,"TacklesForLoss":null},{"PlayerGameID":5915302,"PlayerID":5442,"ShortName":"D.Whitner","Name":"Donte Whitner","Team":"SF","Number":31,"Position":"SS","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":2.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":2,"Tackles":3,"TacklesForLoss":null},{"PlayerGameID":5915303,"PlayerID":5940,"ShortName":"D.Goldson","Name":"Dashon Goldson","Team":"SF","Number":38,"Position":"FS","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":7.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":1,"Interceptions":1,"PassesDefended":2,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":2,"Tackles":3,"TacklesForLoss":null},{"PlayerGameID":5915293,"PlayerID":4060,"ShortName":"R.McDonald","Name":"Ray McDonald","Team":"SF","Number":91,"Position":"DT","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":1.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915296,"PlayerID":1248,"ShortName":"A.Brooks","Name":"Ahmad Brooks","Team":"SF","Number":55,"Position":"OLB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":1.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915313,"PlayerID":13432,"ShortName":"C.Culliver","Name":"Chris Culliver","Team":"SF","Number":29,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":4,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":2,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":2,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915294,"PlayerID":5572,"ShortName":"I.Sopoaga","Name":"Isaac Sopoaga","Team":"SF","Number":90,"Position":"NT","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":1,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915310,"PlayerID":11579,"ShortName":"T.Brock","Name":"Tramaine Brock","Team":"SF","Number":26,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":0,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":0,"Tackles":1,"TacklesForLoss":null}],"HomeFantasyDefense":{"ScoringDetails":[],"GameKey":"201210731","SeasonType":1,"Season":2012,"Week":7,"Date":"2012-10-18T20:20:00","Team":"SF","Opponent":"SEA","PointsAllowed":6,"TouchdownsScored":0,"SoloTackles":39,"AssistedTackles":10,"Sacks":2,"SackYards":7,"PassesDefended":6,"FumblesForced":0,"FumblesRecovered":0,"FumbleReturnYards":0,"FumbleReturnTouchdowns":0,"Interceptions":1,"InterceptionReturnYards":1,"InterceptionReturnTouchdowns":0,"BlockedKicks":0,"Safeties":0,"PuntReturns":3,"PuntReturnYards":70,"PuntReturnTouchdowns":0,"PuntReturnLong":38,"KickReturns":2,"KickReturnYards":41,"KickReturnTouchdowns":0,"KickReturnLong":26,"BlockedKickReturnTouchdowns":0,"FieldGoalReturnTouchdowns":0,"FantasyPointsAllowed":34.68,"QuarterbackFantasyPointsAllowed":3.88,"RunningbackFantasyPointsAllowed":15.1,"WideReceiverFantasyPointsAllowed":9.7,"TightEndFantasyPointsAllowed":0,"KickerFantasyPointsAllowed":6,"BlockedKickReturnYards":0,"FieldGoalReturnYards":0,"QuarterbackHits":3,"TacklesForLoss":3,"DefensiveTouchdowns":0,"SpecialTeamsTouchdowns":0,"IsGameOver":true,"FantasyPoints":11,"Stadium":"Candlestick Park","Temperature":80,"Humidity":30,"WindSpeed":15,"ThirdDownAttempts":13,"ThirdDownConversions":4,"FourthDownAttempts":1,"FourthDownConversions":0,"PointsAllowedByDefenseSpecialTeams":6,"FanDuelSalary":null,"DraftKingsSalary":null,"FantasyDataSalary":null,"VictivSalary":null},"HomeKickPuntReturns":[{"PlayerGameID":5915307,"PlayerID":12109,"ShortName":"T.Ginn","Name":"Ted Ginn","Team":"SF","Number":19,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":0,"Updated":null,"KickReturnLong":26,"KickReturnTouchdowns":0,"KickReturnYards":41,"KickReturnYardsPerAttempt":20.5,"KickReturns":2,"PuntReturnLong":38,"PuntReturnTouchdowns":0,"PuntReturnYards":70,"PuntReturnYardsPerAttempt":23.3,"PuntReturns":3}],"HomeKicking":[{"PlayerGameID":5915280,"PlayerID":5352,"ShortName":"D.Akers","Name":"David Akers","Team":"SF","Number":2,"Position":"K","PositionCategory":"ST","FantasyPosition":"K","FantasyPoints":7,"Updated":null,"ExtraPointsAttempted":1,"ExtraPointsMade":1,"FieldGoalPercentage":100,"FieldGoalsAttempted":2,"FieldGoalsLongestMade":38,"FieldGoalsMade":2}],"HomePassing":[{"PlayerGameID":5915290,"PlayerID":6739,"ShortName":"A.Smith","Name":"Alex Smith","Team":"SF","Number":11,"Position":"QB","PositionCategory":"OFF","FantasyPosition":"QB","FantasyPoints":8.7,"Updated":null,"PassingAttempts":23,"PassingCompletionPercentage":60.9,"PassingCompletions":14,"PassingInterceptions":1,"PassingLong":18,"PassingRating":74.55,"PassingSackYards":2,"PassingSacks":2,"PassingTouchdowns":1,"PassingYards":140,"PassingYardsPerAttempt":6.1,"PassingYardsPerCompletion":10,"TwoPointConversionPasses":0}],"HomePunting":[{"PlayerGameID":5915304,"PlayerID":3100,"ShortName":"A.Lee","Name":"Andy Lee","Team":"SF","Number":4,"Position":"P","PositionCategory":"ST","FantasyPosition":"P","FantasyPoints":0,"Updated":null,"PuntAverage":45.6,"PuntInside20":4,"PuntTouchbacks":0,"PuntYards":228,"Punts":5}],"HomeReceiving":[{"PlayerGameID":5915291,"PlayerID":5820,"ShortName":"F.Gore","Name":"Frank Gore","Team":"SF","Number":21,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":18.2,"Updated":null,"FumblesLost":0,"ReceivingLong":15,"ReceivingTargets":6,"ReceivingTouchdowns":0,"ReceivingYards":51,"ReceivingYardsPerReception":10.2,"ReceivingYardsPerTarget":8.5,"ReceptionPercentage":83.3,"Receptions":5,"TwoPointConversionReceptions":0},{"PlayerGameID":5915282,"PlayerID":9331,"ShortName":"M.Crabtree","Name":"Michael Crabtree","Team":"SF","Number":15,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":3.1,"Updated":null,"FumblesLost":0,"ReceivingLong":16,"ReceivingTargets":6,"ReceivingTouchdowns":0,"ReceivingYards":31,"ReceivingYardsPerReception":7.8,"ReceivingYardsPerTarget":5.2,"ReceptionPercentage":66.7,"Receptions":4,"TwoPointConversionReceptions":0},{"PlayerGameID":5915306,"PlayerID":11594,"ShortName":"K.Williams","Name":"Kyle Williams","Team":"SF","Number":10,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":2.1,"Updated":null,"FumblesLost":0,"ReceivingLong":18,"ReceivingTargets":4,"ReceivingTouchdowns":0,"ReceivingYards":18,"ReceivingYardsPerReception":18,"ReceivingYardsPerTarget":4.5,"ReceptionPercentage":25,"Receptions":1,"TwoPointConversionReceptions":0},{"PlayerGameID":5915314,"PlayerID":13440,"ShortName":"K.Hunter","Name":"Kendall Hunter","Team":"SF","Number":32,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":4.5,"Updated":null,"FumblesLost":0,"ReceivingLong":11,"ReceivingTargets":2,"ReceivingTouchdowns":0,"ReceivingYards":14,"ReceivingYardsPerReception":7,"ReceivingYardsPerTarget":7,"ReceptionPercentage":100,"Receptions":2,"TwoPointConversionReceptions":0},{"PlayerGameID":5915323,"PlayerID":4154,"ShortName":"R.Moss","Name":"Randy Moss","Team":"SF","Number":84,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":1.4,"Updated":null,"FumblesLost":0,"ReceivingLong":14,"ReceivingTargets":4,"ReceivingTouchdowns":0,"ReceivingYards":14,"ReceivingYardsPerReception":14,"ReceivingYardsPerTarget":3.5,"ReceptionPercentage":25,"Receptions":1,"TwoPointConversionReceptions":0},{"PlayerGameID":5915289,"PlayerID":7175,"ShortName":"D.Walker","Name":"Delanie Walker","Team":"SF","Number":46,"Position":"TE","PositionCategory":"OFF","FantasyPosition":"TE","FantasyPoints":7.2,"Updated":null,"FumblesLost":0,"ReceivingLong":12,"ReceivingTargets":1,"ReceivingTouchdowns":1,"ReceivingYards":12,"ReceivingYardsPerReception":12,"ReceivingYardsPerTarget":12,"ReceptionPercentage":100,"Receptions":1,"TwoPointConversionReceptions":0}],"HomeRushing":[{"PlayerGameID":5915291,"PlayerID":5820,"ShortName":"F.Gore","Name":"Frank Gore","Team":"SF","Number":21,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":18.2,"Updated":null,"FumblesLost":0,"RushingAttempts":16,"RushingLong":37,"RushingTouchdowns":0,"RushingYards":131,"RushingYardsPerAttempt":8.2,"TwoPointConversionRuns":0},{"PlayerGameID":5915314,"PlayerID":13440,"ShortName":"K.Hunter","Name":"Kendall Hunter","Team":"SF","Number":32,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":4.5,"Updated":null,"FumblesLost":0,"RushingAttempts":9,"RushingLong":10,"RushingTouchdowns":0,"RushingYards":31,"RushingYardsPerAttempt":3.4,"TwoPointConversionRuns":0},{"PlayerGameID":5915290,"PlayerID":6739,"ShortName":"A.Smith","Name":"Alex Smith","Team":"SF","Number":11,"Position":"QB","PositionCategory":"OFF","FantasyPosition":"QB","FantasyPoints":8.7,"Updated":null,"FumblesLost":0,"RushingAttempts":5,"RushingLong":8,"RushingTouchdowns":0,"RushingYards":11,"RushingYardsPerAttempt":2.2,"TwoPointConversionRuns":0},{"PlayerGameID":5915306,"PlayerID":11594,"ShortName":"K.Williams","Name":"Kyle Williams","Team":"SF","Number":10,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":2.1,"Updated":null,"FumblesLost":0,"RushingAttempts":1,"RushingLong":3,"RushingTouchdowns":0,"RushingYards":3,"RushingYardsPerAttempt":3,"TwoPointConversionRuns":0},{"PlayerGameID":5915305,"PlayerID":13443,"ShortName":"C.Kaepernick","Name":"Colin Kaepernick","Team":"SF","Number":7,"Position":"QB","PositionCategory":"OFF","FantasyPosition":"QB","FantasyPoints":-0.1,"Updated":null,"FumblesLost":0,"RushingAttempts":1,"RushingLong":-1,"RushingTouchdowns":0,"RushingYards":-1,"RushingYardsPerAttempt":-1,"TwoPointConversionRuns":0}],"Score":{"StadiumDetails":null,"GameKey":"201210731","SeasonType":1,"Season":2012,"Week":7,"Date":"2012-10-18T20:20:00","AwayTeam":"SEA","HomeTeam":"SF","AwayScore":6,"HomeScore":13,"Channel":"NFL","PointSpread":-9,"OverUnder":37.5,"Quarter":"F","TimeRemaining":null,"Possession":null,"Down":null,"Distance":null,"YardLine":null,"YardLineTerritory":null,"RedZone":null,"AwayScoreQuarter1":3,"AwayScoreQuarter2":3,"AwayScoreQuarter3":0,"AwayScoreQuarter4":0,"AwayScoreOvertime":0,"HomeScoreQuarter1":3,"HomeScoreQuarter2":0,"HomeScoreQuarter3":7,"HomeScoreQuarter4":3,"HomeScoreOvertime":0,"HasStarted":true,"IsInProgress":false,"IsOver":true,"Has1stQuarterStarted":true,"Has2ndQuarterStarted":true,"Has3rdQuarterStarted":true,"Has4thQuarterStarted":true,"IsOvertime":false,"DownAndDistance":null,"QuarterDescription":"Final","StadiumID":null,"LastUpdated":null},"ScoringDetails":[{"GameKey":"201210731","SeasonType":1,"PlayerID":12594,"Team":"SEA","Season":2012,"Week":7,"ScoringType":"FieldGoalMade","Length":52,"ScoringDetailID":307734,"PlayerGameID":5915281},{"GameKey":"201210731","SeasonType":1,"PlayerID":12594,"Team":"SEA","Season":2012,"Week":7,"ScoringType":"FieldGoalMade","Length":35,"ScoringDetailID":307735,"PlayerGameID":5915281},{"GameKey":"201210731","SeasonType":1,"PlayerID":12594,"Team":"SEA","Season":2012,"Week":7,"ScoringType":"FieldGoalMissed","Length":51,"ScoringDetailID":307736,"PlayerGameID":5915281},{"GameKey":"201210731","SeasonType":1,"PlayerID":5352,"Team":"SF","Season":2012,"Week":7,"ScoringType":"FieldGoalMade","Length":38,"ScoringDetailID":307737,"PlayerGameID":5915280},{"GameKey":"201210731","SeasonType":1,"PlayerID":5352,"Team":"SF","Season":2012,"Week":7,"ScoringType":"FieldGoalMade","Length":28,"ScoringDetailID":307738,"PlayerGameID":5915280},{"GameKey":"201210731","SeasonType":1,"PlayerID":7175,"Team":"SF","Season":2012,"Week":7,"ScoringType":"ReceivingTouchdown","Length":12,"ScoringDetailID":307739,"PlayerGameID":5915289},{"GameKey":"201210731","SeasonType":1,"PlayerID":6739,"Team":"SF","Season":2012,"Week":7,"ScoringType":"PassingTouchdown","Length":12,"ScoringDetailID":307740,"PlayerGameID":5915290}],"ScoringPlays":[{"GameKey":"201210731","SeasonType":1,"ScoringPlayID":89053,"Season":2012,"Week":7,"AwayTeam":"SEA","HomeTeam":"SF","Date":"2012-10-18T20:20:00","Sequence":1,"Team":"SEA","Quarter":"1","TimeRemaining":"5:29","PlayDescription":"S.Hauschka 52 yd. Field Goal (10-62, 5:05)","AwayScore":3,"HomeScore":0},{"GameKey":"201210731","SeasonType":1,"ScoringPlayID":89054,"Season":2012,"Week":7,"AwayTeam":"SEA","HomeTeam":"SF","Date":"2012-10-18T20:20:00","Sequence":2,"Team":"SF","Quarter":"1","TimeRemaining":"0:26","PlayDescription":"D.Akers 38 yd. Field Goal (11-60, 5:03)","AwayScore":3,"HomeScore":3},{"GameKey":"201210731","SeasonType":1,"ScoringPlayID":89055,"Season":2012,"Week":7,"AwayTeam":"SEA","HomeTeam":"SF","Date":"2012-10-18T20:20:00","Sequence":3,"Team":"SEA","Quarter":"2","TimeRemaining":"12:07","PlayDescription":"S.Hauschka 35 yd. Field Goal (8-63, 3:19)","AwayScore":6,"HomeScore":3},{"GameKey":"201210731","SeasonType":1,"ScoringPlayID":89056,"Season":2012,"Week":7,"AwayTeam":"SEA","HomeTeam":"SF","Date":"2012-10-18T20:20:00","Sequence":4,"Team":"SF","Quarter":"3","TimeRemaining":"4:29","PlayDescription":"D.Walker 12 yd. pass from A.Smith (D.Akers kick) (10-86, 6:20)","AwayScore":6,"HomeScore":10},{"GameKey":"201210731","SeasonType":1,"ScoringPlayID":89057,"Season":2012,"Week":7,"AwayTeam":"SEA","HomeTeam":"SF","Date":"2012-10-18T20:20:00","Sequence":5,"Team":"SF","Quarter":"4","TimeRemaining":"5:24","PlayDescription":"D.Akers 28 yd. Field Goal (7-39, 4:47)","AwayScore":6,"HomeScore":13}]},{"AwayDefense":[{"PlayerGameID":5915458,"PlayerID":5795,"ShortName":"J.Babineaux","Name":"Jordan Babineaux","Team":"TEN","Number":26,"Position":"FS","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":12,"Updated":null,"AssistedTackles":4,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":1,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":8,"Tackles":12,"TacklesForLoss":null},{"PlayerGameID":5915456,"PlayerID":8554,"ShortName":"R.Mouton","Name":"Ryan Mouton","Team":"TEN","Number":29,"Position":"DB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":8,"Updated":null,"AssistedTackles":2,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":6,"Tackles":9,"TacklesForLoss":null},{"PlayerGameID":5915453,"PlayerID":11873,"ShortName":"K.Wimbley","Name":"Kamerion Wimbley","Team":"TEN","Number":95,"Position":"DE","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":11.9,"Updated":null,"AssistedTackles":2,"FumbleReturnTouchdowns":0,"FumblesForced":1,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":9,"Sacks":1,"SoloTackles":4,"Tackles":6,"TacklesForLoss":null},{"PlayerGameID":5915457,"PlayerID":8550,"ShortName":"J.McCourty","Name":"Jason McCourty","Team":"TEN","Number":30,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":8.5,"Updated":null,"AssistedTackles":3,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":1,"PassesDefended":1,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":3,"Tackles":6,"TacklesForLoss":null},{"PlayerGameID":5915459,"PlayerID":1286,"ShortName":"M.Griffin","Name":"Michael Griffin","Team":"TEN","Number":33,"Position":"SS","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":6,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":6,"Tackles":6,"TacklesForLoss":null},{"PlayerGameID":5915460,"PlayerID":11096,"ShortName":"A.Verner","Name":"Alterraun Verner","Team":"TEN","Number":20,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":5,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":5,"Tackles":5,"TacklesForLoss":null},{"PlayerGameID":5915454,"PlayerID":12910,"ShortName":"A.Ayers","Name":"Akeem Ayers","Team":"TEN","Number":56,"Position":"OLB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":4.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":3,"Tackles":4,"TacklesForLoss":null},{"PlayerGameID":5915469,"PlayerID":12545,"ShortName":"A.Afalava","Name":"Al Afalava","Team":"TEN","Number":38,"Position":"S","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":3,"Updated":null,"AssistedTackles":2,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":2,"Tackles":4,"TacklesForLoss":null},{"PlayerGameID":5915473,"PlayerID":12304,"ShortName":"T.Shaw","Name":"Tim Shaw","Team":"TEN","Number":59,"Position":"LB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":4.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":3,"Tackles":4,"TacklesForLoss":null},{"PlayerGameID":5915450,"PlayerID":12305,"ShortName":"D.Morgan","Name":"Derrick Morgan","Team":"TEN","Number":91,"Position":"DE","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":8.5,"Updated":null,"AssistedTackles":3,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":1,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":2,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":0,"Tackles":3,"TacklesForLoss":null},{"PlayerGameID":5915471,"PlayerID":13941,"ShortName":"Z.Brown","Name":"Zach Brown","Team":"TEN","Number":55,"Position":"LB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":3.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":2,"Tackles":3,"TacklesForLoss":null},{"PlayerGameID":5915452,"PlayerID":12912,"ShortName":"J.Casey","Name":"Jurrell Casey","Team":"TEN","Number":99,"Position":"DT","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":1,"Updated":null,"AssistedTackles":2,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":0,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915455,"PlayerID":5775,"ShortName":"Z.Diles","Name":"Zac Diles","Team":"TEN","Number":53,"Position":"ILB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":1.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915479,"PlayerID":12306,"ShortName":"W.Witherspoon","Name":"Will Witherspoon","Team":"TEN","Number":92,"Position":"LB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":1.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915466,"PlayerID":13949,"ShortName":"C.Sensabaugh","Name":"Coty Sensabaugh","Team":"TEN","Number":24,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":0,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":0,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915472,"PlayerID":12303,"ShortName":"P.Bailey","Name":"Patrick Bailey","Team":"TEN","Number":57,"Position":"LB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":0,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":0,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915480,"PlayerID":13946,"ShortName":"M.Martin","Name":"Mike Martin","Team":"TEN","Number":93,"Position":"DT","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":1,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":1,"TacklesForLoss":null}],"AwayFantasyDefense":{"ScoringDetails":[],"GameKey":"201210704","SeasonType":1,"Season":2012,"Week":7,"Date":"2012-10-21T13:00:00","Team":"TEN","Opponent":"BUF","PointsAllowed":34,"TouchdownsScored":0,"SoloTackles":45,"AssistedTackles":23,"Sacks":1,"SackYards":9,"PassesDefended":4,"FumblesForced":1,"FumblesRecovered":1,"FumbleReturnYards":0,"FumbleReturnTouchdowns":0,"Interceptions":1,"InterceptionReturnYards":0,"InterceptionReturnTouchdowns":0,"BlockedKicks":0,"Safeties":0,"PuntReturns":0,"PuntReturnYards":0,"PuntReturnTouchdowns":0,"PuntReturnLong":0,"KickReturns":5,"KickReturnYards":116,"KickReturnTouchdowns":0,"KickReturnLong":32,"BlockedKickReturnTouchdowns":0,"FieldGoalReturnTouchdowns":0,"FantasyPointsAllowed":84.1,"QuarterbackFantasyPointsAllowed":19.3,"RunningbackFantasyPointsAllowed":28.2,"WideReceiverFantasyPointsAllowed":25.1,"TightEndFantasyPointsAllowed":1.5,"KickerFantasyPointsAllowed":10,"BlockedKickReturnYards":0,"FieldGoalReturnYards":0,"QuarterbackHits":5,"TacklesForLoss":4,"DefensiveTouchdowns":0,"SpecialTeamsTouchdowns":0,"IsGameOver":true,"FantasyPoints":4,"Stadium":"Ralph Wilson Stadium","Temperature":55,"Humidity":75,"WindSpeed":15,"ThirdDownAttempts":12,"ThirdDownConversions":7,"FourthDownAttempts":1,"FourthDownConversions":0,"PointsAllowedByDefenseSpecialTeams":34,"FanDuelSalary":null,"DraftKingsSalary":null,"FantasyDataSalary":null,"VictivSalary":null},"AwayKickPuntReturns":[{"PlayerGameID":5915467,"PlayerID":12243,"ShortName":"D.Reynaud","Name":"Darius Reynaud","Team":"TEN","Number":25,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":1.4,"Updated":null,"KickReturnLong":32,"KickReturnTouchdowns":0,"KickReturnYards":116,"KickReturnYardsPerAttempt":23.2,"KickReturns":5,"PuntReturnLong":0,"PuntReturnTouchdowns":0,"PuntReturnYards":0,"PuntReturnYardsPerAttempt":0,"PuntReturns":0}],"AwayKicking":[{"PlayerGameID":5915461,"PlayerID":2616,"ShortName":"R.Bironas","Name":"Rob Bironas","Team":"TEN","Number":2,"Position":"K","PositionCategory":"ST","FantasyPosition":"K","FantasyPoints":5,"Updated":null,"ExtraPointsAttempted":5,"ExtraPointsMade":5,"FieldGoalPercentage":0,"FieldGoalsAttempted":0,"FieldGoalsLongestMade":0,"FieldGoalsMade":0}],"AwayPassing":[{"PlayerGameID":5915447,"PlayerID":1034,"ShortName":"M.Hasselbeck","Name":"Matt Hasselbeck","Team":"TEN","Number":8,"Position":"QB","PositionCategory":"OFF","FantasyPosition":"QB","FantasyPoints":12,"Updated":null,"PassingAttempts":33,"PassingCompletionPercentage":66.7,"PassingCompletions":22,"PassingInterceptions":0,"PassingLong":29,"PassingRating":93.62,"PassingSackYards":12,"PassingSacks":2,"PassingTouchdowns":1,"PassingYards":205,"PassingYardsPerAttempt":6.2,"PassingYardsPerCompletion":9.3,"TwoPointConversionPasses":0}],"AwayPunting":[{"PlayerGameID":5915462,"PlayerID":10067,"ShortName":"B.Kern","Name":"Brett Kern","Team":"TEN","Number":6,"Position":"P","PositionCategory":"ST","FantasyPosition":"P","FantasyPoints":0,"Updated":null,"PuntAverage":41.3,"PuntInside20":2,"PuntTouchbacks":1,"PuntYards":124,"Punts":3}],"AwayReceiving":[{"PlayerGameID":5915439,"PlayerID":8564,"ShortName":"N.Washington","Name":"Nate Washington","Team":"TEN","Number":85,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":10.3,"Updated":null,"FumblesLost":0,"ReceivingLong":17,"ReceivingTargets":8,"ReceivingTouchdowns":1,"ReceivingYards":43,"ReceivingYardsPerReception":7.2,"ReceivingYardsPerTarget":5.4,"ReceptionPercentage":75,"Receptions":6,"TwoPointConversionReceptions":0},{"PlayerGameID":5915464,"PlayerID":11097,"ShortName":"D.Williams","Name":"Damian Williams","Team":"TEN","Number":17,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":3.8,"Updated":null,"FumblesLost":0,"ReceivingLong":19,"ReceivingTargets":4,"ReceivingTouchdowns":0,"ReceivingYards":38,"ReceivingYardsPerReception":12.7,"ReceivingYardsPerTarget":9.5,"ReceptionPercentage":75,"Receptions":3,"TwoPointConversionReceptions":0},{"PlayerGameID":5915477,"PlayerID":8534,"ShortName":"J.Cook","Name":"Jared Cook","Team":"TEN","Number":89,"Position":"TE","PositionCategory":"OFF","FantasyPosition":"TE","FantasyPoints":3.7,"Updated":null,"FumblesLost":0,"ReceivingLong":29,"ReceivingTargets":5,"ReceivingTouchdowns":0,"ReceivingYards":37,"ReceivingYardsPerReception":18.5,"ReceivingYardsPerTarget":7.4,"ReceptionPercentage":40,"Receptions":2,"TwoPointConversionReceptions":0},{"PlayerGameID":5915446,"PlayerID":8532,"ShortName":"K.Britt","Name":"Kenny Britt","Team":"TEN","Number":18,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":3,"Updated":null,"FumblesLost":0,"ReceivingLong":16,"ReceivingTargets":6,"ReceivingTouchdowns":0,"ReceivingYards":30,"ReceivingYardsPerReception":7.5,"ReceivingYardsPerTarget":5,"ReceptionPercentage":66.7,"Receptions":4,"TwoPointConversionReceptions":0},{"PlayerGameID":5915463,"PlayerID":13957,"ShortName":"K.Wright","Name":"Kendall Wright","Team":"TEN","Number":13,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":1.9,"Updated":null,"FumblesLost":0,"ReceivingLong":11,"ReceivingTargets":3,"ReceivingTouchdowns":0,"ReceivingYards":19,"ReceivingYardsPerReception":6.3,"ReceivingYardsPerTarget":6.3,"ReceptionPercentage":100,"Receptions":3,"TwoPointConversionReceptions":0},{"PlayerGameID":5915467,"PlayerID":12243,"ShortName":"D.Reynaud","Name":"Darius Reynaud","Team":"TEN","Number":25,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":1.4,"Updated":null,"FumblesLost":0,"ReceivingLong":9,"ReceivingTargets":2,"ReceivingTouchdowns":0,"ReceivingYards":18,"ReceivingYardsPerReception":9,"ReceivingYardsPerTarget":9,"ReceptionPercentage":100,"Receptions":2,"TwoPointConversionReceptions":0},{"PlayerGameID":5915445,"PlayerID":3,"ShortName":"C.Stevens","Name":"Craig Stevens","Team":"TEN","Number":88,"Position":"TE","PositionCategory":"OFF","FantasyPosition":"TE","FantasyPoints":1.7,"Updated":null,"FumblesLost":0,"ReceivingLong":17,"ReceivingTargets":1,"ReceivingTouchdowns":0,"ReceivingYards":17,"ReceivingYardsPerReception":17,"ReceivingYardsPerTarget":17,"ReceptionPercentage":100,"Receptions":1,"TwoPointConversionReceptions":0},{"PlayerGameID":5915448,"PlayerID":6828,"ShortName":"C.Johnson","Name":"Chris Johnson","Team":"TEN","Number":28,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":31.8,"Updated":null,"FumblesLost":0,"ReceivingLong":3,"ReceivingTargets":2,"ReceivingTouchdowns":0,"ReceivingYards":3,"ReceivingYardsPerReception":3,"ReceivingYardsPerTarget":1.5,"ReceptionPercentage":50,"Receptions":1,"TwoPointConversionReceptions":0},{"PlayerGameID":5915449,"PlayerID":9048,"ShortName":"Q.Johnson","Name":"Quinn Johnson","Team":"TEN","Number":45,"Position":"FB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":0,"Updated":null,"FumblesLost":0,"ReceivingLong":0,"ReceivingTargets":1,"ReceivingTouchdowns":0,"ReceivingYards":0,"ReceivingYardsPerReception":0,"ReceivingYardsPerTarget":0,"ReceptionPercentage":0,"Receptions":0,"TwoPointConversionReceptions":0},{"PlayerGameID":5915476,"PlayerID":13881,"ShortName":"T.Thompson","Name":"Taylor Thompson","Team":"TEN","Number":84,"Position":"TE","PositionCategory":"OFF","FantasyPosition":"TE","FantasyPoints":0,"Updated":null,"FumblesLost":0,"ReceivingLong":0,"ReceivingTargets":1,"ReceivingTouchdowns":0,"ReceivingYards":0,"ReceivingYardsPerReception":0,"ReceivingYardsPerTarget":0,"ReceptionPercentage":0,"Receptions":0,"TwoPointConversionReceptions":0}],"AwayRushing":[{"PlayerGameID":5915448,"PlayerID":6828,"ShortName":"C.Johnson","Name":"Chris Johnson","Team":"TEN","Number":28,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":31.8,"Updated":null,"FumblesLost":0,"RushingAttempts":18,"RushingLong":83,"RushingTouchdowns":2,"RushingYards":195,"RushingYardsPerAttempt":10.8,"TwoPointConversionRuns":0},{"PlayerGameID":5915465,"PlayerID":12918,"ShortName":"J.Harper","Name":"Jamie Harper","Team":"TEN","Number":23,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":12.8,"Updated":null,"FumblesLost":0,"RushingAttempts":7,"RushingLong":8,"RushingTouchdowns":2,"RushingYards":8,"RushingYardsPerAttempt":1.1,"TwoPointConversionRuns":0},{"PlayerGameID":5915447,"PlayerID":1034,"ShortName":"M.Hasselbeck","Name":"Matt Hasselbeck","Team":"TEN","Number":8,"Position":"QB","PositionCategory":"OFF","FantasyPosition":"QB","FantasyPoints":12,"Updated":null,"FumblesLost":0,"RushingAttempts":1,"RushingLong":-2,"RushingTouchdowns":0,"RushingYards":-2,"RushingYardsPerAttempt":-2,"TwoPointConversionRuns":0},{"PlayerGameID":5915467,"PlayerID":12243,"ShortName":"D.Reynaud","Name":"Darius Reynaud","Team":"TEN","Number":25,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":1.4,"Updated":null,"FumblesLost":0,"RushingAttempts":1,"RushingLong":-4,"RushingTouchdowns":0,"RushingYards":-4,"RushingYardsPerAttempt":-4,"TwoPointConversionRuns":0}],"Game":{"StadiumDetails":null,"GameKey":"201210704","Date":"2012-10-21T13:00:00","SeasonType":1,"Season":2012,"Week":7,"Stadium":"Ralph Wilson Stadium","PlayingSurface":"Artificial","Temperature":55,"Humidity":75,"WindSpeed":15,"AwayTeam":"TEN","HomeTeam":"BUF","AwayScore":35,"HomeScore":34,"TotalScore":69,"OverUnder":46.5,"PointSpread":-4,"AwayScoreQuarter1":14,"AwayScoreQuarter2":7,"AwayScoreQuarter3":7,"AwayScoreQuarter4":7,"AwayScoreOvertime":0,"HomeScoreQuarter1":14,"HomeScoreQuarter2":6,"HomeScoreQuarter3":14,"HomeScoreQuarter4":0,"HomeScoreOvertime":0,"AwayTimeOfPossession":"29:41","HomeTimeOfPossession":"30:19","AwayFirstDowns":21,"HomeFirstDowns":22,"AwayFirstDownsByRushing":7,"HomeFirstDownsByRushing":6,"AwayFirstDownsByPassing":12,"HomeFirstDownsByPassing":14,"AwayFirstDownsByPenalty":2,"HomeFirstDownsByPenalty":2,"AwayOffensivePlays":62,"HomeOffensivePlays":60,"AwayOffensiveYards":390,"HomeOffensiveYards":382,"AwayOffensiveYardsPerPlay":6.3,"HomeOffensiveYardsPerPlay":6.4,"AwayTouchdowns":5,"HomeTouchdowns":4,"AwayRushingAttempts":27,"HomeRushingAttempts":24,"AwayRushingYards":197,"HomeRushingYards":166,"AwayRushingYardsPerAttempt":7.3,"HomeRushingYardsPerAttempt":6.9,"AwayRushingTouchdowns":4,"HomeRushingTouchdowns":0,"AwayPassingAttempts":33,"HomePassingAttempts":35,"AwayPassingCompletions":22,"HomePassingCompletions":27,"AwayPassingYards":193,"HomePassingYards":216,"AwayPassingTouchdowns":1,"HomePassingTouchdowns":3,"AwayPassingInterceptions":0,"HomePassingInterceptions":1,"AwayPassingYardsPerAttempt":5.8,"HomePassingYardsPerAttempt":6.2,"AwayPassingYardsPerCompletion":8.8,"HomePassingYardsPerCompletion":8,"AwayCompletionPercentage":66.7,"HomeCompletionPercentage":77.1,"AwayPasserRating":92.11,"HomePasserRating":108.75,"AwayThirdDownAttempts":14,"HomeThirdDownAttempts":12,"AwayThirdDownConversions":9,"HomeThirdDownConversions":7,"AwayThirdDownPercentage":64.3,"HomeThirdDownPercentage":58.3,"AwayFourthDownAttempts":2,"HomeFourthDownAttempts":1,"AwayFourthDownConversions":1,"HomeFourthDownConversions":0,"AwayFourthDownPercentage":50,"HomeFourthDownPercentage":0,"AwayRedZoneAttempts":4,"HomeRedZoneAttempts":3,"AwayRedZoneConversions":4,"HomeRedZoneConversions":2,"AwayGoalToGoAttempts":2,"HomeGoalToGoAttempts":1,"AwayGoalToGoConversions":2,"HomeGoalToGoConversions":1,"AwayReturnYards":0,"HomeReturnYards":0,"AwayPenalties":3,"HomePenalties":8,"AwayPenaltyYards":25,"HomePenaltyYards":65,"AwayFumbles":1,"HomeFumbles":1,"AwayFumblesLost":0,"HomeFumblesLost":1,"AwayTimesSacked":2,"HomeTimesSacked":1,"AwayTimesSackedYards":12,"HomeTimesSackedYards":9,"AwaySafeties":0,"HomeSafeties":0,"AwayPunts":3,"HomePunts":1,"AwayPuntYards":124,"HomePuntYards":22,"AwayPuntAverage":41.3,"HomePuntAverage":22,"AwayGiveaways":0,"HomeGiveaways":2,"AwayTakeaways":2,"HomeTakeaways":0,"AwayTurnoverDifferential":2,"HomeTurnoverDifferential":-2,"AwayKickoffs":6,"HomeKickoffs":6,"AwayKickoffsInEndZone":3,"HomeKickoffsInEndZone":2,"AwayKickoffTouchbacks":2,"HomeKickoffTouchbacks":1,"AwayPuntsHadBlocked":0,"HomePuntsHadBlocked":0,"AwayPuntNetAverage":34.7,"HomePuntNetAverage":22,"AwayExtraPointKickingAttempts":5,"HomeExtraPointKickingAttempts":4,"AwayExtraPointKickingConversions":5,"HomeExtraPointKickingConversions":4,"AwayExtraPointsHadBlocked":0,"HomeExtraPointsHadBlocked":0,"AwayExtraPointPassingAttempts":0,"HomeExtraPointPassingAttempts":0,"AwayExtraPointPassingConversions":0,"HomeExtraPointPassingConversions":0,"AwayExtraPointRushingAttempts":0,"HomeExtraPointRushingAttempts":0,"AwayExtraPointRushingConversions":0,"HomeExtraPointRushingConversions":0,"AwayFieldGoalAttempts":0,"HomeFieldGoalAttempts":2,"AwayFieldGoalsMade":0,"HomeFieldGoalsMade":2,"AwayFieldGoalsHadBlocked":0,"HomeFieldGoalsHadBlocked":0,"AwayPuntReturns":0,"HomePuntReturns":0,"AwayPuntReturnYards":0,"HomePuntReturnYards":0,"AwayKickReturns":5,"HomeKickReturns":4,"AwayKickReturnYards":116,"HomeKickReturnYards":184,"AwayInterceptionReturns":1,"HomeInterceptionReturns":0,"AwayInterceptionReturnYards":0,"HomeInterceptionReturnYards":0,"AwaySoloTackles":45,"AwayAssistedTackles":23,"AwayQuarterbackHits":5,"AwayTacklesForLoss":4,"AwaySacks":1,"AwaySackYards":9,"AwayPassesDefended":4,"AwayFumblesForced":1,"AwayFumblesRecovered":1,"AwayFumbleReturnYards":0,"AwayFumbleReturnTouchdowns":0,"AwayInterceptionReturnTouchdowns":0,"AwayBlockedKicks":0,"AwayPuntReturnTouchdowns":0,"AwayPuntReturnLong":0,"AwayKickReturnTouchdowns":0,"AwayKickReturnLong":32,"AwayBlockedKickReturnYards":0,"AwayBlockedKickReturnTouchdowns":0,"AwayFieldGoalReturnYards":0,"AwayFieldGoalReturnTouchdowns":0,"AwayPuntNetYards":104,"HomeSoloTackles":42,"HomeAssistedTackles":19,"HomeQuarterbackHits":4,"HomeTacklesForLoss":6,"HomeSacks":2,"HomeSackYards":12,"HomePassesDefended":4,"HomeFumblesForced":1,"HomeFumblesRecovered":0,"HomeFumbleReturnYards":0,"HomeFumbleReturnTouchdowns":0,"HomeInterceptionReturnTouchdowns":0,"HomeBlockedKicks":0,"HomePuntReturnTouchdowns":0,"HomePuntReturnLong":0,"HomeKickReturnTouchdowns":1,"HomeKickReturnLong":89,"HomeBlockedKickReturnYards":0,"HomeBlockedKickReturnTouchdowns":0,"HomeFieldGoalReturnYards":0,"HomeFieldGoalReturnTouchdowns":0,"HomePuntNetYards":22,"IsGameOver":true,"GameID":62610,"StadiumID":null,"AwayTwoPointConversionReturns":null,"HomeTwoPointConversionReturns":null},"HomeDefense":[{"PlayerGameID":5915403,"PlayerID":12742,"ShortName":"K.Sheppard","Name":"Kelvin Sheppard","Team":"BUF","Number":55,"Position":"ILB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":6,"Updated":null,"AssistedTackles":4,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":4,"Tackles":9,"TacklesForLoss":null},{"PlayerGameID":5915404,"PlayerID":3378,"ShortName":"N.Barnett","Name":"Nick Barnett","Team":"BUF","Number":50,"Position":"OLB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":8,"Updated":null,"AssistedTackles":4,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":5,"Tackles":9,"TacklesForLoss":null},{"PlayerGameID":5915407,"PlayerID":5483,"ShortName":"G.Wilson","Name":"George Wilson","Team":"BUF","Number":37,"Position":"SS","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":8,"Updated":null,"AssistedTackles":2,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":1,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":6,"Tackles":8,"TacklesForLoss":null},{"PlayerGameID":5915417,"PlayerID":3059,"ShortName":"B.Scott","Name":"Bryan Scott","Team":"BUF","Number":43,"Position":"OLB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":6,"Updated":null,"AssistedTackles":2,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":1,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":4,"Tackles":7,"TacklesForLoss":null},{"PlayerGameID":5915408,"PlayerID":8281,"ShortName":"J.Byrd","Name":"Jairus Byrd","Team":"BUF","Number":31,"Position":"FS","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":8,"Updated":null,"AssistedTackles":2,"FumbleReturnTouchdowns":0,"FumblesForced":1,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":4,"Tackles":6,"TacklesForLoss":null},{"PlayerGameID":5915400,"PlayerID":2550,"ShortName":"K.Williams","Name":"Kyle Williams","Team":"BUF","Number":95,"Position":"DT","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":10.8,"Updated":null,"AssistedTackles":2,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":8,"Sacks":1,"SoloTackles":3,"Tackles":5,"TacklesForLoss":null},{"PlayerGameID":5915402,"PlayerID":13756,"ShortName":"N.Bradham","Name":"Nigel Bradham","Team":"BUF","Number":53,"Position":"OLB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":3.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":3,"Tackles":5,"TacklesForLoss":null},{"PlayerGameID":5915405,"PlayerID":12747,"ShortName":"A.Williams","Name":"Aaron Williams","Team":"BUF","Number":23,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":4,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":1,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":3,"Tackles":3,"TacklesForLoss":null},{"PlayerGameID":5915414,"PlayerID":12740,"ShortName":"J.Rogers","Name":"Justin Rogers","Team":"BUF","Number":26,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":3,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":3,"Tackles":3,"TacklesForLoss":null},{"PlayerGameID":5915398,"PlayerID":5467,"ShortName":"M.Williams","Name":"Mario Williams","Team":"BUF","Number":94,"Position":"DE","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":1.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915401,"PlayerID":3552,"ShortName":"C.Kelsay","Name":"Chris Kelsay","Team":"BUF","Number":90,"Position":"DE","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":6.4,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":4,"Sacks":1,"SoloTackles":2,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915426,"PlayerID":8054,"ShortName":"Sp.Johnson","Name":"Spencer Johnson","Team":"BUF","Number":91,"Position":"DT","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":2.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915399,"PlayerID":12725,"ShortName":"M.Dareus","Name":"Marcell Dareus","Team":"BUF","Number":99,"Position":"DT","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":1,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915406,"PlayerID":13761,"ShortName":"S.Gilmore","Name":"Stephon Gilmore","Team":"BUF","Number":27,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":2,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":1,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915419,"PlayerID":12157,"ShortName":"A.Moats","Name":"Arthur Moats","Team":"BUF","Number":52,"Position":"OLB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":0,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":0,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915427,"PlayerID":10935,"ShortName":"A.Carrington","Name":"Alex Carrington","Team":"BUF","Number":92,"Position":"DT","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":2,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":1,"TacklesForLoss":null}],"HomeFantasyDefense":{"ScoringDetails":[{"GameKey":"201210704","SeasonType":1,"PlayerID":7236,"Team":"BUF","Season":2012,"Week":7,"ScoringType":"KickoffReturnTouchdown","Length":89,"ScoringDetailID":307751,"PlayerGameID":5915410}],"GameKey":"201210704","SeasonType":1,"Season":2012,"Week":7,"Date":"2012-10-21T13:00:00","Team":"BUF","Opponent":"TEN","PointsAllowed":35,"TouchdownsScored":1,"SoloTackles":42,"AssistedTackles":19,"Sacks":2,"SackYards":12,"PassesDefended":4,"FumblesForced":1,"FumblesRecovered":0,"FumbleReturnYards":0,"FumbleReturnTouchdowns":0,"Interceptions":0,"InterceptionReturnYards":0,"InterceptionReturnTouchdowns":0,"BlockedKicks":0,"Safeties":0,"PuntReturns":0,"PuntReturnYards":0,"PuntReturnTouchdowns":0,"PuntReturnLong":0,"KickReturns":4,"KickReturnYards":184,"KickReturnTouchdowns":1,"KickReturnLong":89,"BlockedKickReturnTouchdowns":0,"FieldGoalReturnTouchdowns":0,"FantasyPointsAllowed":87.4,"QuarterbackFantasyPointsAllowed":12,"RunningbackFantasyPointsAllowed":46,"WideReceiverFantasyPointsAllowed":19,"TightEndFantasyPointsAllowed":5.4,"KickerFantasyPointsAllowed":5,"BlockedKickReturnYards":0,"FieldGoalReturnYards":0,"QuarterbackHits":4,"TacklesForLoss":6,"DefensiveTouchdowns":0,"SpecialTeamsTouchdowns":1,"IsGameOver":true,"FantasyPoints":4,"Stadium":"Ralph Wilson Stadium","Temperature":55,"Humidity":75,"WindSpeed":15,"ThirdDownAttempts":14,"ThirdDownConversions":9,"FourthDownAttempts":2,"FourthDownConversions":1,"PointsAllowedByDefenseSpecialTeams":35,"FanDuelSalary":null,"DraftKingsSalary":null,"FantasyDataSalary":null,"VictivSalary":null},"HomeKickPuntReturns":[{"PlayerGameID":5915410,"PlayerID":7236,"ShortName":"B.Smith","Name":"Brad Smith","Team":"BUF","Number":16,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":0.7,"Updated":null,"KickReturnLong":89,"KickReturnTouchdowns":1,"KickReturnYards":109,"KickReturnYardsPerAttempt":54.5,"KickReturns":2,"PuntReturnLong":0,"PuntReturnTouchdowns":0,"PuntReturnYards":0,"PuntReturnYardsPerAttempt":0,"PuntReturns":0},{"PlayerGameID":5915411,"PlayerID":5035,"ShortName":"L.McKelvin","Name":"Leodis McKelvin","Team":"BUF","Number":21,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":0,"Updated":null,"KickReturnLong":46,"KickReturnTouchdowns":0,"KickReturnYards":75,"KickReturnYardsPerAttempt":37.5,"KickReturns":2,"PuntReturnLong":0,"PuntReturnTouchdowns":0,"PuntReturnYards":0,"PuntReturnYardsPerAttempt":0,"PuntReturns":0}],"HomeKicking":[{"PlayerGameID":5915386,"PlayerID":6410,"ShortName":"R.Lindell","Name":"Rian Lindell","Team":"BUF","Number":9,"Position":"K","PositionCategory":"ST","FantasyPosition":"K","FantasyPoints":10,"Updated":null,"ExtraPointsAttempted":4,"ExtraPointsMade":4,"FieldGoalPercentage":100,"FieldGoalsAttempted":2,"FieldGoalsLongestMade":42,"FieldGoalsMade":2}],"HomePassing":[{"PlayerGameID":5915396,"PlayerID":8283,"ShortName":"R.Fitzpatrick","Name":"Ryan Fitzpatrick","Team":"BUF","Number":14,"Position":"QB","PositionCategory":"OFF","FantasyPosition":"QB","FantasyPoints":19.3,"Updated":null,"PassingAttempts":35,"PassingCompletionPercentage":77.1,"PassingCompletions":27,"PassingInterceptions":1,"PassingLong":27,"PassingRating":109.82,"PassingSackYards":9,"PassingSacks":1,"PassingTouchdowns":3,"PassingYards":225,"PassingYardsPerAttempt":6.4,"PassingYardsPerCompletion":8.3,"TwoPointConversionPasses":0}],"HomePunting":[{"PlayerGameID":5915409,"PlayerID":14718,"ShortName":"S.Powell","Name":"Shawn Powell","Team":"BUF","Number":6,"Position":"P","PositionCategory":"ST","FantasyPosition":"P","FantasyPoints":0,"Updated":null,"PuntAverage":22,"PuntInside20":0,"PuntTouchbacks":0,"PuntYards":22,"Punts":1}],"HomeReceiving":[{"PlayerGameID":5915387,"PlayerID":2950,"ShortName":"St.Johnson","Name":"Steve Johnson","Team":"BUF","Number":13,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":13.1,"Updated":null,"FumblesLost":0,"ReceivingLong":27,"ReceivingTargets":7,"ReceivingTouchdowns":1,"ReceivingYards":71,"ReceivingYardsPerReception":14.2,"ReceivingYardsPerTarget":10.1,"ReceptionPercentage":71.4,"Receptions":5,"TwoPointConversionReceptions":0},{"PlayerGameID":5915397,"PlayerID":5701,"ShortName":"F.Jackson","Name":"Fred Jackson","Team":"BUF","Number":22,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":18,"Updated":null,"FumblesLost":0,"ReceivingLong":9,"ReceivingTargets":11,"ReceivingTouchdowns":1,"ReceivingYards":49,"ReceivingYardsPerReception":6.1,"ReceivingYardsPerTarget":4.5,"ReceptionPercentage":72.7,"Receptions":8,"TwoPointConversionReceptions":0},{"PlayerGameID":5915394,"PlayerID":10944,"ShortName":"D.Jones","Name":"Donald Jones","Team":"BUF","Number":19,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":10.7,"Updated":null,"FumblesLost":0,"ReceivingLong":20,"ReceivingTargets":5,"ReceivingTouchdowns":1,"ReceivingYards":47,"ReceivingYardsPerReception":11.8,"ReceivingYardsPerTarget":9.4,"ReceptionPercentage":80,"Receptions":4,"TwoPointConversionReceptions":0},{"PlayerGameID":5915415,"PlayerID":10949,"ShortName":"C.Spiller","Name":"CJ Spiller","Team":"BUF","Number":28,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":10.2,"Updated":null,"FumblesLost":0,"ReceivingLong":20,"ReceivingTargets":6,"ReceivingTouchdowns":0,"ReceivingYards":32,"ReceivingYardsPerReception":5.3,"ReceivingYardsPerTarget":5.3,"ReceptionPercentage":100,"Receptions":6,"TwoPointConversionReceptions":0},{"PlayerGameID":5915393,"PlayerID":12548,"ShortName":"S.Chandler","Name":"Scott Chandler","Team":"BUF","Number":84,"Position":"TE","PositionCategory":"OFF","FantasyPosition":"TE","FantasyPoints":1.5,"Updated":null,"FumblesLost":0,"ReceivingLong":13,"ReceivingTargets":4,"ReceivingTouchdowns":0,"ReceivingYards":15,"ReceivingYardsPerReception":7.5,"ReceivingYardsPerTarget":3.8,"ReceptionPercentage":50,"Receptions":2,"TwoPointConversionReceptions":0},{"PlayerGameID":5915395,"PlayerID":13763,"ShortName":"T.Graham","Name":"TJ Graham","Team":"BUF","Number":11,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":0.6,"Updated":null,"FumblesLost":0,"ReceivingLong":6,"ReceivingTargets":1,"ReceivingTouchdowns":0,"ReceivingYards":6,"ReceivingYardsPerReception":6,"ReceivingYardsPerTarget":6,"ReceptionPercentage":100,"Receptions":1,"TwoPointConversionReceptions":0},{"PlayerGameID":5915410,"PlayerID":7236,"ShortName":"B.Smith","Name":"Brad Smith","Team":"BUF","Number":16,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":0.7,"Updated":null,"FumblesLost":0,"ReceivingLong":5,"ReceivingTargets":1,"ReceivingTouchdowns":0,"ReceivingYards":5,"ReceivingYardsPerReception":5,"ReceivingYardsPerTarget":5,"ReceptionPercentage":100,"Receptions":1,"TwoPointConversionReceptions":0}],"HomeRushing":[{"PlayerGameID":5915397,"PlayerID":5701,"ShortName":"F.Jackson","Name":"Fred Jackson","Team":"BUF","Number":22,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":18,"Updated":null,"FumblesLost":0,"RushingAttempts":9,"RushingLong":13,"RushingTouchdowns":0,"RushingYards":71,"RushingYardsPerAttempt":7.9,"TwoPointConversionRuns":0},{"PlayerGameID":5915415,"PlayerID":10949,"ShortName":"C.Spiller","Name":"CJ Spiller","Team":"BUF","Number":28,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":10.2,"Updated":null,"FumblesLost":0,"RushingAttempts":12,"RushingLong":20,"RushingTouchdowns":0,"RushingYards":70,"RushingYardsPerAttempt":5.8,"TwoPointConversionRuns":0},{"PlayerGameID":5915396,"PlayerID":8283,"ShortName":"R.Fitzpatrick","Name":"Ryan Fitzpatrick","Team":"BUF","Number":14,"Position":"QB","PositionCategory":"OFF","FantasyPosition":"QB","FantasyPoints":19.3,"Updated":null,"FumblesLost":1,"RushingAttempts":2,"RushingLong":13,"RushingTouchdowns":0,"RushingYards":23,"RushingYardsPerAttempt":11.5,"TwoPointConversionRuns":0},{"PlayerGameID":5915410,"PlayerID":7236,"ShortName":"B.Smith","Name":"Brad Smith","Team":"BUF","Number":16,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":0.7,"Updated":null,"FumblesLost":0,"RushingAttempts":1,"RushingLong":2,"RushingTouchdowns":0,"RushingYards":2,"RushingYardsPerAttempt":2,"TwoPointConversionRuns":0}],"Score":{"StadiumDetails":null,"GameKey":"201210704","SeasonType":1,"Season":2012,"Week":7,"Date":"2012-10-21T13:00:00","AwayTeam":"TEN","HomeTeam":"BUF","AwayScore":35,"HomeScore":34,"Channel":"CBS","PointSpread":-4,"OverUnder":46.5,"Quarter":"F","TimeRemaining":null,"Possession":null,"Down":null,"Distance":null,"YardLine":null,"YardLineTerritory":null,"RedZone":null,"AwayScoreQuarter1":14,"AwayScoreQuarter2":7,"AwayScoreQuarter3":7,"AwayScoreQuarter4":7,"AwayScoreOvertime":0,"HomeScoreQuarter1":14,"HomeScoreQuarter2":6,"HomeScoreQuarter3":14,"HomeScoreQuarter4":0,"HomeScoreOvertime":0,"HasStarted":true,"IsInProgress":false,"IsOver":true,"Has1stQuarterStarted":true,"Has2ndQuarterStarted":true,"Has3rdQuarterStarted":true,"Has4thQuarterStarted":true,"IsOvertime":false,"DownAndDistance":null,"QuarterDescription":"Final","StadiumID":null,"LastUpdated":null},"ScoringDetails":[{"GameKey":"201210704","SeasonType":1,"PlayerID":6410,"Team":"BUF","Season":2012,"Week":7,"ScoringType":"FieldGoalMade","Length":31,"ScoringDetailID":307741,"PlayerGameID":5915386},{"GameKey":"201210704","SeasonType":1,"PlayerID":6410,"Team":"BUF","Season":2012,"Week":7,"ScoringType":"FieldGoalMade","Length":42,"ScoringDetailID":307742,"PlayerGameID":5915386},{"GameKey":"201210704","SeasonType":1,"PlayerID":12918,"Team":"TEN","Season":2012,"Week":7,"ScoringType":"RushingTouchdown","Length":1,"ScoringDetailID":307743,"PlayerGameID":5915465},{"GameKey":"201210704","SeasonType":1,"PlayerID":6828,"Team":"TEN","Season":2012,"Week":7,"ScoringType":"RushingTouchdown","Length":16,"ScoringDetailID":307744,"PlayerGameID":5915448},{"GameKey":"201210704","SeasonType":1,"PlayerID":12918,"Team":"TEN","Season":2012,"Week":7,"ScoringType":"RushingTouchdown","Length":1,"ScoringDetailID":307745,"PlayerGameID":5915465},{"GameKey":"201210704","SeasonType":1,"PlayerID":10944,"Team":"BUF","Season":2012,"Week":7,"ScoringType":"ReceivingTouchdown","Length":15,"ScoringDetailID":307746,"PlayerGameID":5915394},{"GameKey":"201210704","SeasonType":1,"PlayerID":8283,"Team":"BUF","Season":2012,"Week":7,"ScoringType":"PassingTouchdown","Length":15,"ScoringDetailID":307747,"PlayerGameID":5915396},{"GameKey":"201210704","SeasonType":1,"PlayerID":5701,"Team":"BUF","Season":2012,"Week":7,"ScoringType":"ReceivingTouchdown","Length":3,"ScoringDetailID":307748,"PlayerGameID":5915397},{"GameKey":"201210704","SeasonType":1,"PlayerID":8283,"Team":"BUF","Season":2012,"Week":7,"ScoringType":"PassingTouchdown","Length":3,"ScoringDetailID":307749,"PlayerGameID":5915396},{"GameKey":"201210704","SeasonType":1,"PlayerID":6828,"Team":"TEN","Season":2012,"Week":7,"ScoringType":"RushingTouchdown","Length":83,"ScoringDetailID":307750,"PlayerGameID":5915448},{"GameKey":"201210704","SeasonType":1,"PlayerID":7236,"Team":"BUF","Season":2012,"Week":7,"ScoringType":"KickoffReturnTouchdown","Length":89,"ScoringDetailID":307751,"PlayerGameID":5915410},{"GameKey":"201210704","SeasonType":1,"PlayerID":8564,"Team":"TEN","Season":2012,"Week":7,"ScoringType":"ReceivingTouchdown","Length":15,"ScoringDetailID":307752,"PlayerGameID":5915439},{"GameKey":"201210704","SeasonType":1,"PlayerID":1034,"Team":"TEN","Season":2012,"Week":7,"ScoringType":"PassingTouchdown","Length":15,"ScoringDetailID":307753,"PlayerGameID":5915447},{"GameKey":"201210704","SeasonType":1,"PlayerID":2950,"Team":"BUF","Season":2012,"Week":7,"ScoringType":"ReceivingTouchdown","Length":27,"ScoringDetailID":307754,"PlayerGameID":5915387},{"GameKey":"201210704","SeasonType":1,"PlayerID":8283,"Team":"BUF","Season":2012,"Week":7,"ScoringType":"PassingTouchdown","Length":27,"ScoringDetailID":307755,"PlayerGameID":5915396}],"ScoringPlays":[{"GameKey":"201210704","SeasonType":1,"ScoringPlayID":89058,"Season":2012,"Week":7,"AwayTeam":"TEN","HomeTeam":"BUF","Date":"2012-10-21T13:00:00","Sequence":1,"Team":"TEN","Quarter":"1","TimeRemaining":"10:38","PlayDescription":"C.Johnson 16 yd. run (R.Bironas kick) (8-77, 4:22)","AwayScore":7,"HomeScore":0},{"GameKey":"201210704","SeasonType":1,"ScoringPlayID":89059,"Season":2012,"Week":7,"AwayTeam":"TEN","HomeTeam":"BUF","Date":"2012-10-21T13:00:00","Sequence":2,"Team":"BUF","Quarter":"1","TimeRemaining":"3:01","PlayDescription":"F.Jackson 3 yd. pass from R.Fitzpatrick (R.Lindell kick) (13-83, 7:37)","AwayScore":7,"HomeScore":7},{"GameKey":"201210704","SeasonType":1,"ScoringPlayID":89060,"Season":2012,"Week":7,"AwayTeam":"TEN","HomeTeam":"BUF","Date":"2012-10-21T13:00:00","Sequence":3,"Team":"TEN","Quarter":"1","TimeRemaining":"2:43","PlayDescription":"C.Johnson 83 yd. run (R.Bironas kick) (1-83, 0:18)","AwayScore":14,"HomeScore":7},{"GameKey":"201210704","SeasonType":1,"ScoringPlayID":89061,"Season":2012,"Week":7,"AwayTeam":"TEN","HomeTeam":"BUF","Date":"2012-10-21T13:00:00","Sequence":4,"Team":"BUF","Quarter":"1","TimeRemaining":"2:31","PlayDescription":"B.Smith 89 yd. kickoff return (R.Lindell kick) (0-0, 0:12)","AwayScore":14,"HomeScore":14},{"GameKey":"201210704","SeasonType":1,"ScoringPlayID":89062,"Season":2012,"Week":7,"AwayTeam":"TEN","HomeTeam":"BUF","Date":"2012-10-21T13:00:00","Sequence":5,"Team":"TEN","Quarter":"2","TimeRemaining":"10:18","PlayDescription":"J.Harper 1 yd. run (R.Bironas kick) (14-80, 7:13)","AwayScore":21,"HomeScore":14},{"GameKey":"201210704","SeasonType":1,"ScoringPlayID":89063,"Season":2012,"Week":7,"AwayTeam":"TEN","HomeTeam":"BUF","Date":"2012-10-21T13:00:00","Sequence":6,"Team":"BUF","Quarter":"2","TimeRemaining":"3:56","PlayDescription":"R.Lindell 31 yd. Field Goal (10-68, 6:22)","AwayScore":21,"HomeScore":17},{"GameKey":"201210704","SeasonType":1,"ScoringPlayID":89064,"Season":2012,"Week":7,"AwayTeam":"TEN","HomeTeam":"BUF","Date":"2012-10-21T13:00:00","Sequence":7,"Team":"BUF","Quarter":"2","TimeRemaining":"0:00","PlayDescription":"R.Lindell 42 yd. Field Goal (10-63, 1:47)","AwayScore":21,"HomeScore":20},{"GameKey":"201210704","SeasonType":1,"ScoringPlayID":89065,"Season":2012,"Week":7,"AwayTeam":"TEN","HomeTeam":"BUF","Date":"2012-10-21T13:00:00","Sequence":8,"Team":"TEN","Quarter":"3","TimeRemaining":"11:45","PlayDescription":"J.Harper 1 yd. run (R.Bironas kick) (8-32, 2:58)","AwayScore":28,"HomeScore":20},{"GameKey":"201210704","SeasonType":1,"ScoringPlayID":89066,"Season":2012,"Week":7,"AwayTeam":"TEN","HomeTeam":"BUF","Date":"2012-10-21T13:00:00","Sequence":9,"Team":"BUF","Quarter":"3","TimeRemaining":"7:52","PlayDescription":"D.Jones 15 yd. pass from R.Fitzpatrick (R.Lindell kick) (7-66, 3:53)","AwayScore":28,"HomeScore":27},{"GameKey":"201210704","SeasonType":1,"ScoringPlayID":89067,"Season":2012,"Week":7,"AwayTeam":"TEN","HomeTeam":"BUF","Date":"2012-10-21T13:00:00","Sequence":10,"Team":"BUF","Quarter":"3","TimeRemaining":"0:05","PlayDescription":"St.Johnson 27 yd. pass from R.Fitzpatrick (R.Lindell kick) (9-80, 4:36)","AwayScore":28,"HomeScore":34},{"GameKey":"201210704","SeasonType":1,"ScoringPlayID":89068,"Season":2012,"Week":7,"AwayTeam":"TEN","HomeTeam":"BUF","Date":"2012-10-21T13:00:00","Sequence":11,"Team":"TEN","Quarter":"4","TimeRemaining":"1:03","PlayDescription":"N.Washington 15 yd. pass from M.Hasselbeck (R.Bironas kick) (7-52, 1:54)","AwayScore":35,"HomeScore":34}]},{"AwayDefense":[{"PlayerGameID":5915776,"PlayerID":11740,"ShortName":"S.Brown","Name":"Sheldon Brown","Team":"CLE","Number":24,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":19.1,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":1,"FumblesRecovered":1,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":6,"Sacks":1,"SoloTackles":9,"Tackles":10,"TacklesForLoss":null},{"PlayerGameID":5915783,"PlayerID":12881,"ShortName":"B.Skrine","Name":"Buster Skrine","Team":"CLE","Number":22,"Position":"DB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":6.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":6,"Tackles":8,"TacklesForLoss":null},{"PlayerGameID":5915778,"PlayerID":11054,"ShortName":"T.Ward","Name":"TJ Ward","Team":"CLE","Number":43,"Position":"SS","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":7,"Updated":null,"AssistedTackles":2,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":1,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":5,"Tackles":7,"TacklesForLoss":null},{"PlayerGameID":5915773,"PlayerID":2503,"ShortName":"D.Jackson","Name":"D'Qwell Jackson","Team":"CLE","Number":52,"Position":"ILB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":6.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":1,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":5,"Tackles":6,"TacklesForLoss":null},{"PlayerGameID":5915790,"PlayerID":14711,"ShortName":"C.Robertson","Name":"Craig Robertson","Team":"CLE","Number":53,"Position":"LB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":5.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":5,"Tackles":6,"TacklesForLoss":null},{"PlayerGameID":5915774,"PlayerID":8486,"ShortName":"K.Maiava","Name":"Kaluka Maiava","Team":"CLE","Number":56,"Position":"OLB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":8,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":5,"Sacks":1,"SoloTackles":3,"Tackles":4,"TacklesForLoss":null},{"PlayerGameID":5915777,"PlayerID":364,"ShortName":"U.Young","Name":"Usama Young","Team":"CLE","Number":28,"Position":"FS","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":3.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":3,"Tackles":4,"TacklesForLoss":null},{"PlayerGameID":5915771,"PlayerID":1214,"ShortName":"F.Rucker","Name":"Frostee Rucker","Team":"CLE","Number":92,"Position":"DE","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":8.7,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":2,"Sacks":1,"SoloTackles":2,"Tackles":3,"TacklesForLoss":null},{"PlayerGameID":5915797,"PlayerID":13896,"ShortName":"J.Hughes","Name":"John Hughes","Team":"CLE","Number":93,"Position":"DL","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":3.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":2,"Tackles":3,"TacklesForLoss":null},{"PlayerGameID":5915768,"PlayerID":12880,"ShortName":"J.Sheard","Name":"Jabaal Sheard","Team":"CLE","Number":97,"Position":"OLB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":3,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":2,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915775,"PlayerID":11043,"ShortName":"J.Haden","Name":"Joe Haden","Team":"CLE","Number":23,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":2,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":2,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915793,"PlayerID":13843,"ShortName":"I.Kitchen","Name":"Ishmaa'ily Kitchen","Team":"CLE","Number":67,"Position":"DL","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":2.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915799,"PlayerID":6528,"ShortName":"J.Parker","Name":"Juqua Parker","Team":"CLE","Number":95,"Position":"DL","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":1,"Updated":null,"AssistedTackles":2,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":0,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915769,"PlayerID":4096,"ShortName":"A.Rubin","Name":"Ahtyba Rubin","Team":"CLE","Number":71,"Position":"DT","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":0.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":0,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915770,"PlayerID":13911,"ShortName":"B.Winn","Name":"Billy Winn","Team":"CLE","Number":90,"Position":"DT","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":0.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":0,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915772,"PlayerID":13898,"ShortName":"J.Johnson","Name":"James-Michael Johnson","Team":"CLE","Number":50,"Position":"OLB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":0.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":0,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915800,"PlayerID":13649,"ShortName":"E.Stephens","Name":"Emmanuel Stephens","Team":"CLE","Number":96,"Position":"DL","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":1,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":1,"TacklesForLoss":null}],"AwayFantasyDefense":{"ScoringDetails":[],"GameKey":"201210714","SeasonType":1,"Season":2012,"Week":7,"Date":"2012-10-21T13:00:00","Team":"CLE","Opponent":"IND","PointsAllowed":17,"TouchdownsScored":0,"SoloTackles":46,"AssistedTackles":16,"Sacks":3,"SackYards":13,"PassesDefended":2,"FumblesForced":1,"FumblesRecovered":1,"FumbleReturnYards":2,"FumbleReturnTouchdowns":0,"Interceptions":0,"InterceptionReturnYards":0,"InterceptionReturnTouchdowns":0,"BlockedKicks":0,"Safeties":0,"PuntReturns":2,"PuntReturnYards":12,"PuntReturnTouchdowns":0,"PuntReturnLong":10,"KickReturns":2,"KickReturnYards":55,"KickReturnTouchdowns":0,"KickReturnLong":32,"BlockedKickReturnTouchdowns":0,"FieldGoalReturnTouchdowns":0,"FantasyPointsAllowed":55.84,"QuarterbackFantasyPointsAllowed":18.64,"RunningbackFantasyPointsAllowed":15.5,"WideReceiverFantasyPointsAllowed":14.1,"TightEndFantasyPointsAllowed":2.6,"KickerFantasyPointsAllowed":5,"BlockedKickReturnYards":0,"FieldGoalReturnYards":0,"QuarterbackHits":6,"TacklesForLoss":4,"DefensiveTouchdowns":0,"SpecialTeamsTouchdowns":0,"IsGameOver":true,"FantasyPoints":6,"Stadium":"Lucas Oil Stadium","Temperature":60,"Humidity":65,"WindSpeed":9,"ThirdDownAttempts":15,"ThirdDownConversions":6,"FourthDownAttempts":1,"FourthDownConversions":1,"PointsAllowedByDefenseSpecialTeams":17,"FanDuelSalary":null,"DraftKingsSalary":null,"FantasyDataSalary":null,"VictivSalary":null},"AwayKickPuntReturns":[{"PlayerGameID":5915781,"PlayerID":4291,"ShortName":"J.Cribbs","Name":"Joshua Cribbs","Team":"CLE","Number":16,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":0.8,"Updated":null,"KickReturnLong":32,"KickReturnTouchdowns":0,"KickReturnYards":55,"KickReturnYardsPerAttempt":27.5,"KickReturns":2,"PuntReturnLong":10,"PuntReturnTouchdowns":0,"PuntReturnYards":12,"PuntReturnYardsPerAttempt":6,"PuntReturns":2}],"AwayKicking":[{"PlayerGameID":5915780,"PlayerID":5714,"ShortName":"P.Dawson","Name":"Phil Dawson","Team":"CLE","Number":4,"Position":"K","PositionCategory":"ST","FantasyPosition":"K","FantasyPoints":1,"Updated":null,"ExtraPointsAttempted":1,"ExtraPointsMade":1,"FieldGoalPercentage":0,"FieldGoalsAttempted":0,"FieldGoalsLongestMade":0,"FieldGoalsMade":0}],"AwayPassing":[{"PlayerGameID":5915765,"PlayerID":13910,"ShortName":"B.Weeden","Name":"Brandon Weeden","Team":"CLE","Number":3,"Position":"QB","PositionCategory":"OFF","FantasyPosition":"QB","FantasyPoints":18.96,"Updated":null,"PassingAttempts":41,"PassingCompletionPercentage":61,"PassingCompletions":25,"PassingInterceptions":0,"PassingLong":33,"PassingRating":95.99,"PassingSackYards":0,"PassingSacks":0,"PassingTouchdowns":2,"PassingYards":264,"PassingYardsPerAttempt":6.4,"PassingYardsPerCompletion":10.6,"TwoPointConversionPasses":0}],"AwayPunting":[{"PlayerGameID":5915779,"PlayerID":10121,"ShortName":"R.Hodges","Name":"Reggie Hodges","Team":"CLE","Number":2,"Position":"P","PositionCategory":"ST","FantasyPosition":"P","FantasyPoints":0,"Updated":null,"PuntAverage":41.4,"PuntInside20":2,"PuntTouchbacks":0,"PuntYards":207,"Punts":5}],"AwayReceiving":[{"PlayerGameID":5915764,"PlayerID":14587,"ShortName":"J.Gordon","Name":"Josh Gordon","Team":"CLE","Number":13,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":11.9,"Updated":null,"FumblesLost":0,"ReceivingLong":33,"ReceivingTargets":10,"ReceivingTouchdowns":1,"ReceivingYards":59,"ReceivingYardsPerReception":29.5,"ReceivingYardsPerTarget":5.9,"ReceptionPercentage":20,"Receptions":2,"TwoPointConversionReceptions":0},{"PlayerGameID":5915796,"PlayerID":14735,"ShortName":"J.Cooper","Name":"Josh Cooper","Team":"CLE","Number":88,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":5.3,"Updated":null,"FumblesLost":0,"ReceivingLong":14,"ReceivingTargets":8,"ReceivingTouchdowns":0,"ReceivingYards":53,"ReceivingYardsPerReception":13.2,"ReceivingYardsPerTarget":6.6,"ReceptionPercentage":50,"Receptions":4,"TwoPointConversionReceptions":0},{"PlayerGameID":5915757,"PlayerID":12874,"ShortName":"G.Little","Name":"Greg Little","Team":"CLE","Number":15,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":11.2,"Updated":null,"FumblesLost":0,"ReceivingLong":14,"ReceivingTargets":7,"ReceivingTouchdowns":1,"ReceivingYards":52,"ReceivingYardsPerReception":8.7,"ReceivingYardsPerTarget":7.4,"ReceptionPercentage":85.7,"Receptions":6,"TwoPointConversionReceptions":0},{"PlayerGameID":5915763,"PlayerID":11756,"ShortName":"B.Watson","Name":"Benjamin Watson","Team":"CLE","Number":82,"Position":"TE","PositionCategory":"OFF","FantasyPosition":"TE","FantasyPoints":3.6,"Updated":null,"FumblesLost":0,"ReceivingLong":25,"ReceivingTargets":3,"ReceivingTouchdowns":0,"ReceivingYards":36,"ReceivingYardsPerReception":12,"ReceivingYardsPerTarget":12,"ReceptionPercentage":100,"Receptions":3,"TwoPointConversionReceptions":0},{"PlayerGameID":5915795,"PlayerID":13887,"ShortName":"T.Benjamin","Name":"Travis Benjamin","Team":"CLE","Number":80,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":3.3,"Updated":null,"FumblesLost":0,"ReceivingLong":12,"ReceivingTargets":5,"ReceivingTouchdowns":0,"ReceivingYards":33,"ReceivingYardsPerReception":11,"ReceivingYardsPerTarget":6.6,"ReceptionPercentage":60,"Receptions":3,"TwoPointConversionReceptions":0},{"PlayerGameID":5915784,"PlayerID":9277,"ShortName":"C.Ogbonnaya","Name":"Chris Ogbonnaya","Team":"CLE","Number":25,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":2.3,"Updated":null,"FumblesLost":0,"ReceivingLong":7,"ReceivingTargets":4,"ReceivingTouchdowns":0,"ReceivingYards":17,"ReceivingYardsPerReception":5.7,"ReceivingYardsPerTarget":4.2,"ReceptionPercentage":75,"Receptions":3,"TwoPointConversionReceptions":0},{"PlayerGameID":5915767,"PlayerID":13902,"ShortName":"T.Richardson","Name":"Trent Richardson","Team":"CLE","Number":33,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":1.9,"Updated":null,"FumblesLost":0,"ReceivingLong":9,"ReceivingTargets":2,"ReceivingTouchdowns":0,"ReceivingYards":11,"ReceivingYardsPerReception":5.5,"ReceivingYardsPerTarget":5.5,"ReceptionPercentage":100,"Receptions":2,"TwoPointConversionReceptions":0},{"PlayerGameID":5915781,"PlayerID":4291,"ShortName":"J.Cribbs","Name":"Joshua Cribbs","Team":"CLE","Number":16,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":0.8,"Updated":null,"FumblesLost":0,"ReceivingLong":8,"ReceivingTargets":1,"ReceivingTouchdowns":0,"ReceivingYards":8,"ReceivingYardsPerReception":8,"ReceivingYardsPerTarget":8,"ReceptionPercentage":100,"Receptions":1,"TwoPointConversionReceptions":0},{"PlayerGameID":5915766,"PlayerID":12861,"ShortName":"J.Cameron","Name":"Jordan Cameron","Team":"CLE","Number":84,"Position":"TE","PositionCategory":"OFF","FantasyPosition":"TE","FantasyPoints":0.4,"Updated":null,"FumblesLost":0,"ReceivingLong":4,"ReceivingTargets":1,"ReceivingTouchdowns":0,"ReceivingYards":4,"ReceivingYardsPerReception":4,"ReceivingYardsPerTarget":4,"ReceptionPercentage":100,"Receptions":1,"TwoPointConversionReceptions":0}],"AwayRushing":[{"PlayerGameID":5915782,"PlayerID":13530,"ShortName":"M.Hardesty","Name":"Montario Hardesty","Team":"CLE","Number":20,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":2.8,"Updated":null,"FumblesLost":0,"RushingAttempts":7,"RushingLong":9,"RushingTouchdowns":0,"RushingYards":28,"RushingYardsPerAttempt":4,"TwoPointConversionRuns":0},{"PlayerGameID":5915765,"PlayerID":13910,"ShortName":"B.Weeden","Name":"Brandon Weeden","Team":"CLE","Number":3,"Position":"QB","PositionCategory":"OFF","FantasyPosition":"QB","FantasyPoints":18.96,"Updated":null,"FumblesLost":0,"RushingAttempts":1,"RushingLong":13,"RushingTouchdowns":0,"RushingYards":13,"RushingYardsPerAttempt":13,"TwoPointConversionRuns":0},{"PlayerGameID":5915767,"PlayerID":13902,"ShortName":"T.Richardson","Name":"Trent Richardson","Team":"CLE","Number":33,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":1.9,"Updated":null,"FumblesLost":0,"RushingAttempts":8,"RushingLong":5,"RushingTouchdowns":0,"RushingYards":8,"RushingYardsPerAttempt":1,"TwoPointConversionRuns":0},{"PlayerGameID":5915784,"PlayerID":9277,"ShortName":"C.Ogbonnaya","Name":"Chris Ogbonnaya","Team":"CLE","Number":25,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":2.3,"Updated":null,"FumblesLost":0,"RushingAttempts":1,"RushingLong":6,"RushingTouchdowns":0,"RushingYards":6,"RushingYardsPerAttempt":6,"TwoPointConversionRuns":0}],"Game":{"StadiumDetails":null,"GameKey":"201210714","Date":"2012-10-21T13:00:00","SeasonType":1,"Season":2012,"Week":7,"Stadium":"Lucas Oil Stadium","PlayingSurface":"Artificial","Temperature":60,"Humidity":65,"WindSpeed":9,"AwayTeam":"CLE","HomeTeam":"IND","AwayScore":13,"HomeScore":17,"TotalScore":30,"OverUnder":46.5,"PointSpread":-1,"AwayScoreQuarter1":0,"AwayScoreQuarter2":6,"AwayScoreQuarter3":7,"AwayScoreQuarter4":0,"AwayScoreOvertime":0,"HomeScoreQuarter1":7,"HomeScoreQuarter2":7,"HomeScoreQuarter3":3,"HomeScoreQuarter4":0,"HomeScoreOvertime":0,"AwayTimeOfPossession":"24:39","HomeTimeOfPossession":"35:21","AwayFirstDowns":19,"HomeFirstDowns":21,"AwayFirstDownsByRushing":3,"HomeFirstDownsByRushing":10,"AwayFirstDownsByPassing":14,"HomeFirstDownsByPassing":8,"AwayFirstDownsByPenalty":2,"HomeFirstDownsByPenalty":3,"AwayOffensivePlays":58,"HomeOffensivePlays":69,"AwayOffensiveYards":319,"HomeOffensiveYards":321,"AwayOffensiveYardsPerPlay":5.5,"HomeOffensiveYardsPerPlay":4.7,"AwayTouchdowns":2,"HomeTouchdowns":2,"AwayRushingAttempts":17,"HomeRushingAttempts":37,"AwayRushingYards":55,"HomeRushingYards":148,"AwayRushingYardsPerAttempt":3.2,"HomeRushingYardsPerAttempt":4,"AwayRushingTouchdowns":0,"HomeRushingTouchdowns":2,"AwayPassingAttempts":41,"HomePassingAttempts":29,"AwayPassingCompletions":25,"HomePassingCompletions":16,"AwayPassingYards":264,"HomePassingYards":173,"AwayPassingTouchdowns":2,"HomePassingTouchdowns":0,"AwayPassingInterceptions":0,"HomePassingInterceptions":0,"AwayPassingYardsPerAttempt":6.4,"HomePassingYardsPerAttempt":6,"AwayPassingYardsPerCompletion":10.6,"HomePassingYardsPerCompletion":10.8,"AwayCompletionPercentage":61,"HomeCompletionPercentage":55.2,"AwayPasserRating":95.99,"HomePasserRating":72.92,"AwayThirdDownAttempts":13,"HomeThirdDownAttempts":15,"AwayThirdDownConversions":6,"HomeThirdDownConversions":6,"AwayThirdDownPercentage":46.2,"HomeThirdDownPercentage":40,"AwayFourthDownAttempts":1,"HomeFourthDownAttempts":1,"AwayFourthDownConversions":0,"HomeFourthDownConversions":1,"AwayFourthDownPercentage":0,"HomeFourthDownPercentage":100,"AwayRedZoneAttempts":1,"HomeRedZoneAttempts":3,"AwayRedZoneConversions":1,"HomeRedZoneConversions":2,"AwayGoalToGoAttempts":1,"HomeGoalToGoAttempts":2,"AwayGoalToGoConversions":1,"HomeGoalToGoConversions":2,"AwayReturnYards":12,"HomeReturnYards":8,"AwayPenalties":9,"HomePenalties":7,"AwayPenaltyYards":75,"HomePenaltyYards":50,"AwayFumbles":1,"HomeFumbles":1,"AwayFumblesLost":0,"HomeFumblesLost":1,"AwayTimesSacked":0,"HomeTimesSacked":3,"AwayTimesSackedYards":0,"HomeTimesSackedYards":13,"AwaySafeties":0,"HomeSafeties":0,"AwayPunts":5,"HomePunts":5,"AwayPuntYards":207,"HomePuntYards":242,"AwayPuntAverage":41.4,"HomePuntAverage":48.4,"AwayGiveaways":0,"HomeGiveaways":1,"AwayTakeaways":1,"HomeTakeaways":0,"AwayTurnoverDifferential":1,"HomeTurnoverDifferential":-1,"AwayKickoffs":3,"HomeKickoffs":4,"AwayKickoffsInEndZone":3,"HomeKickoffsInEndZone":4,"AwayKickoffTouchbacks":2,"HomeKickoffTouchbacks":2,"AwayPuntsHadBlocked":0,"HomePuntsHadBlocked":0,"AwayPuntNetAverage":39.8,"HomePuntNetAverage":38,"AwayExtraPointKickingAttempts":1,"HomeExtraPointKickingAttempts":2,"AwayExtraPointKickingConversions":1,"HomeExtraPointKickingConversions":2,"AwayExtraPointsHadBlocked":0,"HomeExtraPointsHadBlocked":0,"AwayExtraPointPassingAttempts":0,"HomeExtraPointPassingAttempts":0,"AwayExtraPointPassingConversions":0,"HomeExtraPointPassingConversions":0,"AwayExtraPointRushingAttempts":1,"HomeExtraPointRushingAttempts":0,"AwayExtraPointRushingConversions":0,"HomeExtraPointRushingConversions":0,"AwayFieldGoalAttempts":0,"HomeFieldGoalAttempts":1,"AwayFieldGoalsMade":0,"HomeFieldGoalsMade":1,"AwayFieldGoalsHadBlocked":0,"HomeFieldGoalsHadBlocked":0,"AwayPuntReturns":2,"HomePuntReturns":1,"AwayPuntReturnYards":12,"HomePuntReturnYards":8,"AwayKickReturns":2,"HomeKickReturns":1,"AwayKickReturnYards":55,"HomeKickReturnYards":24,"AwayInterceptionReturns":0,"HomeInterceptionReturns":0,"AwayInterceptionReturnYards":0,"HomeInterceptionReturnYards":0,"AwaySoloTackles":46,"AwayAssistedTackles":16,"AwayQuarterbackHits":6,"AwayTacklesForLoss":4,"AwaySacks":3,"AwaySackYards":13,"AwayPassesDefended":2,"AwayFumblesForced":1,"AwayFumblesRecovered":1,"AwayFumbleReturnYards":2,"AwayFumbleReturnTouchdowns":0,"AwayInterceptionReturnTouchdowns":0,"AwayBlockedKicks":0,"AwayPuntReturnTouchdowns":0,"AwayPuntReturnLong":10,"AwayKickReturnTouchdowns":0,"AwayKickReturnLong":32,"AwayBlockedKickReturnYards":0,"AwayBlockedKickReturnTouchdowns":0,"AwayFieldGoalReturnYards":0,"AwayFieldGoalReturnTouchdowns":0,"AwayPuntNetYards":199,"HomeSoloTackles":33,"HomeAssistedTackles":14,"HomeQuarterbackHits":6,"HomeTacklesForLoss":2,"HomeSacks":0,"HomeSackYards":0,"HomePassesDefended":6,"HomeFumblesForced":0,"HomeFumblesRecovered":0,"HomeFumbleReturnYards":0,"HomeFumbleReturnTouchdowns":0,"HomeInterceptionReturnTouchdowns":0,"HomeBlockedKicks":0,"HomePuntReturnTouchdowns":0,"HomePuntReturnLong":8,"HomeKickReturnTouchdowns":0,"HomeKickReturnLong":24,"HomeBlockedKickReturnYards":0,"HomeBlockedKickReturnTouchdowns":0,"HomeFieldGoalReturnYards":0,"HomeFieldGoalReturnTouchdowns":0,"HomePuntNetYards":190,"IsGameOver":true,"GameID":62613,"StadiumID":null,"AwayTwoPointConversionReturns":null,"HomeTwoPointConversionReturns":null},"HomeDefense":[{"PlayerGameID":5915721,"PlayerID":13999,"ShortName":"J.Freeman","Name":"Jerrell Freeman","Team":"IND","Number":50,"Position":"OLB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":4.5,"Updated":null,"AssistedTackles":3,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":3,"Tackles":6,"TacklesForLoss":null},{"PlayerGameID":5915725,"PlayerID":2379,"ShortName":"A.Bethea","Name":"Antoine Bethea","Team":"IND","Number":41,"Position":"FS","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":6,"Updated":null,"AssistedTackles":2,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":1,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":4,"Tackles":6,"TacklesForLoss":null},{"PlayerGameID":5915726,"PlayerID":9681,"ShortName":"J.Powers","Name":"Jerraud Powers","Team":"IND","Number":25,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":6.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":2,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":4,"Tackles":5,"TacklesForLoss":null},{"PlayerGameID":5915720,"PlayerID":11126,"ShortName":"K.Conner","Name":"Kavell Conner","Team":"IND","Number":53,"Position":"ILB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":3.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":3,"Tackles":4,"TacklesForLoss":null},{"PlayerGameID":5915719,"PlayerID":11132,"ShortName":"J.Hughes","Name":"Jerry Hughes","Team":"IND","Number":92,"Position":"OLB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":4,"Updated":null,"AssistedTackles":2,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":3,"TacklesForLoss":null},{"PlayerGameID":5915723,"PlayerID":9664,"ShortName":"V.Davis","Name":"Vontae Davis","Team":"IND","Number":23,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":3,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":3,"Tackles":3,"TacklesForLoss":null},{"PlayerGameID":5915733,"PlayerID":11199,"ShortName":"C.Vaughn","Name":"Cassius Vaughn","Team":"IND","Number":32,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":4,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":1,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":3,"Tackles":3,"TacklesForLoss":null},{"PlayerGameID":5915738,"PlayerID":11124,"ShortName":"P.Angerer","Name":"Pat Angerer","Team":"IND","Number":51,"Position":"ILB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":4.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":2,"Tackles":3,"TacklesForLoss":null},{"PlayerGameID":5915717,"PlayerID":669,"ShortName":"A.Johnson","Name":"Antonio Johnson","Team":"IND","Number":99,"Position":"NT","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":2.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915724,"PlayerID":1765,"ShortName":"T.Zbikowski","Name":"Tom Zbikowski","Team":"IND","Number":28,"Position":"SS","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":3.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":2,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915732,"PlayerID":12557,"ShortName":"J.Gordy","Name":"Josh Gordy","Team":"IND","Number":27,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":1,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915735,"PlayerID":12968,"ShortName":"J.Lefeged","Name":"Joe Lefeged","Team":"IND","Number":35,"Position":"S","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":1,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915744,"PlayerID":12403,"ShortName":"C.Geathers","Name":"Clifton Geathers","Team":"IND","Number":66,"Position":"DE","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":1.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915716,"PlayerID":11139,"ShortName":"R.Mathews","Name":"Ricardo Mathews","Team":"IND","Number":91,"Position":"DE","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":0.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":0,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915722,"PlayerID":4131,"ShortName":"D.Freeney","Name":"Dwight Freeney","Team":"IND","Number":93,"Position":"DE/LB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":3,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915739,"PlayerID":12901,"ShortName":"M.Harvey","Name":"Mario Harvey","Team":"IND","Number":54,"Position":"ILB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":1,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915740,"PlayerID":14003,"ShortName":"J.Hickman","Name":"Justin Hickman","Team":"IND","Number":55,"Position":"OLB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":1,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915741,"PlayerID":8902,"ShortName":"M.Fokou","Name":"Moise Fokou","Team":"IND","Number":58,"Position":"ILB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":1,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915745,"PlayerID":14743,"ShortName":"L.Guy","Name":"Lawrence Guy","Team":"IND","Number":67,"Position":"DE","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":1,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":1,"TacklesForLoss":null}],"HomeFantasyDefense":{"ScoringDetails":[],"GameKey":"201210714","SeasonType":1,"Season":2012,"Week":7,"Date":"2012-10-21T13:00:00","Team":"IND","Opponent":"CLE","PointsAllowed":13,"TouchdownsScored":0,"SoloTackles":33,"AssistedTackles":14,"Sacks":0,"SackYards":0,"PassesDefended":6,"FumblesForced":0,"FumblesRecovered":0,"FumbleReturnYards":0,"FumbleReturnTouchdowns":0,"Interceptions":0,"InterceptionReturnYards":0,"InterceptionReturnTouchdowns":0,"BlockedKicks":0,"Safeties":0,"PuntReturns":1,"PuntReturnYards":8,"PuntReturnTouchdowns":0,"PuntReturnLong":8,"KickReturns":1,"KickReturnYards":24,"KickReturnTouchdowns":0,"KickReturnLong":24,"BlockedKickReturnTouchdowns":0,"FieldGoalReturnTouchdowns":0,"FantasyPointsAllowed":63.46,"QuarterbackFantasyPointsAllowed":18.96,"RunningbackFantasyPointsAllowed":7,"WideReceiverFantasyPointsAllowed":32.5,"TightEndFantasyPointsAllowed":4,"KickerFantasyPointsAllowed":1,"BlockedKickReturnYards":0,"FieldGoalReturnYards":0,"QuarterbackHits":6,"TacklesForLoss":2,"DefensiveTouchdowns":0,"SpecialTeamsTouchdowns":0,"IsGameOver":true,"FantasyPoints":4,"Stadium":"Lucas Oil Stadium","Temperature":60,"Humidity":65,"WindSpeed":9,"ThirdDownAttempts":13,"ThirdDownConversions":6,"FourthDownAttempts":1,"FourthDownConversions":0,"PointsAllowedByDefenseSpecialTeams":13,"FanDuelSalary":null,"DraftKingsSalary":null,"FantasyDataSalary":null,"VictivSalary":null},"HomeKickPuntReturns":[{"PlayerGameID":5915731,"PlayerID":4067,"ShortName":"M.Moore","Name":"Mewelde Moore","Team":"IND","Number":26,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":1.1,"Updated":null,"KickReturnLong":24,"KickReturnTouchdowns":0,"KickReturnYards":24,"KickReturnYardsPerAttempt":24,"KickReturns":1,"PuntReturnLong":0,"PuntReturnTouchdowns":0,"PuntReturnYards":0,"PuntReturnYardsPerAttempt":0,"PuntReturns":0},{"PlayerGameID":5915729,"PlayerID":14005,"ShortName":"T.Hilton","Name":"TY Hilton","Team":"IND","Number":13,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":2.2,"Updated":null,"KickReturnLong":0,"KickReturnTouchdowns":0,"KickReturnYards":0,"KickReturnYardsPerAttempt":0,"KickReturns":0,"PuntReturnLong":8,"PuntReturnTouchdowns":0,"PuntReturnYards":8,"PuntReturnYardsPerAttempt":8,"PuntReturns":1}],"HomeKicking":[{"PlayerGameID":5915704,"PlayerID":3258,"ShortName":"A.Vinatieri","Name":"Adam Vinatieri","Team":"IND","Number":4,"Position":"K","PositionCategory":"ST","FantasyPosition":"K","FantasyPoints":5,"Updated":null,"ExtraPointsAttempted":2,"ExtraPointsMade":2,"FieldGoalPercentage":100,"FieldGoalsAttempted":1,"FieldGoalsLongestMade":38,"FieldGoalsMade":1}],"HomePassing":[{"PlayerGameID":5915706,"PlayerID":14008,"ShortName":"A.Luck","Name":"Andrew Luck","Team":"IND","Number":12,"Position":"QB","PositionCategory":"OFF","FantasyPosition":"QB","FantasyPoints":18.64,"Updated":null,"PassingAttempts":29,"PassingCompletionPercentage":55.2,"PassingCompletions":16,"PassingInterceptions":0,"PassingLong":30,"PassingRating":74.78,"PassingSackYards":13,"PassingSacks":3,"PassingTouchdowns":0,"PassingYards":186,"PassingYardsPerAttempt":6.4,"PassingYardsPerCompletion":11.6,"TwoPointConversionPasses":0}],"HomePunting":[{"PlayerGameID":5915727,"PlayerID":8618,"ShortName":"P.McAfee","Name":"Pat McAfee","Team":"IND","Number":1,"Position":"P","PositionCategory":"ST","FantasyPosition":"P","FantasyPoints":0,"Updated":null,"PuntAverage":48.4,"PuntInside20":1,"PuntTouchbacks":2,"PuntYards":242,"Punts":5}],"HomeReceiving":[{"PlayerGameID":5915715,"PlayerID":5002,"ShortName":"R.Wayne","Name":"Reggie Wayne","Team":"IND","Number":87,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":7.3,"Updated":null,"FumblesLost":0,"ReceivingLong":30,"ReceivingTargets":11,"ReceivingTouchdowns":0,"ReceivingYards":73,"ReceivingYardsPerReception":12.2,"ReceivingYardsPerTarget":6.6,"ReceptionPercentage":54.5,"Receptions":6,"TwoPointConversionReceptions":0},{"PlayerGameID":5915705,"PlayerID":2730,"ShortName":"D.Avery","Name":"Donnie Avery","Team":"IND","Number":11,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":4.6,"Updated":null,"FumblesLost":0,"ReceivingLong":16,"ReceivingTargets":6,"ReceivingTouchdowns":0,"ReceivingYards":46,"ReceivingYardsPerReception":11.5,"ReceivingYardsPerTarget":7.7,"ReceptionPercentage":66.7,"Receptions":4,"TwoPointConversionReceptions":0},{"PlayerGameID":5915729,"PlayerID":14005,"ShortName":"T.Hilton","Name":"TY Hilton","Team":"IND","Number":13,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":2.2,"Updated":null,"FumblesLost":0,"ReceivingLong":14,"ReceivingTargets":5,"ReceivingTouchdowns":0,"ReceivingYards":22,"ReceivingYardsPerReception":11,"ReceivingYardsPerTarget":4.4,"ReceptionPercentage":40,"Receptions":2,"TwoPointConversionReceptions":0},{"PlayerGameID":5915707,"PlayerID":13991,"ShortName":"V.Ballard","Name":"Vick Ballard","Team":"IND","Number":33,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":10.3,"Updated":null,"FumblesLost":0,"ReceivingLong":19,"ReceivingTargets":1,"ReceivingTouchdowns":0,"ReceivingYards":19,"ReceivingYardsPerReception":19,"ReceivingYardsPerTarget":19,"ReceptionPercentage":100,"Receptions":1,"TwoPointConversionReceptions":0},{"PlayerGameID":5915746,"PlayerID":13997,"ShortName":"C.Fleener","Name":"Coby Fleener","Team":"IND","Number":80,"Position":"TE","PositionCategory":"OFF","FantasyPosition":"TE","FantasyPoints":1.7,"Updated":null,"FumblesLost":0,"ReceivingLong":10,"ReceivingTargets":2,"ReceivingTouchdowns":0,"ReceivingYards":17,"ReceivingYardsPerReception":8.5,"ReceivingYardsPerTarget":8.5,"ReceptionPercentage":100,"Receptions":2,"TwoPointConversionReceptions":0},{"PlayerGameID":5915714,"PlayerID":13987,"ShortName":"D.Allen","Name":"Dwayne Allen","Team":"IND","Number":83,"Position":"TE","PositionCategory":"OFF","FantasyPosition":"TE","FantasyPoints":0.9,"Updated":null,"FumblesLost":0,"ReceivingLong":9,"ReceivingTargets":2,"ReceivingTouchdowns":0,"ReceivingYards":9,"ReceivingYardsPerReception":9,"ReceivingYardsPerTarget":4.5,"ReceptionPercentage":50,"Receptions":1,"TwoPointConversionReceptions":0},{"PlayerGameID":5915730,"PlayerID":13992,"ShortName":"L.Brazill","Name":"LaVon Brazill","Team":"IND","Number":15,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":0,"Updated":null,"FumblesLost":0,"ReceivingLong":0,"ReceivingTargets":1,"ReceivingTouchdowns":0,"ReceivingYards":0,"ReceivingYardsPerReception":0,"ReceivingYardsPerTarget":0,"ReceptionPercentage":0,"Receptions":0,"TwoPointConversionReceptions":0},{"PlayerGameID":5915734,"PlayerID":12959,"ShortName":"D.Carter","Name":"Delone Carter","Team":"IND","Number":34,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":4.1,"Updated":null,"FumblesLost":0,"ReceivingLong":0,"ReceivingTargets":1,"ReceivingTouchdowns":0,"ReceivingYards":0,"ReceivingYardsPerReception":0,"ReceivingYardsPerTarget":0,"ReceptionPercentage":0,"Receptions":0,"TwoPointConversionReceptions":0}],"HomeRushing":[{"PlayerGameID":5915707,"PlayerID":13991,"ShortName":"V.Ballard","Name":"Vick Ballard","Team":"IND","Number":33,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":10.3,"Updated":null,"FumblesLost":0,"RushingAttempts":20,"RushingLong":26,"RushingTouchdowns":0,"RushingYards":84,"RushingYardsPerAttempt":4.2,"TwoPointConversionRuns":0},{"PlayerGameID":5915734,"PlayerID":12959,"ShortName":"D.Carter","Name":"Delone Carter","Team":"IND","Number":34,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":4.1,"Updated":null,"FumblesLost":0,"RushingAttempts":11,"RushingLong":6,"RushingTouchdowns":0,"RushingYards":41,"RushingYardsPerAttempt":3.7,"TwoPointConversionRuns":0},{"PlayerGameID":5915706,"PlayerID":14008,"ShortName":"A.Luck","Name":"Andrew Luck","Team":"IND","Number":12,"Position":"QB","PositionCategory":"OFF","FantasyPosition":"QB","FantasyPoints":18.64,"Updated":null,"FumblesLost":1,"RushingAttempts":3,"RushingLong":5,"RushingTouchdowns":2,"RushingYards":12,"RushingYardsPerAttempt":4,"TwoPointConversionRuns":0},{"PlayerGameID":5915731,"PlayerID":4067,"ShortName":"M.Moore","Name":"Mewelde Moore","Team":"IND","Number":26,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":1.1,"Updated":null,"FumblesLost":0,"RushingAttempts":3,"RushingLong":5,"RushingTouchdowns":0,"RushingYards":11,"RushingYardsPerAttempt":3.7,"TwoPointConversionRuns":0}],"Score":{"StadiumDetails":null,"GameKey":"201210714","SeasonType":1,"Season":2012,"Week":7,"Date":"2012-10-21T13:00:00","AwayTeam":"CLE","HomeTeam":"IND","AwayScore":13,"HomeScore":17,"Channel":"CBS","PointSpread":-1,"OverUnder":46.5,"Quarter":"F","TimeRemaining":null,"Possession":null,"Down":null,"Distance":null,"YardLine":null,"YardLineTerritory":null,"RedZone":null,"AwayScoreQuarter1":0,"AwayScoreQuarter2":6,"AwayScoreQuarter3":7,"AwayScoreQuarter4":0,"AwayScoreOvertime":0,"HomeScoreQuarter1":7,"HomeScoreQuarter2":7,"HomeScoreQuarter3":3,"HomeScoreQuarter4":0,"HomeScoreOvertime":0,"HasStarted":true,"IsInProgress":false,"IsOver":true,"Has1stQuarterStarted":true,"Has2ndQuarterStarted":true,"Has3rdQuarterStarted":true,"Has4thQuarterStarted":true,"IsOvertime":false,"DownAndDistance":null,"QuarterDescription":"Final","StadiumID":null,"LastUpdated":null},"ScoringDetails":[{"GameKey":"201210714","SeasonType":1,"PlayerID":3258,"Team":"IND","Season":2012,"Week":7,"ScoringType":"FieldGoalMade","Length":38,"ScoringDetailID":307779,"PlayerGameID":5915704},{"GameKey":"201210714","SeasonType":1,"PlayerID":12874,"Team":"CLE","Season":2012,"Week":7,"ScoringType":"ReceivingTouchdown","Length":14,"ScoringDetailID":307780,"PlayerGameID":5915757},{"GameKey":"201210714","SeasonType":1,"PlayerID":13910,"Team":"CLE","Season":2012,"Week":7,"ScoringType":"PassingTouchdown","Length":14,"ScoringDetailID":307781,"PlayerGameID":5915765},{"GameKey":"201210714","SeasonType":1,"PlayerID":14587,"Team":"CLE","Season":2012,"Week":7,"ScoringType":"ReceivingTouchdown","Length":33,"ScoringDetailID":307782,"PlayerGameID":5915764},{"GameKey":"201210714","SeasonType":1,"PlayerID":13910,"Team":"CLE","Season":2012,"Week":7,"ScoringType":"PassingTouchdown","Length":33,"ScoringDetailID":307783,"PlayerGameID":5915765},{"GameKey":"201210714","SeasonType":1,"PlayerID":14008,"Team":"IND","Season":2012,"Week":7,"ScoringType":"RushingTouchdown","Length":5,"ScoringDetailID":307784,"PlayerGameID":5915706},{"GameKey":"201210714","SeasonType":1,"PlayerID":14008,"Team":"IND","Season":2012,"Week":7,"ScoringType":"RushingTouchdown","Length":3,"ScoringDetailID":307785,"PlayerGameID":5915706}],"ScoringPlays":[{"GameKey":"201210714","SeasonType":1,"ScoringPlayID":89087,"Season":2012,"Week":7,"AwayTeam":"CLE","HomeTeam":"IND","Date":"2012-10-21T13:00:00","Sequence":1,"Team":"CLE","Quarter":"3","TimeRemaining":"11:53","PlayDescription":"J.Gordon 33 yd. pass from B.Weeden (P.Dawson kick) (6-80, 3:07)","AwayScore":13,"HomeScore":14},{"GameKey":"201210714","SeasonType":1,"ScoringPlayID":89088,"Season":2012,"Week":7,"AwayTeam":"CLE","HomeTeam":"IND","Date":"2012-10-21T13:00:00","Sequence":2,"Team":"IND","Quarter":"3","TimeRemaining":"3:19","PlayDescription":"A.Vinatieri 38 yd. Field Goal (17-61, 8:34)","AwayScore":13,"HomeScore":17},{"GameKey":"201210714","SeasonType":1,"ScoringPlayID":89089,"Season":2012,"Week":7,"AwayTeam":"CLE","HomeTeam":"IND","Date":"2012-10-21T13:00:00","Sequence":3,"Team":"IND","Quarter":"1","TimeRemaining":"7:23","PlayDescription":"A.Luck 3 yd. run (A.Vinatieri kick) (11-80, 7:37)","AwayScore":0,"HomeScore":7},{"GameKey":"201210714","SeasonType":1,"ScoringPlayID":89090,"Season":2012,"Week":7,"AwayTeam":"CLE","HomeTeam":"IND","Date":"2012-10-21T13:00:00","Sequence":4,"Team":"CLE","Quarter":"2","TimeRemaining":"14:01","PlayDescription":"G.Little 14 yd. pass from B.Weeden (kick aborted) (16-90, 8:22)","AwayScore":6,"HomeScore":7},{"GameKey":"201210714","SeasonType":1,"ScoringPlayID":89091,"Season":2012,"Week":7,"AwayTeam":"CLE","HomeTeam":"IND","Date":"2012-10-21T13:00:00","Sequence":5,"Team":"IND","Quarter":"2","TimeRemaining":"7:41","PlayDescription":"A.Luck 5 yd. run (A.Vinatieri kick) (14-76, 6:20)","AwayScore":6,"HomeScore":14}]}]
|
@@ -0,0 +1 @@
|
|
1
|
+
{"AwayDefense":[{"PlayerGameID":5922976,"PlayerID":9070,"ShortName":"J.Brinkley","Name":"Jasper Brinkley","Team":"MIN","Number":54,"Position":"ILB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":11.0,"Updated":null,"AssistedTackles":2,"FumbleReturnTouchdowns":0,"FumblesForced":1,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0.0,"SoloTackles":7,"Tackles":9,"TacklesForLoss":null}],"AwayFantasyDefense":{"ScoringDetails":[],"GameKey":"201211206","SeasonType":1,"Season":2012,"Week":12,"Date":"2012-11-25T13:00:00","Team":"MIN","Opponent":"CHI","PointsAllowed":28,"TouchdownsScored":0,"SoloTackles":55,"AssistedTackles":8,"Sacks":1,"SackYards":5,"PassesDefended":3,"FumblesForced":1,"FumblesRecovered":1,"FumbleReturnYards":0,"FumbleReturnTouchdowns":0,"Interceptions":1,"InterceptionReturnYards":31,"InterceptionReturnTouchdowns":0,"BlockedKicks":1,"Safeties":0,"PuntReturns":1,"PuntReturnYards":0,"PuntReturnTouchdowns":0,"PuntReturnLong":0,"KickReturns":3,"KickReturnYards":67,"KickReturnTouchdowns":0,"KickReturnLong":38,"BlockedKickReturnTouchdowns":0,"FieldGoalReturnTouchdowns":0,"FantasyPointsAllowed":63.62,"QuarterbackFantasyPointsAllowed":10.42,"RunningbackFantasyPointsAllowed":21.8,"WideReceiverFantasyPointsAllowed":14.6,"TightEndFantasyPointsAllowed":8.8,"KickerFantasyPointsAllowed":8.0,"BlockedKickReturnYards":0,"FieldGoalReturnYards":0,"QuarterbackHits":5,"TacklesForLoss":3,"DefensiveTouchdowns":0,"SpecialTeamsTouchdowns":0,"IsGameOver":true,"FantasyPoints":4.0,"Stadium":"Soldier Field","Temperature":41,"Humidity":26,"WindSpeed":5,"ThirdDownAttempts":19,"ThirdDownConversions":11,"FourthDownAttempts":1,"FourthDownConversions":1,"PointsAllowedByDefenseSpecialTeams":28,"FanDuelSalary":null,"DraftKingsSalary":null,"FantasyDataSalary":null,"VictivSalary":null},"AwayKickPuntReturns":[{"PlayerGameID":5922989,"PlayerID":12681,"ShortName":"M.Sherels","Name":"Marcus Sherels","Team":"MIN","Number":35,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":0.0,"Updated":null,"KickReturnLong":38,"KickReturnTouchdowns":0,"KickReturnYards":38,"KickReturnYardsPerAttempt":38,"KickReturns":1,"PuntReturnLong":0,"PuntReturnTouchdowns":0,"PuntReturnYards":0,"PuntReturnYardsPerAttempt":0,"PuntReturns":1}],"AwayKicking":[{"PlayerGameID":5922907,"PlayerID":14463,"ShortName":"B.Walsh","Name":"Blair Walsh","Team":"MIN","Number":3,"Position":"K","PositionCategory":"ST","FantasyPosition":"K","FantasyPoints":4.0,"Updated":null,"ExtraPointsAttempted":1,"ExtraPointsMade":1,"FieldGoalPercentage":50.0,"FieldGoalsAttempted":2,"FieldGoalsLongestMade":40,"FieldGoalsMade":1}],"AwayPassing":[{"PlayerGameID":5922968,"PlayerID":13270,"ShortName":"C.Ponder","Name":"Christian Ponder","Team":"MIN","Number":7,"Position":"QB","PositionCategory":"OFF","FantasyPosition":"QB","FantasyPoints":6.96,"Updated":null,"PassingAttempts":43,"PassingCompletionPercentage":51.2,"PassingCompletions":22,"PassingInterceptions":1,"PassingLong":25,"PassingRating":58.19,"PassingSackYards":15,"PassingSacks":2,"PassingTouchdowns":1,"PassingYards":159,"PassingYardsPerAttempt":3.7,"PassingYardsPerCompletion":7.2,"TwoPointConversionPasses":0}],"AwayPunting":[{"PlayerGameID":5922982,"PlayerID":5384,"ShortName":"C.Kluwe","Name":"Chris Kluwe","Team":"MIN","Number":5,"Position":"P","PositionCategory":"ST","FantasyPosition":"P","FantasyPoints":0.0,"Updated":null,"PuntAverage":40.5,"PuntInside20":0,"PuntTouchbacks":0,"PuntYards":162,"Punts":4}],"AwayReceiving":[{"PlayerGameID":5922966,"PlayerID":13275,"ShortName":"K.Rudolph","Name":"Kyle Rudolph","Team":"MIN","Number":82,"Position":"TE","PositionCategory":"OFF","FantasyPosition":"TE","FantasyPoints":11.5,"Updated":null,"FumblesLost":0,"ReceivingLong":25,"ReceivingTargets":9,"ReceivingTouchdowns":1,"ReceivingYards":55,"ReceivingYardsPerReception":11,"ReceivingYardsPerTarget":6.1,"ReceptionPercentage":55.6,"Receptions":5,"TwoPointConversionReceptions":0}],"AwayRushing":[{"PlayerGameID":5922970,"PlayerID":4807,"ShortName":"A.Peterson","Name":"Adrian Peterson","Team":"MIN","Number":28,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":11.8,"Updated":null,"FumblesLost":1,"RushingAttempts":18,"RushingLong":23,"RushingTouchdowns":0,"RushingYards":108,"RushingYardsPerAttempt":6,"TwoPointConversionRuns":0}],"Game":{"StadiumDetails":null,"GameKey":"201211206","Date":"2012-11-25T13:00:00","SeasonType":1,"Season":2012,"Week":12,"Stadium":"Soldier Field","PlayingSurface":"Grass","Temperature":41,"Humidity":26,"WindSpeed":5,"AwayTeam":"MIN","HomeTeam":"CHI","AwayScore":10,"HomeScore":28,"TotalScore":38,"OverUnder":38.5,"PointSpread":-6.5,"AwayScoreQuarter1":3,"AwayScoreQuarter2":0,"AwayScoreQuarter3":7,"AwayScoreQuarter4":0,"AwayScoreOvertime":0,"HomeScoreQuarter1":10,"HomeScoreQuarter2":15,"HomeScoreQuarter3":3,"HomeScoreQuarter4":0,"HomeScoreOvertime":0,"AwayTimeOfPossession":"22:30","HomeTimeOfPossession":"37:30","AwayFirstDowns":15,"HomeFirstDowns":23,"AwayFirstDownsByRushing":3,"HomeFirstDownsByRushing":7,"AwayFirstDownsByPassing":10,"HomeFirstDownsByPassing":13,"AwayFirstDownsByPenalty":2,"HomeFirstDownsByPenalty":3,"AwayOffensivePlays":65,"HomeOffensivePlays":71,"AwayOffensiveYards":258,"HomeOffensiveYards":296,"AwayOffensiveYardsPerPlay":4.0,"HomeOffensiveYardsPerPlay":4.2,"AwayTouchdowns":1,"HomeTouchdowns":3,"AwayRushingAttempts":20,"HomeRushingAttempts":39,"AwayRushingYards":114,"HomeRushingYards":113,"AwayRushingYardsPerAttempt":5.7,"HomeRushingYardsPerAttempt":2.9,"AwayRushingTouchdowns":0,"HomeRushingTouchdowns":2,"AwayPassingAttempts":43,"HomePassingAttempts":31,"AwayPassingCompletions":22,"HomePassingCompletions":23,"AwayPassingYards":144,"HomePassingYards":183,"AwayPassingTouchdowns":1,"HomePassingTouchdowns":1,"AwayPassingInterceptions":1,"HomePassingInterceptions":1,"AwayPassingYardsPerAttempt":3.3,"HomePassingYardsPerAttempt":5.9,"AwayPassingYardsPerCompletion":6.5,"HomePassingYardsPerCompletion":8.0,"AwayCompletionPercentage":51.2,"HomeCompletionPercentage":74.2,"AwayPasserRating":56.73,"HomePasserRating":85.82,"AwayThirdDownAttempts":16,"HomeThirdDownAttempts":19,"AwayThirdDownConversions":6,"HomeThirdDownConversions":11,"AwayThirdDownPercentage":37.5,"HomeThirdDownPercentage":57.9,"AwayFourthDownAttempts":3,"HomeFourthDownAttempts":1,"AwayFourthDownConversions":1,"HomeFourthDownConversions":1,"AwayFourthDownPercentage":33.3,"HomeFourthDownPercentage":100,"AwayRedZoneAttempts":3,"HomeRedZoneAttempts":4,"AwayRedZoneConversions":1,"HomeRedZoneConversions":3,"AwayGoalToGoAttempts":1,"HomeGoalToGoAttempts":2,"AwayGoalToGoConversions":1,"HomeGoalToGoConversions":2,"AwayReturnYards":31,"HomeReturnYards":41,"AwayPenalties":3,"HomePenalties":5,"AwayPenaltyYards":44,"HomePenaltyYards":55,"AwayFumbles":2,"HomeFumbles":1,"AwayFumblesLost":2,"HomeFumblesLost":1,"AwayTimesSacked":2,"HomeTimesSacked":1,"AwayTimesSackedYards":15,"HomeTimesSackedYards":5,"AwaySafeties":0,"HomeSafeties":0,"AwayPunts":4,"HomePunts":4,"AwayPuntYards":162,"HomePuntYards":173,"AwayPuntAverage":40.5,"HomePuntAverage":43.2,"AwayGiveaways":3,"HomeGiveaways":2,"AwayTakeaways":2,"HomeTakeaways":3,"AwayTurnoverDifferential":-1,"HomeTurnoverDifferential":1,"AwayKickoffs":3,"HomeKickoffs":6,"AwayKickoffsInEndZone":2,"HomeKickoffsInEndZone":5,"AwayKickoffTouchbacks":0,"HomeKickoffTouchbacks":3,"AwayPuntsHadBlocked":0,"HomePuntsHadBlocked":0,"AwayPuntNetAverage":39,"HomePuntNetAverage":43.2,"AwayExtraPointKickingAttempts":1,"HomeExtraPointKickingAttempts":2,"AwayExtraPointKickingConversions":1,"HomeExtraPointKickingConversions":2,"AwayExtraPointsHadBlocked":0,"HomeExtraPointsHadBlocked":0,"AwayExtraPointPassingAttempts":0,"HomeExtraPointPassingAttempts":0,"AwayExtraPointPassingConversions":0,"HomeExtraPointPassingConversions":0,"AwayExtraPointRushingAttempts":0,"HomeExtraPointRushingAttempts":1,"AwayExtraPointRushingConversions":0,"HomeExtraPointRushingConversions":1,"AwayFieldGoalAttempts":2,"HomeFieldGoalAttempts":3,"AwayFieldGoalsMade":1,"HomeFieldGoalsMade":2,"AwayFieldGoalsHadBlocked":1,"HomeFieldGoalsHadBlocked":1,"AwayPuntReturns":1,"HomePuntReturns":1,"AwayPuntReturnYards":0,"HomePuntReturnYards":6,"AwayKickReturns":3,"HomeKickReturns":3,"AwayKickReturnYards":67,"HomeKickReturnYards":65,"AwayInterceptionReturns":1,"HomeInterceptionReturns":1,"AwayInterceptionReturnYards":31,"HomeInterceptionReturnYards":35,"AwaySoloTackles":55,"AwayAssistedTackles":8,"AwayQuarterbackHits":5,"AwayTacklesForLoss":3,"AwaySacks":1,"AwaySackYards":5,"AwayPassesDefended":3,"AwayFumblesForced":1,"AwayFumblesRecovered":1,"AwayFumbleReturnYards":0,"AwayFumbleReturnTouchdowns":0,"AwayInterceptionReturnTouchdowns":0,"AwayBlockedKicks":1,"AwayPuntReturnTouchdowns":0,"AwayPuntReturnLong":0,"AwayKickReturnTouchdowns":0,"AwayKickReturnLong":38,"AwayBlockedKickReturnYards":0,"AwayBlockedKickReturnTouchdowns":0,"AwayFieldGoalReturnYards":0,"AwayFieldGoalReturnTouchdowns":0,"AwayPuntNetYards":156,"HomeSoloTackles":37,"HomeAssistedTackles":10,"HomeQuarterbackHits":7,"HomeTacklesForLoss":1,"HomeSacks":2,"HomeSackYards":15,"HomePassesDefended":9,"HomeFumblesForced":1,"HomeFumblesRecovered":2,"HomeFumbleReturnYards":-1,"HomeFumbleReturnTouchdowns":0,"HomeInterceptionReturnTouchdowns":0,"HomeBlockedKicks":1,"HomePuntReturnTouchdowns":0,"HomePuntReturnLong":6,"HomeKickReturnTouchdowns":0,"HomeKickReturnLong":27,"HomeBlockedKickReturnYards":0,"HomeBlockedKickReturnTouchdowns":0,"HomeFieldGoalReturnYards":0,"HomeFieldGoalReturnTouchdowns":0,"HomePuntNetYards":173,"IsGameOver":true,"GameID":62682,"StadiumID":null,"AwayTwoPointConversionReturns":null,"HomeTwoPointConversionReturns":null},"HomeDefense":[{"PlayerGameID":5922923,"PlayerID":3817,"ShortName":"L.Briggs","Name":"Lance Briggs","Team":"CHI","Number":55,"Position":"OLB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":8.0,"Updated":null,"AssistedTackles":2,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":2,"QuarterbackHits":0,"SackYards":0,"Sacks":0.0,"SoloTackles":5,"Tackles":7,"TacklesForLoss":null}],"HomeFantasyDefense":{"ScoringDetails":[],"GameKey":"201211206","SeasonType":1,"Season":2012,"Week":12,"Date":"2012-11-25T13:00:00","Team":"CHI","Opponent":"MIN","PointsAllowed":10,"TouchdownsScored":0,"SoloTackles":37,"AssistedTackles":10,"Sacks":2,"SackYards":15,"PassesDefended":9,"FumblesForced":1,"FumblesRecovered":2,"FumbleReturnYards":-1,"FumbleReturnTouchdowns":0,"Interceptions":1,"InterceptionReturnYards":35,"InterceptionReturnTouchdowns":0,"BlockedKicks":1,"Safeties":0,"PuntReturns":1,"PuntReturnYards":6,"PuntReturnTouchdowns":0,"PuntReturnLong":6,"KickReturns":3,"KickReturnYards":65,"KickReturnTouchdowns":0,"KickReturnLong":27,"BlockedKickReturnTouchdowns":0,"FieldGoalReturnTouchdowns":0,"FantasyPointsAllowed":41.66,"QuarterbackFantasyPointsAllowed":6.96,"RunningbackFantasyPointsAllowed":11.8,"WideReceiverFantasyPointsAllowed":6.7,"TightEndFantasyPointsAllowed":12.2,"KickerFantasyPointsAllowed":4.0,"BlockedKickReturnYards":0,"FieldGoalReturnYards":0,"QuarterbackHits":7,"TacklesForLoss":1,"DefensiveTouchdowns":0,"SpecialTeamsTouchdowns":0,"IsGameOver":true,"FantasyPoints":12.0,"Stadium":"Soldier Field","Temperature":41,"Humidity":26,"WindSpeed":5,"ThirdDownAttempts":16,"ThirdDownConversions":6,"FourthDownAttempts":3,"FourthDownConversions":1,"PointsAllowedByDefenseSpecialTeams":10,"FanDuelSalary":null,"DraftKingsSalary":null,"FantasyDataSalary":null,"VictivSalary":null},"HomeKickPuntReturns":[{"PlayerGameID":5922931,"PlayerID":3601,"ShortName":"E.Weems","Name":"Eric Weems","Team":"CHI","Number":14,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":0.9,"Updated":null,"KickReturnLong":27,"KickReturnTouchdowns":0,"KickReturnYards":65,"KickReturnYardsPerAttempt":21.7,"KickReturns":3,"PuntReturnLong":0,"PuntReturnTouchdowns":0,"PuntReturnYards":0,"PuntReturnYardsPerAttempt":0,"PuntReturns":0}],"HomeKicking":[{"PlayerGameID":5922906,"PlayerID":1410,"ShortName":"R.Gould","Name":"Robbie Gould","Team":"CHI","Number":9,"Position":"K","PositionCategory":"ST","FantasyPosition":"K","FantasyPoints":8.0,"Updated":null,"ExtraPointsAttempted":2,"ExtraPointsMade":2,"FieldGoalPercentage":66.7,"FieldGoalsAttempted":3,"FieldGoalsLongestMade":47,"FieldGoalsMade":2}],"HomePassing":[{"PlayerGameID":5922916,"PlayerID":8972,"ShortName":"J.Cutler","Name":"Jay Cutler","Team":"CHI","Number":6,"Position":"QB","PositionCategory":"OFF","FantasyPosition":"QB","FantasyPoints":10.42,"Updated":null,"PassingAttempts":31,"PassingCompletionPercentage":74.2,"PassingCompletions":23,"PassingInterceptions":1,"PassingLong":20,"PassingRating":86.49,"PassingSackYards":5,"PassingSacks":1,"PassingTouchdowns":1,"PassingYards":188,"PassingYardsPerAttempt":6.1,"PassingYardsPerCompletion":8.2,"TwoPointConversionPasses":0}],"HomePunting":[{"PlayerGameID":5922930,"PlayerID":5194,"ShortName":"A.Podlesh","Name":"Adam Podlesh","Team":"CHI","Number":8,"Position":"P","PositionCategory":"ST","FantasyPosition":"P","FantasyPoints":2.0,"Updated":null,"PuntAverage":43.2,"PuntInside20":2,"PuntTouchbacks":0,"PuntYards":173,"Punts":4}],"HomeReceiving":[{"PlayerGameID":5922908,"PlayerID":11667,"ShortName":"B.Marshall","Name":"Brandon Marshall","Team":"CHI","Number":15,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":9.2,"Updated":null,"FumblesLost":0,"ReceivingLong":17,"ReceivingTargets":17,"ReceivingTouchdowns":0,"ReceivingYards":92,"ReceivingYardsPerReception":7.7,"ReceivingYardsPerTarget":5.4,"ReceptionPercentage":70.6,"Receptions":12,"TwoPointConversionReceptions":0}],"HomeRushing":[{"PlayerGameID":5922937,"PlayerID":371,"ShortName":"M.Bush","Name":"Michael Bush","Team":"CHI","Number":29,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":17.9,"Updated":null,"FumblesLost":0,"RushingAttempts":21,"RushingLong":8,"RushingTouchdowns":2,"RushingYards":60,"RushingYardsPerAttempt":2.9,"TwoPointConversionRuns":0}],"Score":{"StadiumDetails":null,"GameKey":"201211206","SeasonType":1,"Season":2012,"Week":12,"Date":"2012-11-25T13:00:00","AwayTeam":"MIN","HomeTeam":"CHI","AwayScore":10,"HomeScore":28,"Channel":"FOX","PointSpread":-6.5,"OverUnder":38.5,"Quarter":"F","TimeRemaining":null,"Possession":null,"Down":null,"Distance":null,"YardLine":null,"YardLineTerritory":null,"RedZone":null,"AwayScoreQuarter1":3,"AwayScoreQuarter2":0,"AwayScoreQuarter3":7,"AwayScoreQuarter4":0,"AwayScoreOvertime":0,"HomeScoreQuarter1":10,"HomeScoreQuarter2":15,"HomeScoreQuarter3":3,"HomeScoreQuarter4":0,"HomeScoreOvertime":0,"HasStarted":true,"IsInProgress":false,"IsOver":true,"Has1stQuarterStarted":true,"Has2ndQuarterStarted":true,"Has3rdQuarterStarted":true,"Has4thQuarterStarted":true,"IsOvertime":false,"DownAndDistance":null,"QuarterDescription":"Final","StadiumID":null,"LastUpdated":null},"ScoringDetails":[{"GameKey":"201211206","SeasonType":1,"PlayerID":14463,"Team":"MIN","Season":2012,"Week":12,"ScoringType":"FieldGoalMade","Length":40,"ScoringDetailID":308627,"PlayerGameID":5922907}],"ScoringPlays":[{"GameKey":"201211206","SeasonType":1,"ScoringPlayID":89672,"Season":2012,"Week":12,"AwayTeam":"MIN","HomeTeam":"CHI","Date":"2012-11-25T13:00:00","Sequence":1,"Team":"CHI","Quarter":"3","TimeRemaining":"3:57","PlayDescription":"R.Gould 46 yd. Field Goal (12-51, 6:47)","AwayScore":10,"HomeScore":28}]}
|
@@ -0,0 +1 @@
|
|
1
|
+
[{"AwayDefense":[{"PlayerGameID":5915351,"PlayerID":13484,"ShortName":"K.Wright","Name":"KJ Wright","Team":"SEA","Number":50,"Position":"OLB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":10.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":8,"Tackles":10,"TacklesForLoss":null},{"PlayerGameID":5915349,"PlayerID":4345,"ShortName":"L.Hill","Name":"Leroy Hill","Team":"SEA","Number":56,"Position":"OLB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":8,"Updated":null,"AssistedTackles":2,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":7,"Tackles":9,"TacklesForLoss":null},{"PlayerGameID":5915350,"PlayerID":14534,"ShortName":"B.Wagner","Name":"Bobby Wagner","Team":"SEA","Number":54,"Position":"ILB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":7.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":7,"Tackles":8,"TacklesForLoss":null},{"PlayerGameID":5915352,"PlayerID":13479,"ShortName":"R.Sherman","Name":"Richard Sherman","Team":"SEA","Number":25,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":8,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":1,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":1,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":4,"Tackles":4,"TacklesForLoss":null},{"PlayerGameID":5915354,"PlayerID":11598,"ShortName":"K.Chancellor","Name":"Kam Chancellor","Team":"SEA","Number":31,"Position":"SS","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":4,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":4,"Tackles":4,"TacklesForLoss":null},{"PlayerGameID":5915355,"PlayerID":11612,"ShortName":"E.Thomas","Name":"Earl Thomas","Team":"SEA","Number":29,"Position":"FS","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":4,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":4,"Tackles":4,"TacklesForLoss":null},{"PlayerGameID":5915345,"PlayerID":678,"ShortName":"R.Bryant","Name":"Red Bryant","Team":"SEA","Number":79,"Position":"DE","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":3,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":2,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915348,"PlayerID":12116,"ShortName":"C.Clemons","Name":"Chris Clemons","Team":"SEA","Number":91,"Position":"DE","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":2,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":2,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915353,"PlayerID":13687,"ShortName":"B.Browner","Name":"Brandon Browner","Team":"SEA","Number":39,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":6,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":4,"Interceptions":1,"PassesDefended":1,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":2,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915371,"PlayerID":12460,"ShortName":"C.McDonald","Name":"Clinton McDonald","Team":"SEA","Number":69,"Position":"DT","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":2,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":2,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915347,"PlayerID":292,"ShortName":"B.Mebane","Name":"Brandon Mebane","Team":"SEA","Number":92,"Position":"DT","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":1,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915360,"PlayerID":8116,"ShortName":"M.Trufant","Name":"Marcus Trufant","Team":"SEA","Number":23,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":1,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915363,"PlayerID":11589,"ShortName":"C.Maragos","Name":"Chris Maragos","Team":"SEA","Number":42,"Position":"FS","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":0,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":0,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915366,"PlayerID":13480,"ShortName":"M.Smith","Name":"Malcolm Smith","Team":"SEA","Number":53,"Position":"LB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":0,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":0,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915367,"PlayerID":5640,"ShortName":"H.Farwell","Name":"Heath Farwell","Team":"SEA","Number":55,"Position":"LB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":0,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":0,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915376,"PlayerID":322,"ShortName":"J.Jones","Name":"Jason Jones","Team":"SEA","Number":90,"Position":"DE","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":5.2,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":2,"Sacks":1,"SoloTackles":1,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915377,"PlayerID":14527,"ShortName":"G.Scruggs","Name":"Greg Scruggs","Team":"SEA","Number":98,"Position":"DE","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":5,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":1,"SoloTackles":1,"Tackles":1,"TacklesForLoss":null}],"AwayFantasyDefense":{"ScoringDetails":[],"GameKey":"201210731","SeasonType":1,"Season":2012,"Week":7,"Date":"2012-10-18T20:20:00","Team":"SEA","Opponent":"SF","PointsAllowed":13,"TouchdownsScored":0,"SoloTackles":46,"AssistedTackles":4,"Sacks":2,"SackYards":2,"PassesDefended":2,"FumblesForced":1,"FumblesRecovered":0,"FumbleReturnYards":0,"FumbleReturnTouchdowns":0,"Interceptions":1,"InterceptionReturnYards":4,"InterceptionReturnTouchdowns":0,"BlockedKicks":0,"Safeties":0,"PuntReturns":2,"PuntReturnYards":5,"PuntReturnTouchdowns":0,"PuntReturnLong":5,"KickReturns":0,"KickReturnYards":0,"KickReturnTouchdowns":0,"KickReturnLong":0,"BlockedKickReturnTouchdowns":0,"FieldGoalReturnTouchdowns":0,"FantasyPointsAllowed":52.1,"QuarterbackFantasyPointsAllowed":8.6,"RunningbackFantasyPointsAllowed":22.7,"WideReceiverFantasyPointsAllowed":6.6,"TightEndFantasyPointsAllowed":7.2,"KickerFantasyPointsAllowed":7,"BlockedKickReturnYards":0,"FieldGoalReturnYards":0,"QuarterbackHits":3,"TacklesForLoss":4,"DefensiveTouchdowns":0,"SpecialTeamsTouchdowns":0,"IsGameOver":true,"FantasyPoints":8,"Stadium":"Candlestick Park","Temperature":80,"Humidity":30,"WindSpeed":15,"ThirdDownAttempts":11,"ThirdDownConversions":3,"FourthDownAttempts":0,"FourthDownConversions":0,"PointsAllowedByDefenseSpecialTeams":13,"FanDuelSalary":null,"DraftKingsSalary":null,"FantasyDataSalary":null,"VictivSalary":null},"AwayKickPuntReturns":[{"PlayerGameID":5915362,"PlayerID":12136,"ShortName":"L.Washington","Name":"Leon Washington","Team":"SEA","Number":33,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":0.4,"Updated":null,"KickReturnLong":0,"KickReturnTouchdowns":0,"KickReturnYards":0,"KickReturnYardsPerAttempt":0,"KickReturns":0,"PuntReturnLong":5,"PuntReturnTouchdowns":0,"PuntReturnYards":5,"PuntReturnYardsPerAttempt":2.5,"PuntReturns":2}],"AwayKicking":[{"PlayerGameID":5915281,"PlayerID":12594,"ShortName":"S.Hauschka","Name":"Steven Hauschka","Team":"SEA","Number":4,"Position":"K","PositionCategory":"ST","FantasyPosition":"K","FantasyPoints":6,"Updated":null,"ExtraPointsAttempted":0,"ExtraPointsMade":0,"FieldGoalPercentage":66.7,"FieldGoalsAttempted":3,"FieldGoalsLongestMade":52,"FieldGoalsMade":2}],"AwayPassing":[{"PlayerGameID":5915342,"PlayerID":14536,"ShortName":"R.Wilson","Name":"Russell Wilson","Team":"SEA","Number":3,"Position":"QB","PositionCategory":"OFF","FantasyPosition":"QB","FantasyPoints":3.88,"Updated":null,"PassingAttempts":23,"PassingCompletionPercentage":39.1,"PassingCompletions":9,"PassingInterceptions":1,"PassingLong":36,"PassingRating":38.68,"PassingSackYards":7,"PassingSacks":2,"PassingTouchdowns":0,"PassingYards":122,"PassingYardsPerAttempt":5.3,"PassingYardsPerCompletion":13.6,"TwoPointConversionPasses":0}],"AwayPunting":[{"PlayerGameID":5915356,"PlayerID":3764,"ShortName":"J.Ryan","Name":"Jon Ryan","Team":"SEA","Number":9,"Position":"P","PositionCategory":"ST","FantasyPosition":"P","FantasyPoints":0,"Updated":null,"PuntAverage":48.5,"PuntInside20":1,"PuntTouchbacks":0,"PuntYards":194,"Punts":4}],"AwayReceiving":[{"PlayerGameID":5915374,"PlayerID":6138,"ShortName":"B.Obomanu","Name":"Ben Obomanu","Team":"SEA","Number":87,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":5,"Updated":null,"FumblesLost":0,"ReceivingLong":36,"ReceivingTargets":4,"ReceivingTouchdowns":0,"ReceivingYards":50,"ReceivingYardsPerReception":16.7,"ReceivingYardsPerTarget":12.5,"ReceptionPercentage":75,"Receptions":3,"TwoPointConversionReceptions":0},{"PlayerGameID":5915334,"PlayerID":459,"ShortName":"S.Rice","Name":"Sidney Rice","Team":"SEA","Number":18,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":3.2,"Updated":null,"FumblesLost":0,"ReceivingLong":27,"ReceivingTargets":4,"ReceivingTouchdowns":0,"ReceivingYards":32,"ReceivingYardsPerReception":16,"ReceivingYardsPerTarget":8,"ReceptionPercentage":50,"Receptions":2,"TwoPointConversionReceptions":0},{"PlayerGameID":5915375,"PlayerID":13460,"ShortName":"D.Baldwin","Name":"Doug Baldwin","Team":"SEA","Number":89,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":1.5,"Updated":null,"FumblesLost":0,"ReceivingLong":8,"ReceivingTargets":2,"ReceivingTouchdowns":0,"ReceivingYards":15,"ReceivingYardsPerReception":7.5,"ReceivingYardsPerTarget":7.5,"ReceptionPercentage":100,"Receptions":2,"TwoPointConversionReceptions":0},{"PlayerGameID":5915344,"PlayerID":12386,"ShortName":"M.Lynch","Name":"Marshawn Lynch","Team":"SEA","Number":24,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":11.6,"Updated":null,"FumblesLost":0,"ReceivingLong":13,"ReceivingTargets":2,"ReceivingTouchdowns":0,"ReceivingYards":13,"ReceivingYardsPerReception":13,"ReceivingYardsPerTarget":6.5,"ReceptionPercentage":50,"Receptions":1,"TwoPointConversionReceptions":0},{"PlayerGameID":5915343,"PlayerID":12273,"ShortName":"M.Robinson","Name":"Michael Robinson","Team":"SEA","Number":26,"Position":"FB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":1.4,"Updated":null,"FumblesLost":0,"ReceivingLong":12,"ReceivingTargets":1,"ReceivingTouchdowns":0,"ReceivingYards":12,"ReceivingYardsPerReception":12,"ReceivingYardsPerTarget":12,"ReceptionPercentage":100,"Receptions":1,"TwoPointConversionReceptions":0},{"PlayerGameID":5915340,"PlayerID":4484,"ShortName":"Z.Miller","Name":"Zach Miller","Team":"SEA","Number":86,"Position":"TE","PositionCategory":"OFF","FantasyPosition":"TE","FantasyPoints":0,"Updated":null,"FumblesLost":0,"ReceivingLong":0,"ReceivingTargets":2,"ReceivingTouchdowns":0,"ReceivingYards":0,"ReceivingYardsPerReception":0,"ReceivingYardsPerTarget":0,"ReceptionPercentage":0,"Receptions":0,"TwoPointConversionReceptions":0},{"PlayerGameID":5915341,"PlayerID":11611,"ShortName":"G.Tate","Name":"Golden Tate","Team":"SEA","Number":81,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":0,"Updated":null,"FumblesLost":0,"ReceivingLong":0,"ReceivingTargets":3,"ReceivingTouchdowns":0,"ReceivingYards":0,"ReceivingYardsPerReception":0,"ReceivingYardsPerTarget":0,"ReceptionPercentage":0,"Receptions":0,"TwoPointConversionReceptions":0},{"PlayerGameID":5915357,"PlayerID":3816,"ShortName":"B.Edwards","Name":"Braylon Edwards","Team":"SEA","Number":17,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":0,"Updated":null,"FumblesLost":0,"ReceivingLong":0,"ReceivingTargets":2,"ReceivingTouchdowns":0,"ReceivingYards":0,"ReceivingYardsPerReception":0,"ReceivingYardsPerTarget":0,"ReceptionPercentage":0,"Receptions":0,"TwoPointConversionReceptions":0},{"PlayerGameID":5915359,"PlayerID":14533,"ShortName":"R.Turbin","Name":"Robert Turbin","Team":"SEA","Number":22,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":1.7,"Updated":null,"FumblesLost":0,"ReceivingLong":0,"ReceivingTargets":1,"ReceivingTouchdowns":0,"ReceivingYards":0,"ReceivingYardsPerReception":0,"ReceivingYardsPerTarget":0,"ReceptionPercentage":0,"Receptions":0,"TwoPointConversionReceptions":0},{"PlayerGameID":5915372,"PlayerID":10290,"ShortName":"E.Moore","Name":"Evan Moore","Team":"SEA","Number":82,"Position":"TE","PositionCategory":"OFF","FantasyPosition":"TE","FantasyPoints":0,"Updated":null,"FumblesLost":0,"ReceivingLong":0,"ReceivingTargets":1,"ReceivingTouchdowns":0,"ReceivingYards":0,"ReceivingYardsPerReception":0,"ReceivingYardsPerTarget":0,"ReceptionPercentage":0,"Receptions":0,"TwoPointConversionReceptions":0},{"PlayerGameID":5915373,"PlayerID":11603,"ShortName":"A.McCoy","Name":"Anthony McCoy","Team":"SEA","Number":85,"Position":"TE","PositionCategory":"OFF","FantasyPosition":"TE","FantasyPoints":0,"Updated":null,"FumblesLost":0,"ReceivingLong":0,"ReceivingTargets":1,"ReceivingTouchdowns":0,"ReceivingYards":0,"ReceivingYardsPerReception":0,"ReceivingYardsPerTarget":0,"ReceptionPercentage":0,"Receptions":0,"TwoPointConversionReceptions":0}],"AwayRushing":[{"PlayerGameID":5915344,"PlayerID":12386,"ShortName":"M.Lynch","Name":"Marshawn Lynch","Team":"SEA","Number":24,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":11.6,"Updated":null,"FumblesLost":0,"RushingAttempts":19,"RushingLong":15,"RushingTouchdowns":0,"RushingYards":103,"RushingYardsPerAttempt":5.4,"TwoPointConversionRuns":0},{"PlayerGameID":5915359,"PlayerID":14533,"ShortName":"R.Turbin","Name":"Robert Turbin","Team":"SEA","Number":22,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":1.7,"Updated":null,"FumblesLost":0,"RushingAttempts":4,"RushingLong":15,"RushingTouchdowns":0,"RushingYards":17,"RushingYardsPerAttempt":4.2,"TwoPointConversionRuns":0},{"PlayerGameID":5915342,"PlayerID":14536,"ShortName":"R.Wilson","Name":"Russell Wilson","Team":"SEA","Number":3,"Position":"QB","PositionCategory":"OFF","FantasyPosition":"QB","FantasyPoints":3.88,"Updated":null,"FumblesLost":0,"RushingAttempts":3,"RushingLong":9,"RushingTouchdowns":0,"RushingYards":10,"RushingYardsPerAttempt":3.3,"TwoPointConversionRuns":0},{"PlayerGameID":5915362,"PlayerID":12136,"ShortName":"L.Washington","Name":"Leon Washington","Team":"SEA","Number":33,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":0.4,"Updated":null,"FumblesLost":0,"RushingAttempts":2,"RushingLong":2,"RushingTouchdowns":0,"RushingYards":4,"RushingYardsPerAttempt":2,"TwoPointConversionRuns":0},{"PlayerGameID":5915343,"PlayerID":12273,"ShortName":"M.Robinson","Name":"Michael Robinson","Team":"SEA","Number":26,"Position":"FB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":1.4,"Updated":null,"FumblesLost":0,"RushingAttempts":1,"RushingLong":2,"RushingTouchdowns":0,"RushingYards":2,"RushingYardsPerAttempt":2,"TwoPointConversionRuns":0}],"Game":{"StadiumDetails":null,"GameKey":"201210731","Date":"2012-10-18T20:20:00","SeasonType":1,"Season":2012,"Week":7,"Stadium":"Candlestick Park","PlayingSurface":"Grass","Temperature":80,"Humidity":30,"WindSpeed":15,"AwayTeam":"SEA","HomeTeam":"SF","AwayScore":6,"HomeScore":13,"TotalScore":19,"OverUnder":37.5,"PointSpread":-9,"AwayScoreQuarter1":3,"AwayScoreQuarter2":3,"AwayScoreQuarter3":0,"AwayScoreQuarter4":0,"AwayScoreOvertime":0,"HomeScoreQuarter1":3,"HomeScoreQuarter2":0,"HomeScoreQuarter3":7,"HomeScoreQuarter4":3,"HomeScoreOvertime":0,"AwayTimeOfPossession":"27:59","HomeTimeOfPossession":"32:1","AwayFirstDowns":13,"HomeFirstDowns":18,"AwayFirstDownsByRushing":6,"HomeFirstDownsByRushing":8,"AwayFirstDownsByPassing":5,"HomeFirstDownsByPassing":9,"AwayFirstDownsByPenalty":2,"HomeFirstDownsByPenalty":1,"AwayOffensivePlays":54,"HomeOffensivePlays":57,"AwayOffensiveYards":251,"HomeOffensiveYards":313,"AwayOffensiveYardsPerPlay":4.6,"HomeOffensiveYardsPerPlay":5.5,"AwayTouchdowns":0,"HomeTouchdowns":1,"AwayRushingAttempts":29,"HomeRushingAttempts":32,"AwayRushingYards":136,"HomeRushingYards":175,"AwayRushingYardsPerAttempt":4.7,"HomeRushingYardsPerAttempt":5.5,"AwayRushingTouchdowns":0,"HomeRushingTouchdowns":0,"AwayPassingAttempts":23,"HomePassingAttempts":23,"AwayPassingCompletions":9,"HomePassingCompletions":14,"AwayPassingYards":115,"HomePassingYards":138,"AwayPassingTouchdowns":0,"HomePassingTouchdowns":1,"AwayPassingInterceptions":1,"HomePassingInterceptions":1,"AwayPassingYardsPerAttempt":5,"HomePassingYardsPerAttempt":6,"AwayPassingYardsPerCompletion":12.8,"HomePassingYardsPerCompletion":9.9,"AwayCompletionPercentage":39.1,"HomeCompletionPercentage":60.9,"AwayPasserRating":37.41,"HomePasserRating":74.18,"AwayThirdDownAttempts":13,"HomeThirdDownAttempts":11,"AwayThirdDownConversions":4,"HomeThirdDownConversions":3,"AwayThirdDownPercentage":30.8,"HomeThirdDownPercentage":27.3,"AwayFourthDownAttempts":1,"HomeFourthDownAttempts":0,"AwayFourthDownConversions":0,"HomeFourthDownConversions":0,"AwayFourthDownPercentage":0,"HomeFourthDownPercentage":0,"AwayRedZoneAttempts":1,"HomeRedZoneAttempts":4,"AwayRedZoneConversions":0,"HomeRedZoneConversions":1,"AwayGoalToGoAttempts":0,"HomeGoalToGoAttempts":1,"AwayGoalToGoConversions":0,"HomeGoalToGoConversions":0,"AwayReturnYards":9,"HomeReturnYards":71,"AwayPenalties":3,"HomePenalties":5,"AwayPenaltyYards":20,"HomePenaltyYards":40,"AwayFumbles":1,"HomeFumbles":1,"AwayFumblesLost":0,"HomeFumblesLost":0,"AwayTimesSacked":2,"HomeTimesSacked":2,"AwayTimesSackedYards":7,"HomeTimesSackedYards":2,"AwaySafeties":0,"HomeSafeties":0,"AwayPunts":4,"HomePunts":5,"AwayPuntYards":194,"HomePuntYards":228,"AwayPuntAverage":48.5,"HomePuntAverage":45.6,"AwayGiveaways":1,"HomeGiveaways":1,"AwayTakeaways":1,"HomeTakeaways":1,"AwayTurnoverDifferential":0,"HomeTurnoverDifferential":0,"AwayKickoffs":3,"HomeKickoffs":4,"AwayKickoffsInEndZone":2,"HomeKickoffsInEndZone":4,"AwayKickoffTouchbacks":1,"HomeKickoffTouchbacks":4,"AwayPuntsHadBlocked":0,"HomePuntsHadBlocked":0,"AwayPuntNetAverage":31,"HomePuntNetAverage":44.6,"AwayExtraPointKickingAttempts":0,"HomeExtraPointKickingAttempts":1,"AwayExtraPointKickingConversions":0,"HomeExtraPointKickingConversions":1,"AwayExtraPointsHadBlocked":0,"HomeExtraPointsHadBlocked":0,"AwayExtraPointPassingAttempts":0,"HomeExtraPointPassingAttempts":0,"AwayExtraPointPassingConversions":0,"HomeExtraPointPassingConversions":0,"AwayExtraPointRushingAttempts":0,"HomeExtraPointRushingAttempts":0,"AwayExtraPointRushingConversions":0,"HomeExtraPointRushingConversions":0,"AwayFieldGoalAttempts":3,"HomeFieldGoalAttempts":2,"AwayFieldGoalsMade":2,"HomeFieldGoalsMade":2,"AwayFieldGoalsHadBlocked":0,"HomeFieldGoalsHadBlocked":0,"AwayPuntReturns":2,"HomePuntReturns":3,"AwayPuntReturnYards":5,"HomePuntReturnYards":70,"AwayKickReturns":0,"HomeKickReturns":2,"AwayKickReturnYards":0,"HomeKickReturnYards":41,"AwayInterceptionReturns":1,"HomeInterceptionReturns":1,"AwayInterceptionReturnYards":4,"HomeInterceptionReturnYards":1,"AwaySoloTackles":46,"AwayAssistedTackles":4,"AwayQuarterbackHits":3,"AwayTacklesForLoss":4,"AwaySacks":2,"AwaySackYards":2,"AwayPassesDefended":2,"AwayFumblesForced":1,"AwayFumblesRecovered":0,"AwayFumbleReturnYards":0,"AwayFumbleReturnTouchdowns":0,"AwayInterceptionReturnTouchdowns":0,"AwayBlockedKicks":0,"AwayPuntReturnTouchdowns":0,"AwayPuntReturnLong":5,"AwayKickReturnTouchdowns":0,"AwayKickReturnLong":0,"AwayBlockedKickReturnYards":0,"AwayBlockedKickReturnTouchdowns":0,"AwayFieldGoalReturnYards":0,"AwayFieldGoalReturnTouchdowns":0,"AwayPuntNetYards":124,"HomeSoloTackles":39,"HomeAssistedTackles":10,"HomeQuarterbackHits":3,"HomeTacklesForLoss":3,"HomeSacks":2,"HomeSackYards":7,"HomePassesDefended":6,"HomeFumblesForced":0,"HomeFumblesRecovered":0,"HomeFumbleReturnYards":0,"HomeFumbleReturnTouchdowns":0,"HomeInterceptionReturnTouchdowns":0,"HomeBlockedKicks":0,"HomePuntReturnTouchdowns":0,"HomePuntReturnLong":38,"HomeKickReturnTouchdowns":0,"HomeKickReturnLong":26,"HomeBlockedKickReturnYards":0,"HomeBlockedKickReturnTouchdowns":0,"HomeFieldGoalReturnYards":0,"HomeFieldGoalReturnTouchdowns":0,"HomePuntNetYards":223,"IsGameOver":true,"GameID":62609,"StadiumID":null,"AwayTwoPointConversionReturns":null,"HomeTwoPointConversionReturns":null},"HomeDefense":[{"PlayerGameID":5915295,"PlayerID":7534,"ShortName":"J.Smith","Name":"Justin Smith","Team":"SF","Number":94,"Position":"DT","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":9,"Updated":null,"AssistedTackles":2,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":7,"Tackles":9,"TacklesForLoss":null},{"PlayerGameID":5915298,"PlayerID":511,"ShortName":"P.Willis","Name":"Patrick Willis","Team":"SF","Number":52,"Position":"ILB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":9.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":2,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":7,"Tackles":8,"TacklesForLoss":null},{"PlayerGameID":5915297,"PlayerID":11578,"ShortName":"N.Bowman","Name":"NaVorro Bowman","Team":"SF","Number":53,"Position":"ILB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":11,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":1,"SoloTackles":7,"Tackles":7,"TacklesForLoss":null},{"PlayerGameID":5915299,"PlayerID":13453,"ShortName":"Ald.Smith","Name":"Aldon Smith","Team":"SF","Number":99,"Position":"OLB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":8.2,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":7,"Sacks":1,"SoloTackles":3,"Tackles":4,"TacklesForLoss":null},{"PlayerGameID":5915300,"PlayerID":206,"ShortName":"C.Rogers","Name":"Carlos Rogers","Team":"SF","Number":22,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":4.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":3,"Tackles":4,"TacklesForLoss":null},{"PlayerGameID":5915301,"PlayerID":7350,"ShortName":"T.Brown","Name":"Tarell Brown","Team":"SF","Number":25,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":3.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":3,"Tackles":4,"TacklesForLoss":null},{"PlayerGameID":5915302,"PlayerID":5442,"ShortName":"D.Whitner","Name":"Donte Whitner","Team":"SF","Number":31,"Position":"SS","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":2.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":2,"Tackles":3,"TacklesForLoss":null},{"PlayerGameID":5915303,"PlayerID":5940,"ShortName":"D.Goldson","Name":"Dashon Goldson","Team":"SF","Number":38,"Position":"FS","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":7.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":1,"Interceptions":1,"PassesDefended":2,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":2,"Tackles":3,"TacklesForLoss":null},{"PlayerGameID":5915293,"PlayerID":4060,"ShortName":"R.McDonald","Name":"Ray McDonald","Team":"SF","Number":91,"Position":"DT","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":1.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915296,"PlayerID":1248,"ShortName":"A.Brooks","Name":"Ahmad Brooks","Team":"SF","Number":55,"Position":"OLB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":1.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915313,"PlayerID":13432,"ShortName":"C.Culliver","Name":"Chris Culliver","Team":"SF","Number":29,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":4,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":2,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":2,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915294,"PlayerID":5572,"ShortName":"I.Sopoaga","Name":"Isaac Sopoaga","Team":"SF","Number":90,"Position":"NT","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":1,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915310,"PlayerID":11579,"ShortName":"T.Brock","Name":"Tramaine Brock","Team":"SF","Number":26,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":0,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":0,"Tackles":1,"TacklesForLoss":null}],"HomeFantasyDefense":{"ScoringDetails":[],"GameKey":"201210731","SeasonType":1,"Season":2012,"Week":7,"Date":"2012-10-18T20:20:00","Team":"SF","Opponent":"SEA","PointsAllowed":6,"TouchdownsScored":0,"SoloTackles":39,"AssistedTackles":10,"Sacks":2,"SackYards":7,"PassesDefended":6,"FumblesForced":0,"FumblesRecovered":0,"FumbleReturnYards":0,"FumbleReturnTouchdowns":0,"Interceptions":1,"InterceptionReturnYards":1,"InterceptionReturnTouchdowns":0,"BlockedKicks":0,"Safeties":0,"PuntReturns":3,"PuntReturnYards":70,"PuntReturnTouchdowns":0,"PuntReturnLong":38,"KickReturns":2,"KickReturnYards":41,"KickReturnTouchdowns":0,"KickReturnLong":26,"BlockedKickReturnTouchdowns":0,"FieldGoalReturnTouchdowns":0,"FantasyPointsAllowed":34.68,"QuarterbackFantasyPointsAllowed":3.88,"RunningbackFantasyPointsAllowed":15.1,"WideReceiverFantasyPointsAllowed":9.7,"TightEndFantasyPointsAllowed":0,"KickerFantasyPointsAllowed":6,"BlockedKickReturnYards":0,"FieldGoalReturnYards":0,"QuarterbackHits":3,"TacklesForLoss":3,"DefensiveTouchdowns":0,"SpecialTeamsTouchdowns":0,"IsGameOver":true,"FantasyPoints":11,"Stadium":"Candlestick Park","Temperature":80,"Humidity":30,"WindSpeed":15,"ThirdDownAttempts":13,"ThirdDownConversions":4,"FourthDownAttempts":1,"FourthDownConversions":0,"PointsAllowedByDefenseSpecialTeams":6,"FanDuelSalary":null,"DraftKingsSalary":null,"FantasyDataSalary":null,"VictivSalary":null},"HomeKickPuntReturns":[{"PlayerGameID":5915307,"PlayerID":12109,"ShortName":"T.Ginn","Name":"Ted Ginn","Team":"SF","Number":19,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":0,"Updated":null,"KickReturnLong":26,"KickReturnTouchdowns":0,"KickReturnYards":41,"KickReturnYardsPerAttempt":20.5,"KickReturns":2,"PuntReturnLong":38,"PuntReturnTouchdowns":0,"PuntReturnYards":70,"PuntReturnYardsPerAttempt":23.3,"PuntReturns":3}],"HomeKicking":[{"PlayerGameID":5915280,"PlayerID":5352,"ShortName":"D.Akers","Name":"David Akers","Team":"SF","Number":2,"Position":"K","PositionCategory":"ST","FantasyPosition":"K","FantasyPoints":7,"Updated":null,"ExtraPointsAttempted":1,"ExtraPointsMade":1,"FieldGoalPercentage":100,"FieldGoalsAttempted":2,"FieldGoalsLongestMade":38,"FieldGoalsMade":2}],"HomePassing":[{"PlayerGameID":5915290,"PlayerID":6739,"ShortName":"A.Smith","Name":"Alex Smith","Team":"SF","Number":11,"Position":"QB","PositionCategory":"OFF","FantasyPosition":"QB","FantasyPoints":8.7,"Updated":null,"PassingAttempts":23,"PassingCompletionPercentage":60.9,"PassingCompletions":14,"PassingInterceptions":1,"PassingLong":18,"PassingRating":74.55,"PassingSackYards":2,"PassingSacks":2,"PassingTouchdowns":1,"PassingYards":140,"PassingYardsPerAttempt":6.1,"PassingYardsPerCompletion":10,"TwoPointConversionPasses":0}],"HomePunting":[{"PlayerGameID":5915304,"PlayerID":3100,"ShortName":"A.Lee","Name":"Andy Lee","Team":"SF","Number":4,"Position":"P","PositionCategory":"ST","FantasyPosition":"P","FantasyPoints":0,"Updated":null,"PuntAverage":45.6,"PuntInside20":4,"PuntTouchbacks":0,"PuntYards":228,"Punts":5}],"HomeReceiving":[{"PlayerGameID":5915291,"PlayerID":5820,"ShortName":"F.Gore","Name":"Frank Gore","Team":"SF","Number":21,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":18.2,"Updated":null,"FumblesLost":0,"ReceivingLong":15,"ReceivingTargets":6,"ReceivingTouchdowns":0,"ReceivingYards":51,"ReceivingYardsPerReception":10.2,"ReceivingYardsPerTarget":8.5,"ReceptionPercentage":83.3,"Receptions":5,"TwoPointConversionReceptions":0},{"PlayerGameID":5915282,"PlayerID":9331,"ShortName":"M.Crabtree","Name":"Michael Crabtree","Team":"SF","Number":15,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":3.1,"Updated":null,"FumblesLost":0,"ReceivingLong":16,"ReceivingTargets":6,"ReceivingTouchdowns":0,"ReceivingYards":31,"ReceivingYardsPerReception":7.8,"ReceivingYardsPerTarget":5.2,"ReceptionPercentage":66.7,"Receptions":4,"TwoPointConversionReceptions":0},{"PlayerGameID":5915306,"PlayerID":11594,"ShortName":"K.Williams","Name":"Kyle Williams","Team":"SF","Number":10,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":2.1,"Updated":null,"FumblesLost":0,"ReceivingLong":18,"ReceivingTargets":4,"ReceivingTouchdowns":0,"ReceivingYards":18,"ReceivingYardsPerReception":18,"ReceivingYardsPerTarget":4.5,"ReceptionPercentage":25,"Receptions":1,"TwoPointConversionReceptions":0},{"PlayerGameID":5915314,"PlayerID":13440,"ShortName":"K.Hunter","Name":"Kendall Hunter","Team":"SF","Number":32,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":4.5,"Updated":null,"FumblesLost":0,"ReceivingLong":11,"ReceivingTargets":2,"ReceivingTouchdowns":0,"ReceivingYards":14,"ReceivingYardsPerReception":7,"ReceivingYardsPerTarget":7,"ReceptionPercentage":100,"Receptions":2,"TwoPointConversionReceptions":0},{"PlayerGameID":5915323,"PlayerID":4154,"ShortName":"R.Moss","Name":"Randy Moss","Team":"SF","Number":84,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":1.4,"Updated":null,"FumblesLost":0,"ReceivingLong":14,"ReceivingTargets":4,"ReceivingTouchdowns":0,"ReceivingYards":14,"ReceivingYardsPerReception":14,"ReceivingYardsPerTarget":3.5,"ReceptionPercentage":25,"Receptions":1,"TwoPointConversionReceptions":0},{"PlayerGameID":5915289,"PlayerID":7175,"ShortName":"D.Walker","Name":"Delanie Walker","Team":"SF","Number":46,"Position":"TE","PositionCategory":"OFF","FantasyPosition":"TE","FantasyPoints":7.2,"Updated":null,"FumblesLost":0,"ReceivingLong":12,"ReceivingTargets":1,"ReceivingTouchdowns":1,"ReceivingYards":12,"ReceivingYardsPerReception":12,"ReceivingYardsPerTarget":12,"ReceptionPercentage":100,"Receptions":1,"TwoPointConversionReceptions":0}],"HomeRushing":[{"PlayerGameID":5915291,"PlayerID":5820,"ShortName":"F.Gore","Name":"Frank Gore","Team":"SF","Number":21,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":18.2,"Updated":null,"FumblesLost":0,"RushingAttempts":16,"RushingLong":37,"RushingTouchdowns":0,"RushingYards":131,"RushingYardsPerAttempt":8.2,"TwoPointConversionRuns":0},{"PlayerGameID":5915314,"PlayerID":13440,"ShortName":"K.Hunter","Name":"Kendall Hunter","Team":"SF","Number":32,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":4.5,"Updated":null,"FumblesLost":0,"RushingAttempts":9,"RushingLong":10,"RushingTouchdowns":0,"RushingYards":31,"RushingYardsPerAttempt":3.4,"TwoPointConversionRuns":0},{"PlayerGameID":5915290,"PlayerID":6739,"ShortName":"A.Smith","Name":"Alex Smith","Team":"SF","Number":11,"Position":"QB","PositionCategory":"OFF","FantasyPosition":"QB","FantasyPoints":8.7,"Updated":null,"FumblesLost":0,"RushingAttempts":5,"RushingLong":8,"RushingTouchdowns":0,"RushingYards":11,"RushingYardsPerAttempt":2.2,"TwoPointConversionRuns":0},{"PlayerGameID":5915306,"PlayerID":11594,"ShortName":"K.Williams","Name":"Kyle Williams","Team":"SF","Number":10,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":2.1,"Updated":null,"FumblesLost":0,"RushingAttempts":1,"RushingLong":3,"RushingTouchdowns":0,"RushingYards":3,"RushingYardsPerAttempt":3,"TwoPointConversionRuns":0},{"PlayerGameID":5915305,"PlayerID":13443,"ShortName":"C.Kaepernick","Name":"Colin Kaepernick","Team":"SF","Number":7,"Position":"QB","PositionCategory":"OFF","FantasyPosition":"QB","FantasyPoints":-0.1,"Updated":null,"FumblesLost":0,"RushingAttempts":1,"RushingLong":-1,"RushingTouchdowns":0,"RushingYards":-1,"RushingYardsPerAttempt":-1,"TwoPointConversionRuns":0}],"Score":{"StadiumDetails":null,"GameKey":"201210731","SeasonType":1,"Season":2012,"Week":7,"Date":"2012-10-18T20:20:00","AwayTeam":"SEA","HomeTeam":"SF","AwayScore":6,"HomeScore":13,"Channel":"NFL","PointSpread":-9,"OverUnder":37.5,"Quarter":"F","TimeRemaining":null,"Possession":null,"Down":null,"Distance":null,"YardLine":null,"YardLineTerritory":null,"RedZone":null,"AwayScoreQuarter1":3,"AwayScoreQuarter2":3,"AwayScoreQuarter3":0,"AwayScoreQuarter4":0,"AwayScoreOvertime":0,"HomeScoreQuarter1":3,"HomeScoreQuarter2":0,"HomeScoreQuarter3":7,"HomeScoreQuarter4":3,"HomeScoreOvertime":0,"HasStarted":true,"IsInProgress":false,"IsOver":true,"Has1stQuarterStarted":true,"Has2ndQuarterStarted":true,"Has3rdQuarterStarted":true,"Has4thQuarterStarted":true,"IsOvertime":false,"DownAndDistance":null,"QuarterDescription":"Final","StadiumID":null,"LastUpdated":null},"ScoringDetails":[{"GameKey":"201210731","SeasonType":1,"PlayerID":12594,"Team":"SEA","Season":2012,"Week":7,"ScoringType":"FieldGoalMade","Length":52,"ScoringDetailID":307734,"PlayerGameID":5915281},{"GameKey":"201210731","SeasonType":1,"PlayerID":12594,"Team":"SEA","Season":2012,"Week":7,"ScoringType":"FieldGoalMade","Length":35,"ScoringDetailID":307735,"PlayerGameID":5915281},{"GameKey":"201210731","SeasonType":1,"PlayerID":12594,"Team":"SEA","Season":2012,"Week":7,"ScoringType":"FieldGoalMissed","Length":51,"ScoringDetailID":307736,"PlayerGameID":5915281},{"GameKey":"201210731","SeasonType":1,"PlayerID":5352,"Team":"SF","Season":2012,"Week":7,"ScoringType":"FieldGoalMade","Length":38,"ScoringDetailID":307737,"PlayerGameID":5915280},{"GameKey":"201210731","SeasonType":1,"PlayerID":5352,"Team":"SF","Season":2012,"Week":7,"ScoringType":"FieldGoalMade","Length":28,"ScoringDetailID":307738,"PlayerGameID":5915280},{"GameKey":"201210731","SeasonType":1,"PlayerID":7175,"Team":"SF","Season":2012,"Week":7,"ScoringType":"ReceivingTouchdown","Length":12,"ScoringDetailID":307739,"PlayerGameID":5915289},{"GameKey":"201210731","SeasonType":1,"PlayerID":6739,"Team":"SF","Season":2012,"Week":7,"ScoringType":"PassingTouchdown","Length":12,"ScoringDetailID":307740,"PlayerGameID":5915290}],"ScoringPlays":[{"GameKey":"201210731","SeasonType":1,"ScoringPlayID":89053,"Season":2012,"Week":7,"AwayTeam":"SEA","HomeTeam":"SF","Date":"2012-10-18T20:20:00","Sequence":1,"Team":"SEA","Quarter":"1","TimeRemaining":"5:29","PlayDescription":"S.Hauschka 52 yd. Field Goal (10-62, 5:05)","AwayScore":3,"HomeScore":0},{"GameKey":"201210731","SeasonType":1,"ScoringPlayID":89054,"Season":2012,"Week":7,"AwayTeam":"SEA","HomeTeam":"SF","Date":"2012-10-18T20:20:00","Sequence":2,"Team":"SF","Quarter":"1","TimeRemaining":"0:26","PlayDescription":"D.Akers 38 yd. Field Goal (11-60, 5:03)","AwayScore":3,"HomeScore":3},{"GameKey":"201210731","SeasonType":1,"ScoringPlayID":89055,"Season":2012,"Week":7,"AwayTeam":"SEA","HomeTeam":"SF","Date":"2012-10-18T20:20:00","Sequence":3,"Team":"SEA","Quarter":"2","TimeRemaining":"12:07","PlayDescription":"S.Hauschka 35 yd. Field Goal (8-63, 3:19)","AwayScore":6,"HomeScore":3},{"GameKey":"201210731","SeasonType":1,"ScoringPlayID":89056,"Season":2012,"Week":7,"AwayTeam":"SEA","HomeTeam":"SF","Date":"2012-10-18T20:20:00","Sequence":4,"Team":"SF","Quarter":"3","TimeRemaining":"4:29","PlayDescription":"D.Walker 12 yd. pass from A.Smith (D.Akers kick) (10-86, 6:20)","AwayScore":6,"HomeScore":10},{"GameKey":"201210731","SeasonType":1,"ScoringPlayID":89057,"Season":2012,"Week":7,"AwayTeam":"SEA","HomeTeam":"SF","Date":"2012-10-18T20:20:00","Sequence":5,"Team":"SF","Quarter":"4","TimeRemaining":"5:24","PlayDescription":"D.Akers 28 yd. Field Goal (7-39, 4:47)","AwayScore":6,"HomeScore":13}]},{"AwayDefense":[{"PlayerGameID":5915458,"PlayerID":5795,"ShortName":"J.Babineaux","Name":"Jordan Babineaux","Team":"TEN","Number":26,"Position":"FS","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":12,"Updated":null,"AssistedTackles":4,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":1,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":8,"Tackles":12,"TacklesForLoss":null},{"PlayerGameID":5915456,"PlayerID":8554,"ShortName":"R.Mouton","Name":"Ryan Mouton","Team":"TEN","Number":29,"Position":"DB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":8,"Updated":null,"AssistedTackles":2,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":6,"Tackles":9,"TacklesForLoss":null},{"PlayerGameID":5915453,"PlayerID":11873,"ShortName":"K.Wimbley","Name":"Kamerion Wimbley","Team":"TEN","Number":95,"Position":"DE","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":11.9,"Updated":null,"AssistedTackles":2,"FumbleReturnTouchdowns":0,"FumblesForced":1,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":9,"Sacks":1,"SoloTackles":4,"Tackles":6,"TacklesForLoss":null},{"PlayerGameID":5915457,"PlayerID":8550,"ShortName":"J.McCourty","Name":"Jason McCourty","Team":"TEN","Number":30,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":8.5,"Updated":null,"AssistedTackles":3,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":1,"PassesDefended":1,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":3,"Tackles":6,"TacklesForLoss":null},{"PlayerGameID":5915459,"PlayerID":1286,"ShortName":"M.Griffin","Name":"Michael Griffin","Team":"TEN","Number":33,"Position":"SS","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":6,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":6,"Tackles":6,"TacklesForLoss":null},{"PlayerGameID":5915460,"PlayerID":11096,"ShortName":"A.Verner","Name":"Alterraun Verner","Team":"TEN","Number":20,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":5,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":5,"Tackles":5,"TacklesForLoss":null},{"PlayerGameID":5915454,"PlayerID":12910,"ShortName":"A.Ayers","Name":"Akeem Ayers","Team":"TEN","Number":56,"Position":"OLB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":4.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":3,"Tackles":4,"TacklesForLoss":null},{"PlayerGameID":5915469,"PlayerID":12545,"ShortName":"A.Afalava","Name":"Al Afalava","Team":"TEN","Number":38,"Position":"S","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":3,"Updated":null,"AssistedTackles":2,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":2,"Tackles":4,"TacklesForLoss":null},{"PlayerGameID":5915473,"PlayerID":12304,"ShortName":"T.Shaw","Name":"Tim Shaw","Team":"TEN","Number":59,"Position":"LB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":4.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":3,"Tackles":4,"TacklesForLoss":null},{"PlayerGameID":5915450,"PlayerID":12305,"ShortName":"D.Morgan","Name":"Derrick Morgan","Team":"TEN","Number":91,"Position":"DE","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":8.5,"Updated":null,"AssistedTackles":3,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":1,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":2,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":0,"Tackles":3,"TacklesForLoss":null},{"PlayerGameID":5915471,"PlayerID":13941,"ShortName":"Z.Brown","Name":"Zach Brown","Team":"TEN","Number":55,"Position":"LB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":3.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":2,"Tackles":3,"TacklesForLoss":null},{"PlayerGameID":5915452,"PlayerID":12912,"ShortName":"J.Casey","Name":"Jurrell Casey","Team":"TEN","Number":99,"Position":"DT","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":1,"Updated":null,"AssistedTackles":2,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":0,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915455,"PlayerID":5775,"ShortName":"Z.Diles","Name":"Zac Diles","Team":"TEN","Number":53,"Position":"ILB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":1.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915479,"PlayerID":12306,"ShortName":"W.Witherspoon","Name":"Will Witherspoon","Team":"TEN","Number":92,"Position":"LB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":1.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915466,"PlayerID":13949,"ShortName":"C.Sensabaugh","Name":"Coty Sensabaugh","Team":"TEN","Number":24,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":0,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":0,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915472,"PlayerID":12303,"ShortName":"P.Bailey","Name":"Patrick Bailey","Team":"TEN","Number":57,"Position":"LB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":0,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":0,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915480,"PlayerID":13946,"ShortName":"M.Martin","Name":"Mike Martin","Team":"TEN","Number":93,"Position":"DT","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":1,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":1,"TacklesForLoss":null}],"AwayFantasyDefense":{"ScoringDetails":[],"GameKey":"201210704","SeasonType":1,"Season":2012,"Week":7,"Date":"2012-10-21T13:00:00","Team":"TEN","Opponent":"BUF","PointsAllowed":34,"TouchdownsScored":0,"SoloTackles":45,"AssistedTackles":23,"Sacks":1,"SackYards":9,"PassesDefended":4,"FumblesForced":1,"FumblesRecovered":1,"FumbleReturnYards":0,"FumbleReturnTouchdowns":0,"Interceptions":1,"InterceptionReturnYards":0,"InterceptionReturnTouchdowns":0,"BlockedKicks":0,"Safeties":0,"PuntReturns":0,"PuntReturnYards":0,"PuntReturnTouchdowns":0,"PuntReturnLong":0,"KickReturns":5,"KickReturnYards":116,"KickReturnTouchdowns":0,"KickReturnLong":32,"BlockedKickReturnTouchdowns":0,"FieldGoalReturnTouchdowns":0,"FantasyPointsAllowed":84.1,"QuarterbackFantasyPointsAllowed":19.3,"RunningbackFantasyPointsAllowed":28.2,"WideReceiverFantasyPointsAllowed":25.1,"TightEndFantasyPointsAllowed":1.5,"KickerFantasyPointsAllowed":10,"BlockedKickReturnYards":0,"FieldGoalReturnYards":0,"QuarterbackHits":5,"TacklesForLoss":4,"DefensiveTouchdowns":0,"SpecialTeamsTouchdowns":0,"IsGameOver":true,"FantasyPoints":4,"Stadium":"Ralph Wilson Stadium","Temperature":55,"Humidity":75,"WindSpeed":15,"ThirdDownAttempts":12,"ThirdDownConversions":7,"FourthDownAttempts":1,"FourthDownConversions":0,"PointsAllowedByDefenseSpecialTeams":34,"FanDuelSalary":null,"DraftKingsSalary":null,"FantasyDataSalary":null,"VictivSalary":null},"AwayKickPuntReturns":[{"PlayerGameID":5915467,"PlayerID":12243,"ShortName":"D.Reynaud","Name":"Darius Reynaud","Team":"TEN","Number":25,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":1.4,"Updated":null,"KickReturnLong":32,"KickReturnTouchdowns":0,"KickReturnYards":116,"KickReturnYardsPerAttempt":23.2,"KickReturns":5,"PuntReturnLong":0,"PuntReturnTouchdowns":0,"PuntReturnYards":0,"PuntReturnYardsPerAttempt":0,"PuntReturns":0}],"AwayKicking":[{"PlayerGameID":5915461,"PlayerID":2616,"ShortName":"R.Bironas","Name":"Rob Bironas","Team":"TEN","Number":2,"Position":"K","PositionCategory":"ST","FantasyPosition":"K","FantasyPoints":5,"Updated":null,"ExtraPointsAttempted":5,"ExtraPointsMade":5,"FieldGoalPercentage":0,"FieldGoalsAttempted":0,"FieldGoalsLongestMade":0,"FieldGoalsMade":0}],"AwayPassing":[{"PlayerGameID":5915447,"PlayerID":1034,"ShortName":"M.Hasselbeck","Name":"Matt Hasselbeck","Team":"TEN","Number":8,"Position":"QB","PositionCategory":"OFF","FantasyPosition":"QB","FantasyPoints":12,"Updated":null,"PassingAttempts":33,"PassingCompletionPercentage":66.7,"PassingCompletions":22,"PassingInterceptions":0,"PassingLong":29,"PassingRating":93.62,"PassingSackYards":12,"PassingSacks":2,"PassingTouchdowns":1,"PassingYards":205,"PassingYardsPerAttempt":6.2,"PassingYardsPerCompletion":9.3,"TwoPointConversionPasses":0}],"AwayPunting":[{"PlayerGameID":5915462,"PlayerID":10067,"ShortName":"B.Kern","Name":"Brett Kern","Team":"TEN","Number":6,"Position":"P","PositionCategory":"ST","FantasyPosition":"P","FantasyPoints":0,"Updated":null,"PuntAverage":41.3,"PuntInside20":2,"PuntTouchbacks":1,"PuntYards":124,"Punts":3}],"AwayReceiving":[{"PlayerGameID":5915439,"PlayerID":8564,"ShortName":"N.Washington","Name":"Nate Washington","Team":"TEN","Number":85,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":10.3,"Updated":null,"FumblesLost":0,"ReceivingLong":17,"ReceivingTargets":8,"ReceivingTouchdowns":1,"ReceivingYards":43,"ReceivingYardsPerReception":7.2,"ReceivingYardsPerTarget":5.4,"ReceptionPercentage":75,"Receptions":6,"TwoPointConversionReceptions":0},{"PlayerGameID":5915464,"PlayerID":11097,"ShortName":"D.Williams","Name":"Damian Williams","Team":"TEN","Number":17,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":3.8,"Updated":null,"FumblesLost":0,"ReceivingLong":19,"ReceivingTargets":4,"ReceivingTouchdowns":0,"ReceivingYards":38,"ReceivingYardsPerReception":12.7,"ReceivingYardsPerTarget":9.5,"ReceptionPercentage":75,"Receptions":3,"TwoPointConversionReceptions":0},{"PlayerGameID":5915477,"PlayerID":8534,"ShortName":"J.Cook","Name":"Jared Cook","Team":"TEN","Number":89,"Position":"TE","PositionCategory":"OFF","FantasyPosition":"TE","FantasyPoints":3.7,"Updated":null,"FumblesLost":0,"ReceivingLong":29,"ReceivingTargets":5,"ReceivingTouchdowns":0,"ReceivingYards":37,"ReceivingYardsPerReception":18.5,"ReceivingYardsPerTarget":7.4,"ReceptionPercentage":40,"Receptions":2,"TwoPointConversionReceptions":0},{"PlayerGameID":5915446,"PlayerID":8532,"ShortName":"K.Britt","Name":"Kenny Britt","Team":"TEN","Number":18,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":3,"Updated":null,"FumblesLost":0,"ReceivingLong":16,"ReceivingTargets":6,"ReceivingTouchdowns":0,"ReceivingYards":30,"ReceivingYardsPerReception":7.5,"ReceivingYardsPerTarget":5,"ReceptionPercentage":66.7,"Receptions":4,"TwoPointConversionReceptions":0},{"PlayerGameID":5915463,"PlayerID":13957,"ShortName":"K.Wright","Name":"Kendall Wright","Team":"TEN","Number":13,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":1.9,"Updated":null,"FumblesLost":0,"ReceivingLong":11,"ReceivingTargets":3,"ReceivingTouchdowns":0,"ReceivingYards":19,"ReceivingYardsPerReception":6.3,"ReceivingYardsPerTarget":6.3,"ReceptionPercentage":100,"Receptions":3,"TwoPointConversionReceptions":0},{"PlayerGameID":5915467,"PlayerID":12243,"ShortName":"D.Reynaud","Name":"Darius Reynaud","Team":"TEN","Number":25,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":1.4,"Updated":null,"FumblesLost":0,"ReceivingLong":9,"ReceivingTargets":2,"ReceivingTouchdowns":0,"ReceivingYards":18,"ReceivingYardsPerReception":9,"ReceivingYardsPerTarget":9,"ReceptionPercentage":100,"Receptions":2,"TwoPointConversionReceptions":0},{"PlayerGameID":5915445,"PlayerID":3,"ShortName":"C.Stevens","Name":"Craig Stevens","Team":"TEN","Number":88,"Position":"TE","PositionCategory":"OFF","FantasyPosition":"TE","FantasyPoints":1.7,"Updated":null,"FumblesLost":0,"ReceivingLong":17,"ReceivingTargets":1,"ReceivingTouchdowns":0,"ReceivingYards":17,"ReceivingYardsPerReception":17,"ReceivingYardsPerTarget":17,"ReceptionPercentage":100,"Receptions":1,"TwoPointConversionReceptions":0},{"PlayerGameID":5915448,"PlayerID":6828,"ShortName":"C.Johnson","Name":"Chris Johnson","Team":"TEN","Number":28,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":31.8,"Updated":null,"FumblesLost":0,"ReceivingLong":3,"ReceivingTargets":2,"ReceivingTouchdowns":0,"ReceivingYards":3,"ReceivingYardsPerReception":3,"ReceivingYardsPerTarget":1.5,"ReceptionPercentage":50,"Receptions":1,"TwoPointConversionReceptions":0},{"PlayerGameID":5915449,"PlayerID":9048,"ShortName":"Q.Johnson","Name":"Quinn Johnson","Team":"TEN","Number":45,"Position":"FB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":0,"Updated":null,"FumblesLost":0,"ReceivingLong":0,"ReceivingTargets":1,"ReceivingTouchdowns":0,"ReceivingYards":0,"ReceivingYardsPerReception":0,"ReceivingYardsPerTarget":0,"ReceptionPercentage":0,"Receptions":0,"TwoPointConversionReceptions":0},{"PlayerGameID":5915476,"PlayerID":13881,"ShortName":"T.Thompson","Name":"Taylor Thompson","Team":"TEN","Number":84,"Position":"TE","PositionCategory":"OFF","FantasyPosition":"TE","FantasyPoints":0,"Updated":null,"FumblesLost":0,"ReceivingLong":0,"ReceivingTargets":1,"ReceivingTouchdowns":0,"ReceivingYards":0,"ReceivingYardsPerReception":0,"ReceivingYardsPerTarget":0,"ReceptionPercentage":0,"Receptions":0,"TwoPointConversionReceptions":0}],"AwayRushing":[{"PlayerGameID":5915448,"PlayerID":6828,"ShortName":"C.Johnson","Name":"Chris Johnson","Team":"TEN","Number":28,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":31.8,"Updated":null,"FumblesLost":0,"RushingAttempts":18,"RushingLong":83,"RushingTouchdowns":2,"RushingYards":195,"RushingYardsPerAttempt":10.8,"TwoPointConversionRuns":0},{"PlayerGameID":5915465,"PlayerID":12918,"ShortName":"J.Harper","Name":"Jamie Harper","Team":"TEN","Number":23,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":12.8,"Updated":null,"FumblesLost":0,"RushingAttempts":7,"RushingLong":8,"RushingTouchdowns":2,"RushingYards":8,"RushingYardsPerAttempt":1.1,"TwoPointConversionRuns":0},{"PlayerGameID":5915447,"PlayerID":1034,"ShortName":"M.Hasselbeck","Name":"Matt Hasselbeck","Team":"TEN","Number":8,"Position":"QB","PositionCategory":"OFF","FantasyPosition":"QB","FantasyPoints":12,"Updated":null,"FumblesLost":0,"RushingAttempts":1,"RushingLong":-2,"RushingTouchdowns":0,"RushingYards":-2,"RushingYardsPerAttempt":-2,"TwoPointConversionRuns":0},{"PlayerGameID":5915467,"PlayerID":12243,"ShortName":"D.Reynaud","Name":"Darius Reynaud","Team":"TEN","Number":25,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":1.4,"Updated":null,"FumblesLost":0,"RushingAttempts":1,"RushingLong":-4,"RushingTouchdowns":0,"RushingYards":-4,"RushingYardsPerAttempt":-4,"TwoPointConversionRuns":0}],"Game":{"StadiumDetails":null,"GameKey":"201210704","Date":"2012-10-21T13:00:00","SeasonType":1,"Season":2012,"Week":7,"Stadium":"Ralph Wilson Stadium","PlayingSurface":"Artificial","Temperature":55,"Humidity":75,"WindSpeed":15,"AwayTeam":"TEN","HomeTeam":"BUF","AwayScore":35,"HomeScore":34,"TotalScore":69,"OverUnder":46.5,"PointSpread":-4,"AwayScoreQuarter1":14,"AwayScoreQuarter2":7,"AwayScoreQuarter3":7,"AwayScoreQuarter4":7,"AwayScoreOvertime":0,"HomeScoreQuarter1":14,"HomeScoreQuarter2":6,"HomeScoreQuarter3":14,"HomeScoreQuarter4":0,"HomeScoreOvertime":0,"AwayTimeOfPossession":"29:41","HomeTimeOfPossession":"30:19","AwayFirstDowns":21,"HomeFirstDowns":22,"AwayFirstDownsByRushing":7,"HomeFirstDownsByRushing":6,"AwayFirstDownsByPassing":12,"HomeFirstDownsByPassing":14,"AwayFirstDownsByPenalty":2,"HomeFirstDownsByPenalty":2,"AwayOffensivePlays":62,"HomeOffensivePlays":60,"AwayOffensiveYards":390,"HomeOffensiveYards":382,"AwayOffensiveYardsPerPlay":6.3,"HomeOffensiveYardsPerPlay":6.4,"AwayTouchdowns":5,"HomeTouchdowns":4,"AwayRushingAttempts":27,"HomeRushingAttempts":24,"AwayRushingYards":197,"HomeRushingYards":166,"AwayRushingYardsPerAttempt":7.3,"HomeRushingYardsPerAttempt":6.9,"AwayRushingTouchdowns":4,"HomeRushingTouchdowns":0,"AwayPassingAttempts":33,"HomePassingAttempts":35,"AwayPassingCompletions":22,"HomePassingCompletions":27,"AwayPassingYards":193,"HomePassingYards":216,"AwayPassingTouchdowns":1,"HomePassingTouchdowns":3,"AwayPassingInterceptions":0,"HomePassingInterceptions":1,"AwayPassingYardsPerAttempt":5.8,"HomePassingYardsPerAttempt":6.2,"AwayPassingYardsPerCompletion":8.8,"HomePassingYardsPerCompletion":8,"AwayCompletionPercentage":66.7,"HomeCompletionPercentage":77.1,"AwayPasserRating":92.11,"HomePasserRating":108.75,"AwayThirdDownAttempts":14,"HomeThirdDownAttempts":12,"AwayThirdDownConversions":9,"HomeThirdDownConversions":7,"AwayThirdDownPercentage":64.3,"HomeThirdDownPercentage":58.3,"AwayFourthDownAttempts":2,"HomeFourthDownAttempts":1,"AwayFourthDownConversions":1,"HomeFourthDownConversions":0,"AwayFourthDownPercentage":50,"HomeFourthDownPercentage":0,"AwayRedZoneAttempts":4,"HomeRedZoneAttempts":3,"AwayRedZoneConversions":4,"HomeRedZoneConversions":2,"AwayGoalToGoAttempts":2,"HomeGoalToGoAttempts":1,"AwayGoalToGoConversions":2,"HomeGoalToGoConversions":1,"AwayReturnYards":0,"HomeReturnYards":0,"AwayPenalties":3,"HomePenalties":8,"AwayPenaltyYards":25,"HomePenaltyYards":65,"AwayFumbles":1,"HomeFumbles":1,"AwayFumblesLost":0,"HomeFumblesLost":1,"AwayTimesSacked":2,"HomeTimesSacked":1,"AwayTimesSackedYards":12,"HomeTimesSackedYards":9,"AwaySafeties":0,"HomeSafeties":0,"AwayPunts":3,"HomePunts":1,"AwayPuntYards":124,"HomePuntYards":22,"AwayPuntAverage":41.3,"HomePuntAverage":22,"AwayGiveaways":0,"HomeGiveaways":2,"AwayTakeaways":2,"HomeTakeaways":0,"AwayTurnoverDifferential":2,"HomeTurnoverDifferential":-2,"AwayKickoffs":6,"HomeKickoffs":6,"AwayKickoffsInEndZone":3,"HomeKickoffsInEndZone":2,"AwayKickoffTouchbacks":2,"HomeKickoffTouchbacks":1,"AwayPuntsHadBlocked":0,"HomePuntsHadBlocked":0,"AwayPuntNetAverage":34.7,"HomePuntNetAverage":22,"AwayExtraPointKickingAttempts":5,"HomeExtraPointKickingAttempts":4,"AwayExtraPointKickingConversions":5,"HomeExtraPointKickingConversions":4,"AwayExtraPointsHadBlocked":0,"HomeExtraPointsHadBlocked":0,"AwayExtraPointPassingAttempts":0,"HomeExtraPointPassingAttempts":0,"AwayExtraPointPassingConversions":0,"HomeExtraPointPassingConversions":0,"AwayExtraPointRushingAttempts":0,"HomeExtraPointRushingAttempts":0,"AwayExtraPointRushingConversions":0,"HomeExtraPointRushingConversions":0,"AwayFieldGoalAttempts":0,"HomeFieldGoalAttempts":2,"AwayFieldGoalsMade":0,"HomeFieldGoalsMade":2,"AwayFieldGoalsHadBlocked":0,"HomeFieldGoalsHadBlocked":0,"AwayPuntReturns":0,"HomePuntReturns":0,"AwayPuntReturnYards":0,"HomePuntReturnYards":0,"AwayKickReturns":5,"HomeKickReturns":4,"AwayKickReturnYards":116,"HomeKickReturnYards":184,"AwayInterceptionReturns":1,"HomeInterceptionReturns":0,"AwayInterceptionReturnYards":0,"HomeInterceptionReturnYards":0,"AwaySoloTackles":45,"AwayAssistedTackles":23,"AwayQuarterbackHits":5,"AwayTacklesForLoss":4,"AwaySacks":1,"AwaySackYards":9,"AwayPassesDefended":4,"AwayFumblesForced":1,"AwayFumblesRecovered":1,"AwayFumbleReturnYards":0,"AwayFumbleReturnTouchdowns":0,"AwayInterceptionReturnTouchdowns":0,"AwayBlockedKicks":0,"AwayPuntReturnTouchdowns":0,"AwayPuntReturnLong":0,"AwayKickReturnTouchdowns":0,"AwayKickReturnLong":32,"AwayBlockedKickReturnYards":0,"AwayBlockedKickReturnTouchdowns":0,"AwayFieldGoalReturnYards":0,"AwayFieldGoalReturnTouchdowns":0,"AwayPuntNetYards":104,"HomeSoloTackles":42,"HomeAssistedTackles":19,"HomeQuarterbackHits":4,"HomeTacklesForLoss":6,"HomeSacks":2,"HomeSackYards":12,"HomePassesDefended":4,"HomeFumblesForced":1,"HomeFumblesRecovered":0,"HomeFumbleReturnYards":0,"HomeFumbleReturnTouchdowns":0,"HomeInterceptionReturnTouchdowns":0,"HomeBlockedKicks":0,"HomePuntReturnTouchdowns":0,"HomePuntReturnLong":0,"HomeKickReturnTouchdowns":1,"HomeKickReturnLong":89,"HomeBlockedKickReturnYards":0,"HomeBlockedKickReturnTouchdowns":0,"HomeFieldGoalReturnYards":0,"HomeFieldGoalReturnTouchdowns":0,"HomePuntNetYards":22,"IsGameOver":true,"GameID":62610,"StadiumID":null,"AwayTwoPointConversionReturns":null,"HomeTwoPointConversionReturns":null},"HomeDefense":[{"PlayerGameID":5915403,"PlayerID":12742,"ShortName":"K.Sheppard","Name":"Kelvin Sheppard","Team":"BUF","Number":55,"Position":"ILB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":6,"Updated":null,"AssistedTackles":4,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":4,"Tackles":9,"TacklesForLoss":null},{"PlayerGameID":5915404,"PlayerID":3378,"ShortName":"N.Barnett","Name":"Nick Barnett","Team":"BUF","Number":50,"Position":"OLB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":8,"Updated":null,"AssistedTackles":4,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":5,"Tackles":9,"TacklesForLoss":null},{"PlayerGameID":5915407,"PlayerID":5483,"ShortName":"G.Wilson","Name":"George Wilson","Team":"BUF","Number":37,"Position":"SS","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":8,"Updated":null,"AssistedTackles":2,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":1,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":6,"Tackles":8,"TacklesForLoss":null},{"PlayerGameID":5915417,"PlayerID":3059,"ShortName":"B.Scott","Name":"Bryan Scott","Team":"BUF","Number":43,"Position":"OLB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":6,"Updated":null,"AssistedTackles":2,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":1,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":4,"Tackles":7,"TacklesForLoss":null},{"PlayerGameID":5915408,"PlayerID":8281,"ShortName":"J.Byrd","Name":"Jairus Byrd","Team":"BUF","Number":31,"Position":"FS","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":8,"Updated":null,"AssistedTackles":2,"FumbleReturnTouchdowns":0,"FumblesForced":1,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":4,"Tackles":6,"TacklesForLoss":null},{"PlayerGameID":5915400,"PlayerID":2550,"ShortName":"K.Williams","Name":"Kyle Williams","Team":"BUF","Number":95,"Position":"DT","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":10.8,"Updated":null,"AssistedTackles":2,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":8,"Sacks":1,"SoloTackles":3,"Tackles":5,"TacklesForLoss":null},{"PlayerGameID":5915402,"PlayerID":13756,"ShortName":"N.Bradham","Name":"Nigel Bradham","Team":"BUF","Number":53,"Position":"OLB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":3.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":3,"Tackles":5,"TacklesForLoss":null},{"PlayerGameID":5915405,"PlayerID":12747,"ShortName":"A.Williams","Name":"Aaron Williams","Team":"BUF","Number":23,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":4,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":1,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":3,"Tackles":3,"TacklesForLoss":null},{"PlayerGameID":5915414,"PlayerID":12740,"ShortName":"J.Rogers","Name":"Justin Rogers","Team":"BUF","Number":26,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":3,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":3,"Tackles":3,"TacklesForLoss":null},{"PlayerGameID":5915398,"PlayerID":5467,"ShortName":"M.Williams","Name":"Mario Williams","Team":"BUF","Number":94,"Position":"DE","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":1.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915401,"PlayerID":3552,"ShortName":"C.Kelsay","Name":"Chris Kelsay","Team":"BUF","Number":90,"Position":"DE","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":6.4,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":4,"Sacks":1,"SoloTackles":2,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915426,"PlayerID":8054,"ShortName":"Sp.Johnson","Name":"Spencer Johnson","Team":"BUF","Number":91,"Position":"DT","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":2.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915399,"PlayerID":12725,"ShortName":"M.Dareus","Name":"Marcell Dareus","Team":"BUF","Number":99,"Position":"DT","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":1,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915406,"PlayerID":13761,"ShortName":"S.Gilmore","Name":"Stephon Gilmore","Team":"BUF","Number":27,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":2,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":1,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915419,"PlayerID":12157,"ShortName":"A.Moats","Name":"Arthur Moats","Team":"BUF","Number":52,"Position":"OLB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":0,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":0,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915427,"PlayerID":10935,"ShortName":"A.Carrington","Name":"Alex Carrington","Team":"BUF","Number":92,"Position":"DT","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":2,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":1,"TacklesForLoss":null}],"HomeFantasyDefense":{"ScoringDetails":[{"GameKey":"201210704","SeasonType":1,"PlayerID":7236,"Team":"BUF","Season":2012,"Week":7,"ScoringType":"KickoffReturnTouchdown","Length":89,"ScoringDetailID":307751,"PlayerGameID":5915410}],"GameKey":"201210704","SeasonType":1,"Season":2012,"Week":7,"Date":"2012-10-21T13:00:00","Team":"BUF","Opponent":"TEN","PointsAllowed":35,"TouchdownsScored":1,"SoloTackles":42,"AssistedTackles":19,"Sacks":2,"SackYards":12,"PassesDefended":4,"FumblesForced":1,"FumblesRecovered":0,"FumbleReturnYards":0,"FumbleReturnTouchdowns":0,"Interceptions":0,"InterceptionReturnYards":0,"InterceptionReturnTouchdowns":0,"BlockedKicks":0,"Safeties":0,"PuntReturns":0,"PuntReturnYards":0,"PuntReturnTouchdowns":0,"PuntReturnLong":0,"KickReturns":4,"KickReturnYards":184,"KickReturnTouchdowns":1,"KickReturnLong":89,"BlockedKickReturnTouchdowns":0,"FieldGoalReturnTouchdowns":0,"FantasyPointsAllowed":87.4,"QuarterbackFantasyPointsAllowed":12,"RunningbackFantasyPointsAllowed":46,"WideReceiverFantasyPointsAllowed":19,"TightEndFantasyPointsAllowed":5.4,"KickerFantasyPointsAllowed":5,"BlockedKickReturnYards":0,"FieldGoalReturnYards":0,"QuarterbackHits":4,"TacklesForLoss":6,"DefensiveTouchdowns":0,"SpecialTeamsTouchdowns":1,"IsGameOver":true,"FantasyPoints":4,"Stadium":"Ralph Wilson Stadium","Temperature":55,"Humidity":75,"WindSpeed":15,"ThirdDownAttempts":14,"ThirdDownConversions":9,"FourthDownAttempts":2,"FourthDownConversions":1,"PointsAllowedByDefenseSpecialTeams":35,"FanDuelSalary":null,"DraftKingsSalary":null,"FantasyDataSalary":null,"VictivSalary":null},"HomeKickPuntReturns":[{"PlayerGameID":5915410,"PlayerID":7236,"ShortName":"B.Smith","Name":"Brad Smith","Team":"BUF","Number":16,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":0.7,"Updated":null,"KickReturnLong":89,"KickReturnTouchdowns":1,"KickReturnYards":109,"KickReturnYardsPerAttempt":54.5,"KickReturns":2,"PuntReturnLong":0,"PuntReturnTouchdowns":0,"PuntReturnYards":0,"PuntReturnYardsPerAttempt":0,"PuntReturns":0},{"PlayerGameID":5915411,"PlayerID":5035,"ShortName":"L.McKelvin","Name":"Leodis McKelvin","Team":"BUF","Number":21,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":0,"Updated":null,"KickReturnLong":46,"KickReturnTouchdowns":0,"KickReturnYards":75,"KickReturnYardsPerAttempt":37.5,"KickReturns":2,"PuntReturnLong":0,"PuntReturnTouchdowns":0,"PuntReturnYards":0,"PuntReturnYardsPerAttempt":0,"PuntReturns":0}],"HomeKicking":[{"PlayerGameID":5915386,"PlayerID":6410,"ShortName":"R.Lindell","Name":"Rian Lindell","Team":"BUF","Number":9,"Position":"K","PositionCategory":"ST","FantasyPosition":"K","FantasyPoints":10,"Updated":null,"ExtraPointsAttempted":4,"ExtraPointsMade":4,"FieldGoalPercentage":100,"FieldGoalsAttempted":2,"FieldGoalsLongestMade":42,"FieldGoalsMade":2}],"HomePassing":[{"PlayerGameID":5915396,"PlayerID":8283,"ShortName":"R.Fitzpatrick","Name":"Ryan Fitzpatrick","Team":"BUF","Number":14,"Position":"QB","PositionCategory":"OFF","FantasyPosition":"QB","FantasyPoints":19.3,"Updated":null,"PassingAttempts":35,"PassingCompletionPercentage":77.1,"PassingCompletions":27,"PassingInterceptions":1,"PassingLong":27,"PassingRating":109.82,"PassingSackYards":9,"PassingSacks":1,"PassingTouchdowns":3,"PassingYards":225,"PassingYardsPerAttempt":6.4,"PassingYardsPerCompletion":8.3,"TwoPointConversionPasses":0}],"HomePunting":[{"PlayerGameID":5915409,"PlayerID":14718,"ShortName":"S.Powell","Name":"Shawn Powell","Team":"BUF","Number":6,"Position":"P","PositionCategory":"ST","FantasyPosition":"P","FantasyPoints":0,"Updated":null,"PuntAverage":22,"PuntInside20":0,"PuntTouchbacks":0,"PuntYards":22,"Punts":1}],"HomeReceiving":[{"PlayerGameID":5915387,"PlayerID":2950,"ShortName":"St.Johnson","Name":"Steve Johnson","Team":"BUF","Number":13,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":13.1,"Updated":null,"FumblesLost":0,"ReceivingLong":27,"ReceivingTargets":7,"ReceivingTouchdowns":1,"ReceivingYards":71,"ReceivingYardsPerReception":14.2,"ReceivingYardsPerTarget":10.1,"ReceptionPercentage":71.4,"Receptions":5,"TwoPointConversionReceptions":0},{"PlayerGameID":5915397,"PlayerID":5701,"ShortName":"F.Jackson","Name":"Fred Jackson","Team":"BUF","Number":22,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":18,"Updated":null,"FumblesLost":0,"ReceivingLong":9,"ReceivingTargets":11,"ReceivingTouchdowns":1,"ReceivingYards":49,"ReceivingYardsPerReception":6.1,"ReceivingYardsPerTarget":4.5,"ReceptionPercentage":72.7,"Receptions":8,"TwoPointConversionReceptions":0},{"PlayerGameID":5915394,"PlayerID":10944,"ShortName":"D.Jones","Name":"Donald Jones","Team":"BUF","Number":19,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":10.7,"Updated":null,"FumblesLost":0,"ReceivingLong":20,"ReceivingTargets":5,"ReceivingTouchdowns":1,"ReceivingYards":47,"ReceivingYardsPerReception":11.8,"ReceivingYardsPerTarget":9.4,"ReceptionPercentage":80,"Receptions":4,"TwoPointConversionReceptions":0},{"PlayerGameID":5915415,"PlayerID":10949,"ShortName":"C.Spiller","Name":"CJ Spiller","Team":"BUF","Number":28,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":10.2,"Updated":null,"FumblesLost":0,"ReceivingLong":20,"ReceivingTargets":6,"ReceivingTouchdowns":0,"ReceivingYards":32,"ReceivingYardsPerReception":5.3,"ReceivingYardsPerTarget":5.3,"ReceptionPercentage":100,"Receptions":6,"TwoPointConversionReceptions":0},{"PlayerGameID":5915393,"PlayerID":12548,"ShortName":"S.Chandler","Name":"Scott Chandler","Team":"BUF","Number":84,"Position":"TE","PositionCategory":"OFF","FantasyPosition":"TE","FantasyPoints":1.5,"Updated":null,"FumblesLost":0,"ReceivingLong":13,"ReceivingTargets":4,"ReceivingTouchdowns":0,"ReceivingYards":15,"ReceivingYardsPerReception":7.5,"ReceivingYardsPerTarget":3.8,"ReceptionPercentage":50,"Receptions":2,"TwoPointConversionReceptions":0},{"PlayerGameID":5915395,"PlayerID":13763,"ShortName":"T.Graham","Name":"TJ Graham","Team":"BUF","Number":11,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":0.6,"Updated":null,"FumblesLost":0,"ReceivingLong":6,"ReceivingTargets":1,"ReceivingTouchdowns":0,"ReceivingYards":6,"ReceivingYardsPerReception":6,"ReceivingYardsPerTarget":6,"ReceptionPercentage":100,"Receptions":1,"TwoPointConversionReceptions":0},{"PlayerGameID":5915410,"PlayerID":7236,"ShortName":"B.Smith","Name":"Brad Smith","Team":"BUF","Number":16,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":0.7,"Updated":null,"FumblesLost":0,"ReceivingLong":5,"ReceivingTargets":1,"ReceivingTouchdowns":0,"ReceivingYards":5,"ReceivingYardsPerReception":5,"ReceivingYardsPerTarget":5,"ReceptionPercentage":100,"Receptions":1,"TwoPointConversionReceptions":0}],"HomeRushing":[{"PlayerGameID":5915397,"PlayerID":5701,"ShortName":"F.Jackson","Name":"Fred Jackson","Team":"BUF","Number":22,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":18,"Updated":null,"FumblesLost":0,"RushingAttempts":9,"RushingLong":13,"RushingTouchdowns":0,"RushingYards":71,"RushingYardsPerAttempt":7.9,"TwoPointConversionRuns":0},{"PlayerGameID":5915415,"PlayerID":10949,"ShortName":"C.Spiller","Name":"CJ Spiller","Team":"BUF","Number":28,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":10.2,"Updated":null,"FumblesLost":0,"RushingAttempts":12,"RushingLong":20,"RushingTouchdowns":0,"RushingYards":70,"RushingYardsPerAttempt":5.8,"TwoPointConversionRuns":0},{"PlayerGameID":5915396,"PlayerID":8283,"ShortName":"R.Fitzpatrick","Name":"Ryan Fitzpatrick","Team":"BUF","Number":14,"Position":"QB","PositionCategory":"OFF","FantasyPosition":"QB","FantasyPoints":19.3,"Updated":null,"FumblesLost":1,"RushingAttempts":2,"RushingLong":13,"RushingTouchdowns":0,"RushingYards":23,"RushingYardsPerAttempt":11.5,"TwoPointConversionRuns":0},{"PlayerGameID":5915410,"PlayerID":7236,"ShortName":"B.Smith","Name":"Brad Smith","Team":"BUF","Number":16,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":0.7,"Updated":null,"FumblesLost":0,"RushingAttempts":1,"RushingLong":2,"RushingTouchdowns":0,"RushingYards":2,"RushingYardsPerAttempt":2,"TwoPointConversionRuns":0}],"Score":{"StadiumDetails":null,"GameKey":"201210704","SeasonType":1,"Season":2012,"Week":7,"Date":"2012-10-21T13:00:00","AwayTeam":"TEN","HomeTeam":"BUF","AwayScore":35,"HomeScore":34,"Channel":"CBS","PointSpread":-4,"OverUnder":46.5,"Quarter":"F","TimeRemaining":null,"Possession":null,"Down":null,"Distance":null,"YardLine":null,"YardLineTerritory":null,"RedZone":null,"AwayScoreQuarter1":14,"AwayScoreQuarter2":7,"AwayScoreQuarter3":7,"AwayScoreQuarter4":7,"AwayScoreOvertime":0,"HomeScoreQuarter1":14,"HomeScoreQuarter2":6,"HomeScoreQuarter3":14,"HomeScoreQuarter4":0,"HomeScoreOvertime":0,"HasStarted":true,"IsInProgress":false,"IsOver":true,"Has1stQuarterStarted":true,"Has2ndQuarterStarted":true,"Has3rdQuarterStarted":true,"Has4thQuarterStarted":true,"IsOvertime":false,"DownAndDistance":null,"QuarterDescription":"Final","StadiumID":null,"LastUpdated":null},"ScoringDetails":[{"GameKey":"201210704","SeasonType":1,"PlayerID":6410,"Team":"BUF","Season":2012,"Week":7,"ScoringType":"FieldGoalMade","Length":31,"ScoringDetailID":307741,"PlayerGameID":5915386},{"GameKey":"201210704","SeasonType":1,"PlayerID":6410,"Team":"BUF","Season":2012,"Week":7,"ScoringType":"FieldGoalMade","Length":42,"ScoringDetailID":307742,"PlayerGameID":5915386},{"GameKey":"201210704","SeasonType":1,"PlayerID":12918,"Team":"TEN","Season":2012,"Week":7,"ScoringType":"RushingTouchdown","Length":1,"ScoringDetailID":307743,"PlayerGameID":5915465},{"GameKey":"201210704","SeasonType":1,"PlayerID":6828,"Team":"TEN","Season":2012,"Week":7,"ScoringType":"RushingTouchdown","Length":16,"ScoringDetailID":307744,"PlayerGameID":5915448},{"GameKey":"201210704","SeasonType":1,"PlayerID":12918,"Team":"TEN","Season":2012,"Week":7,"ScoringType":"RushingTouchdown","Length":1,"ScoringDetailID":307745,"PlayerGameID":5915465},{"GameKey":"201210704","SeasonType":1,"PlayerID":10944,"Team":"BUF","Season":2012,"Week":7,"ScoringType":"ReceivingTouchdown","Length":15,"ScoringDetailID":307746,"PlayerGameID":5915394},{"GameKey":"201210704","SeasonType":1,"PlayerID":8283,"Team":"BUF","Season":2012,"Week":7,"ScoringType":"PassingTouchdown","Length":15,"ScoringDetailID":307747,"PlayerGameID":5915396},{"GameKey":"201210704","SeasonType":1,"PlayerID":5701,"Team":"BUF","Season":2012,"Week":7,"ScoringType":"ReceivingTouchdown","Length":3,"ScoringDetailID":307748,"PlayerGameID":5915397},{"GameKey":"201210704","SeasonType":1,"PlayerID":8283,"Team":"BUF","Season":2012,"Week":7,"ScoringType":"PassingTouchdown","Length":3,"ScoringDetailID":307749,"PlayerGameID":5915396},{"GameKey":"201210704","SeasonType":1,"PlayerID":6828,"Team":"TEN","Season":2012,"Week":7,"ScoringType":"RushingTouchdown","Length":83,"ScoringDetailID":307750,"PlayerGameID":5915448},{"GameKey":"201210704","SeasonType":1,"PlayerID":7236,"Team":"BUF","Season":2012,"Week":7,"ScoringType":"KickoffReturnTouchdown","Length":89,"ScoringDetailID":307751,"PlayerGameID":5915410},{"GameKey":"201210704","SeasonType":1,"PlayerID":8564,"Team":"TEN","Season":2012,"Week":7,"ScoringType":"ReceivingTouchdown","Length":15,"ScoringDetailID":307752,"PlayerGameID":5915439},{"GameKey":"201210704","SeasonType":1,"PlayerID":1034,"Team":"TEN","Season":2012,"Week":7,"ScoringType":"PassingTouchdown","Length":15,"ScoringDetailID":307753,"PlayerGameID":5915447},{"GameKey":"201210704","SeasonType":1,"PlayerID":2950,"Team":"BUF","Season":2012,"Week":7,"ScoringType":"ReceivingTouchdown","Length":27,"ScoringDetailID":307754,"PlayerGameID":5915387},{"GameKey":"201210704","SeasonType":1,"PlayerID":8283,"Team":"BUF","Season":2012,"Week":7,"ScoringType":"PassingTouchdown","Length":27,"ScoringDetailID":307755,"PlayerGameID":5915396}],"ScoringPlays":[{"GameKey":"201210704","SeasonType":1,"ScoringPlayID":89058,"Season":2012,"Week":7,"AwayTeam":"TEN","HomeTeam":"BUF","Date":"2012-10-21T13:00:00","Sequence":1,"Team":"TEN","Quarter":"1","TimeRemaining":"10:38","PlayDescription":"C.Johnson 16 yd. run (R.Bironas kick) (8-77, 4:22)","AwayScore":7,"HomeScore":0},{"GameKey":"201210704","SeasonType":1,"ScoringPlayID":89059,"Season":2012,"Week":7,"AwayTeam":"TEN","HomeTeam":"BUF","Date":"2012-10-21T13:00:00","Sequence":2,"Team":"BUF","Quarter":"1","TimeRemaining":"3:01","PlayDescription":"F.Jackson 3 yd. pass from R.Fitzpatrick (R.Lindell kick) (13-83, 7:37)","AwayScore":7,"HomeScore":7},{"GameKey":"201210704","SeasonType":1,"ScoringPlayID":89060,"Season":2012,"Week":7,"AwayTeam":"TEN","HomeTeam":"BUF","Date":"2012-10-21T13:00:00","Sequence":3,"Team":"TEN","Quarter":"1","TimeRemaining":"2:43","PlayDescription":"C.Johnson 83 yd. run (R.Bironas kick) (1-83, 0:18)","AwayScore":14,"HomeScore":7},{"GameKey":"201210704","SeasonType":1,"ScoringPlayID":89061,"Season":2012,"Week":7,"AwayTeam":"TEN","HomeTeam":"BUF","Date":"2012-10-21T13:00:00","Sequence":4,"Team":"BUF","Quarter":"1","TimeRemaining":"2:31","PlayDescription":"B.Smith 89 yd. kickoff return (R.Lindell kick) (0-0, 0:12)","AwayScore":14,"HomeScore":14},{"GameKey":"201210704","SeasonType":1,"ScoringPlayID":89062,"Season":2012,"Week":7,"AwayTeam":"TEN","HomeTeam":"BUF","Date":"2012-10-21T13:00:00","Sequence":5,"Team":"TEN","Quarter":"2","TimeRemaining":"10:18","PlayDescription":"J.Harper 1 yd. run (R.Bironas kick) (14-80, 7:13)","AwayScore":21,"HomeScore":14},{"GameKey":"201210704","SeasonType":1,"ScoringPlayID":89063,"Season":2012,"Week":7,"AwayTeam":"TEN","HomeTeam":"BUF","Date":"2012-10-21T13:00:00","Sequence":6,"Team":"BUF","Quarter":"2","TimeRemaining":"3:56","PlayDescription":"R.Lindell 31 yd. Field Goal (10-68, 6:22)","AwayScore":21,"HomeScore":17},{"GameKey":"201210704","SeasonType":1,"ScoringPlayID":89064,"Season":2012,"Week":7,"AwayTeam":"TEN","HomeTeam":"BUF","Date":"2012-10-21T13:00:00","Sequence":7,"Team":"BUF","Quarter":"2","TimeRemaining":"0:00","PlayDescription":"R.Lindell 42 yd. Field Goal (10-63, 1:47)","AwayScore":21,"HomeScore":20},{"GameKey":"201210704","SeasonType":1,"ScoringPlayID":89065,"Season":2012,"Week":7,"AwayTeam":"TEN","HomeTeam":"BUF","Date":"2012-10-21T13:00:00","Sequence":8,"Team":"TEN","Quarter":"3","TimeRemaining":"11:45","PlayDescription":"J.Harper 1 yd. run (R.Bironas kick) (8-32, 2:58)","AwayScore":28,"HomeScore":20},{"GameKey":"201210704","SeasonType":1,"ScoringPlayID":89066,"Season":2012,"Week":7,"AwayTeam":"TEN","HomeTeam":"BUF","Date":"2012-10-21T13:00:00","Sequence":9,"Team":"BUF","Quarter":"3","TimeRemaining":"7:52","PlayDescription":"D.Jones 15 yd. pass from R.Fitzpatrick (R.Lindell kick) (7-66, 3:53)","AwayScore":28,"HomeScore":27},{"GameKey":"201210704","SeasonType":1,"ScoringPlayID":89067,"Season":2012,"Week":7,"AwayTeam":"TEN","HomeTeam":"BUF","Date":"2012-10-21T13:00:00","Sequence":10,"Team":"BUF","Quarter":"3","TimeRemaining":"0:05","PlayDescription":"St.Johnson 27 yd. pass from R.Fitzpatrick (R.Lindell kick) (9-80, 4:36)","AwayScore":28,"HomeScore":34},{"GameKey":"201210704","SeasonType":1,"ScoringPlayID":89068,"Season":2012,"Week":7,"AwayTeam":"TEN","HomeTeam":"BUF","Date":"2012-10-21T13:00:00","Sequence":11,"Team":"TEN","Quarter":"4","TimeRemaining":"1:03","PlayDescription":"N.Washington 15 yd. pass from M.Hasselbeck (R.Bironas kick) (7-52, 1:54)","AwayScore":35,"HomeScore":34}]},{"AwayDefense":[{"PlayerGameID":5915776,"PlayerID":11740,"ShortName":"S.Brown","Name":"Sheldon Brown","Team":"CLE","Number":24,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":19.1,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":1,"FumblesRecovered":1,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":6,"Sacks":1,"SoloTackles":9,"Tackles":10,"TacklesForLoss":null},{"PlayerGameID":5915783,"PlayerID":12881,"ShortName":"B.Skrine","Name":"Buster Skrine","Team":"CLE","Number":22,"Position":"DB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":6.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":6,"Tackles":8,"TacklesForLoss":null},{"PlayerGameID":5915778,"PlayerID":11054,"ShortName":"T.Ward","Name":"TJ Ward","Team":"CLE","Number":43,"Position":"SS","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":7,"Updated":null,"AssistedTackles":2,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":1,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":5,"Tackles":7,"TacklesForLoss":null},{"PlayerGameID":5915773,"PlayerID":2503,"ShortName":"D.Jackson","Name":"D'Qwell Jackson","Team":"CLE","Number":52,"Position":"ILB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":6.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":1,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":5,"Tackles":6,"TacklesForLoss":null},{"PlayerGameID":5915790,"PlayerID":14711,"ShortName":"C.Robertson","Name":"Craig Robertson","Team":"CLE","Number":53,"Position":"LB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":5.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":5,"Tackles":6,"TacklesForLoss":null},{"PlayerGameID":5915774,"PlayerID":8486,"ShortName":"K.Maiava","Name":"Kaluka Maiava","Team":"CLE","Number":56,"Position":"OLB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":8,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":5,"Sacks":1,"SoloTackles":3,"Tackles":4,"TacklesForLoss":null},{"PlayerGameID":5915777,"PlayerID":364,"ShortName":"U.Young","Name":"Usama Young","Team":"CLE","Number":28,"Position":"FS","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":3.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":3,"Tackles":4,"TacklesForLoss":null},{"PlayerGameID":5915771,"PlayerID":1214,"ShortName":"F.Rucker","Name":"Frostee Rucker","Team":"CLE","Number":92,"Position":"DE","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":8.7,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":2,"Sacks":1,"SoloTackles":2,"Tackles":3,"TacklesForLoss":null},{"PlayerGameID":5915797,"PlayerID":13896,"ShortName":"J.Hughes","Name":"John Hughes","Team":"CLE","Number":93,"Position":"DL","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":3.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":2,"Tackles":3,"TacklesForLoss":null},{"PlayerGameID":5915768,"PlayerID":12880,"ShortName":"J.Sheard","Name":"Jabaal Sheard","Team":"CLE","Number":97,"Position":"OLB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":3,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":2,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915775,"PlayerID":11043,"ShortName":"J.Haden","Name":"Joe Haden","Team":"CLE","Number":23,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":2,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":2,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915793,"PlayerID":13843,"ShortName":"I.Kitchen","Name":"Ishmaa'ily Kitchen","Team":"CLE","Number":67,"Position":"DL","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":2.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915799,"PlayerID":6528,"ShortName":"J.Parker","Name":"Juqua Parker","Team":"CLE","Number":95,"Position":"DL","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":1,"Updated":null,"AssistedTackles":2,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":0,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915769,"PlayerID":4096,"ShortName":"A.Rubin","Name":"Ahtyba Rubin","Team":"CLE","Number":71,"Position":"DT","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":0.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":0,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915770,"PlayerID":13911,"ShortName":"B.Winn","Name":"Billy Winn","Team":"CLE","Number":90,"Position":"DT","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":0.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":0,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915772,"PlayerID":13898,"ShortName":"J.Johnson","Name":"James-Michael Johnson","Team":"CLE","Number":50,"Position":"OLB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":0.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":0,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915800,"PlayerID":13649,"ShortName":"E.Stephens","Name":"Emmanuel Stephens","Team":"CLE","Number":96,"Position":"DL","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":1,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":1,"TacklesForLoss":null}],"AwayFantasyDefense":{"ScoringDetails":[],"GameKey":"201210714","SeasonType":1,"Season":2012,"Week":7,"Date":"2012-10-21T13:00:00","Team":"CLE","Opponent":"IND","PointsAllowed":17,"TouchdownsScored":0,"SoloTackles":46,"AssistedTackles":16,"Sacks":3,"SackYards":13,"PassesDefended":2,"FumblesForced":1,"FumblesRecovered":1,"FumbleReturnYards":2,"FumbleReturnTouchdowns":0,"Interceptions":0,"InterceptionReturnYards":0,"InterceptionReturnTouchdowns":0,"BlockedKicks":0,"Safeties":0,"PuntReturns":2,"PuntReturnYards":12,"PuntReturnTouchdowns":0,"PuntReturnLong":10,"KickReturns":2,"KickReturnYards":55,"KickReturnTouchdowns":0,"KickReturnLong":32,"BlockedKickReturnTouchdowns":0,"FieldGoalReturnTouchdowns":0,"FantasyPointsAllowed":55.84,"QuarterbackFantasyPointsAllowed":18.64,"RunningbackFantasyPointsAllowed":15.5,"WideReceiverFantasyPointsAllowed":14.1,"TightEndFantasyPointsAllowed":2.6,"KickerFantasyPointsAllowed":5,"BlockedKickReturnYards":0,"FieldGoalReturnYards":0,"QuarterbackHits":6,"TacklesForLoss":4,"DefensiveTouchdowns":0,"SpecialTeamsTouchdowns":0,"IsGameOver":true,"FantasyPoints":6,"Stadium":"Lucas Oil Stadium","Temperature":60,"Humidity":65,"WindSpeed":9,"ThirdDownAttempts":15,"ThirdDownConversions":6,"FourthDownAttempts":1,"FourthDownConversions":1,"PointsAllowedByDefenseSpecialTeams":17,"FanDuelSalary":null,"DraftKingsSalary":null,"FantasyDataSalary":null,"VictivSalary":null},"AwayKickPuntReturns":[{"PlayerGameID":5915781,"PlayerID":4291,"ShortName":"J.Cribbs","Name":"Joshua Cribbs","Team":"CLE","Number":16,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":0.8,"Updated":null,"KickReturnLong":32,"KickReturnTouchdowns":0,"KickReturnYards":55,"KickReturnYardsPerAttempt":27.5,"KickReturns":2,"PuntReturnLong":10,"PuntReturnTouchdowns":0,"PuntReturnYards":12,"PuntReturnYardsPerAttempt":6,"PuntReturns":2}],"AwayKicking":[{"PlayerGameID":5915780,"PlayerID":5714,"ShortName":"P.Dawson","Name":"Phil Dawson","Team":"CLE","Number":4,"Position":"K","PositionCategory":"ST","FantasyPosition":"K","FantasyPoints":1,"Updated":null,"ExtraPointsAttempted":1,"ExtraPointsMade":1,"FieldGoalPercentage":0,"FieldGoalsAttempted":0,"FieldGoalsLongestMade":0,"FieldGoalsMade":0}],"AwayPassing":[{"PlayerGameID":5915765,"PlayerID":13910,"ShortName":"B.Weeden","Name":"Brandon Weeden","Team":"CLE","Number":3,"Position":"QB","PositionCategory":"OFF","FantasyPosition":"QB","FantasyPoints":18.96,"Updated":null,"PassingAttempts":41,"PassingCompletionPercentage":61,"PassingCompletions":25,"PassingInterceptions":0,"PassingLong":33,"PassingRating":95.99,"PassingSackYards":0,"PassingSacks":0,"PassingTouchdowns":2,"PassingYards":264,"PassingYardsPerAttempt":6.4,"PassingYardsPerCompletion":10.6,"TwoPointConversionPasses":0}],"AwayPunting":[{"PlayerGameID":5915779,"PlayerID":10121,"ShortName":"R.Hodges","Name":"Reggie Hodges","Team":"CLE","Number":2,"Position":"P","PositionCategory":"ST","FantasyPosition":"P","FantasyPoints":0,"Updated":null,"PuntAverage":41.4,"PuntInside20":2,"PuntTouchbacks":0,"PuntYards":207,"Punts":5}],"AwayReceiving":[{"PlayerGameID":5915764,"PlayerID":14587,"ShortName":"J.Gordon","Name":"Josh Gordon","Team":"CLE","Number":13,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":11.9,"Updated":null,"FumblesLost":0,"ReceivingLong":33,"ReceivingTargets":10,"ReceivingTouchdowns":1,"ReceivingYards":59,"ReceivingYardsPerReception":29.5,"ReceivingYardsPerTarget":5.9,"ReceptionPercentage":20,"Receptions":2,"TwoPointConversionReceptions":0},{"PlayerGameID":5915796,"PlayerID":14735,"ShortName":"J.Cooper","Name":"Josh Cooper","Team":"CLE","Number":88,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":5.3,"Updated":null,"FumblesLost":0,"ReceivingLong":14,"ReceivingTargets":8,"ReceivingTouchdowns":0,"ReceivingYards":53,"ReceivingYardsPerReception":13.2,"ReceivingYardsPerTarget":6.6,"ReceptionPercentage":50,"Receptions":4,"TwoPointConversionReceptions":0},{"PlayerGameID":5915757,"PlayerID":12874,"ShortName":"G.Little","Name":"Greg Little","Team":"CLE","Number":15,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":11.2,"Updated":null,"FumblesLost":0,"ReceivingLong":14,"ReceivingTargets":7,"ReceivingTouchdowns":1,"ReceivingYards":52,"ReceivingYardsPerReception":8.7,"ReceivingYardsPerTarget":7.4,"ReceptionPercentage":85.7,"Receptions":6,"TwoPointConversionReceptions":0},{"PlayerGameID":5915763,"PlayerID":11756,"ShortName":"B.Watson","Name":"Benjamin Watson","Team":"CLE","Number":82,"Position":"TE","PositionCategory":"OFF","FantasyPosition":"TE","FantasyPoints":3.6,"Updated":null,"FumblesLost":0,"ReceivingLong":25,"ReceivingTargets":3,"ReceivingTouchdowns":0,"ReceivingYards":36,"ReceivingYardsPerReception":12,"ReceivingYardsPerTarget":12,"ReceptionPercentage":100,"Receptions":3,"TwoPointConversionReceptions":0},{"PlayerGameID":5915795,"PlayerID":13887,"ShortName":"T.Benjamin","Name":"Travis Benjamin","Team":"CLE","Number":80,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":3.3,"Updated":null,"FumblesLost":0,"ReceivingLong":12,"ReceivingTargets":5,"ReceivingTouchdowns":0,"ReceivingYards":33,"ReceivingYardsPerReception":11,"ReceivingYardsPerTarget":6.6,"ReceptionPercentage":60,"Receptions":3,"TwoPointConversionReceptions":0},{"PlayerGameID":5915784,"PlayerID":9277,"ShortName":"C.Ogbonnaya","Name":"Chris Ogbonnaya","Team":"CLE","Number":25,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":2.3,"Updated":null,"FumblesLost":0,"ReceivingLong":7,"ReceivingTargets":4,"ReceivingTouchdowns":0,"ReceivingYards":17,"ReceivingYardsPerReception":5.7,"ReceivingYardsPerTarget":4.2,"ReceptionPercentage":75,"Receptions":3,"TwoPointConversionReceptions":0},{"PlayerGameID":5915767,"PlayerID":13902,"ShortName":"T.Richardson","Name":"Trent Richardson","Team":"CLE","Number":33,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":1.9,"Updated":null,"FumblesLost":0,"ReceivingLong":9,"ReceivingTargets":2,"ReceivingTouchdowns":0,"ReceivingYards":11,"ReceivingYardsPerReception":5.5,"ReceivingYardsPerTarget":5.5,"ReceptionPercentage":100,"Receptions":2,"TwoPointConversionReceptions":0},{"PlayerGameID":5915781,"PlayerID":4291,"ShortName":"J.Cribbs","Name":"Joshua Cribbs","Team":"CLE","Number":16,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":0.8,"Updated":null,"FumblesLost":0,"ReceivingLong":8,"ReceivingTargets":1,"ReceivingTouchdowns":0,"ReceivingYards":8,"ReceivingYardsPerReception":8,"ReceivingYardsPerTarget":8,"ReceptionPercentage":100,"Receptions":1,"TwoPointConversionReceptions":0},{"PlayerGameID":5915766,"PlayerID":12861,"ShortName":"J.Cameron","Name":"Jordan Cameron","Team":"CLE","Number":84,"Position":"TE","PositionCategory":"OFF","FantasyPosition":"TE","FantasyPoints":0.4,"Updated":null,"FumblesLost":0,"ReceivingLong":4,"ReceivingTargets":1,"ReceivingTouchdowns":0,"ReceivingYards":4,"ReceivingYardsPerReception":4,"ReceivingYardsPerTarget":4,"ReceptionPercentage":100,"Receptions":1,"TwoPointConversionReceptions":0}],"AwayRushing":[{"PlayerGameID":5915782,"PlayerID":13530,"ShortName":"M.Hardesty","Name":"Montario Hardesty","Team":"CLE","Number":20,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":2.8,"Updated":null,"FumblesLost":0,"RushingAttempts":7,"RushingLong":9,"RushingTouchdowns":0,"RushingYards":28,"RushingYardsPerAttempt":4,"TwoPointConversionRuns":0},{"PlayerGameID":5915765,"PlayerID":13910,"ShortName":"B.Weeden","Name":"Brandon Weeden","Team":"CLE","Number":3,"Position":"QB","PositionCategory":"OFF","FantasyPosition":"QB","FantasyPoints":18.96,"Updated":null,"FumblesLost":0,"RushingAttempts":1,"RushingLong":13,"RushingTouchdowns":0,"RushingYards":13,"RushingYardsPerAttempt":13,"TwoPointConversionRuns":0},{"PlayerGameID":5915767,"PlayerID":13902,"ShortName":"T.Richardson","Name":"Trent Richardson","Team":"CLE","Number":33,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":1.9,"Updated":null,"FumblesLost":0,"RushingAttempts":8,"RushingLong":5,"RushingTouchdowns":0,"RushingYards":8,"RushingYardsPerAttempt":1,"TwoPointConversionRuns":0},{"PlayerGameID":5915784,"PlayerID":9277,"ShortName":"C.Ogbonnaya","Name":"Chris Ogbonnaya","Team":"CLE","Number":25,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":2.3,"Updated":null,"FumblesLost":0,"RushingAttempts":1,"RushingLong":6,"RushingTouchdowns":0,"RushingYards":6,"RushingYardsPerAttempt":6,"TwoPointConversionRuns":0}],"Game":{"StadiumDetails":null,"GameKey":"201210714","Date":"2012-10-21T13:00:00","SeasonType":1,"Season":2012,"Week":7,"Stadium":"Lucas Oil Stadium","PlayingSurface":"Artificial","Temperature":60,"Humidity":65,"WindSpeed":9,"AwayTeam":"CLE","HomeTeam":"IND","AwayScore":13,"HomeScore":17,"TotalScore":30,"OverUnder":46.5,"PointSpread":-1,"AwayScoreQuarter1":0,"AwayScoreQuarter2":6,"AwayScoreQuarter3":7,"AwayScoreQuarter4":0,"AwayScoreOvertime":0,"HomeScoreQuarter1":7,"HomeScoreQuarter2":7,"HomeScoreQuarter3":3,"HomeScoreQuarter4":0,"HomeScoreOvertime":0,"AwayTimeOfPossession":"24:39","HomeTimeOfPossession":"35:21","AwayFirstDowns":19,"HomeFirstDowns":21,"AwayFirstDownsByRushing":3,"HomeFirstDownsByRushing":10,"AwayFirstDownsByPassing":14,"HomeFirstDownsByPassing":8,"AwayFirstDownsByPenalty":2,"HomeFirstDownsByPenalty":3,"AwayOffensivePlays":58,"HomeOffensivePlays":69,"AwayOffensiveYards":319,"HomeOffensiveYards":321,"AwayOffensiveYardsPerPlay":5.5,"HomeOffensiveYardsPerPlay":4.7,"AwayTouchdowns":2,"HomeTouchdowns":2,"AwayRushingAttempts":17,"HomeRushingAttempts":37,"AwayRushingYards":55,"HomeRushingYards":148,"AwayRushingYardsPerAttempt":3.2,"HomeRushingYardsPerAttempt":4,"AwayRushingTouchdowns":0,"HomeRushingTouchdowns":2,"AwayPassingAttempts":41,"HomePassingAttempts":29,"AwayPassingCompletions":25,"HomePassingCompletions":16,"AwayPassingYards":264,"HomePassingYards":173,"AwayPassingTouchdowns":2,"HomePassingTouchdowns":0,"AwayPassingInterceptions":0,"HomePassingInterceptions":0,"AwayPassingYardsPerAttempt":6.4,"HomePassingYardsPerAttempt":6,"AwayPassingYardsPerCompletion":10.6,"HomePassingYardsPerCompletion":10.8,"AwayCompletionPercentage":61,"HomeCompletionPercentage":55.2,"AwayPasserRating":95.99,"HomePasserRating":72.92,"AwayThirdDownAttempts":13,"HomeThirdDownAttempts":15,"AwayThirdDownConversions":6,"HomeThirdDownConversions":6,"AwayThirdDownPercentage":46.2,"HomeThirdDownPercentage":40,"AwayFourthDownAttempts":1,"HomeFourthDownAttempts":1,"AwayFourthDownConversions":0,"HomeFourthDownConversions":1,"AwayFourthDownPercentage":0,"HomeFourthDownPercentage":100,"AwayRedZoneAttempts":1,"HomeRedZoneAttempts":3,"AwayRedZoneConversions":1,"HomeRedZoneConversions":2,"AwayGoalToGoAttempts":1,"HomeGoalToGoAttempts":2,"AwayGoalToGoConversions":1,"HomeGoalToGoConversions":2,"AwayReturnYards":12,"HomeReturnYards":8,"AwayPenalties":9,"HomePenalties":7,"AwayPenaltyYards":75,"HomePenaltyYards":50,"AwayFumbles":1,"HomeFumbles":1,"AwayFumblesLost":0,"HomeFumblesLost":1,"AwayTimesSacked":0,"HomeTimesSacked":3,"AwayTimesSackedYards":0,"HomeTimesSackedYards":13,"AwaySafeties":0,"HomeSafeties":0,"AwayPunts":5,"HomePunts":5,"AwayPuntYards":207,"HomePuntYards":242,"AwayPuntAverage":41.4,"HomePuntAverage":48.4,"AwayGiveaways":0,"HomeGiveaways":1,"AwayTakeaways":1,"HomeTakeaways":0,"AwayTurnoverDifferential":1,"HomeTurnoverDifferential":-1,"AwayKickoffs":3,"HomeKickoffs":4,"AwayKickoffsInEndZone":3,"HomeKickoffsInEndZone":4,"AwayKickoffTouchbacks":2,"HomeKickoffTouchbacks":2,"AwayPuntsHadBlocked":0,"HomePuntsHadBlocked":0,"AwayPuntNetAverage":39.8,"HomePuntNetAverage":38,"AwayExtraPointKickingAttempts":1,"HomeExtraPointKickingAttempts":2,"AwayExtraPointKickingConversions":1,"HomeExtraPointKickingConversions":2,"AwayExtraPointsHadBlocked":0,"HomeExtraPointsHadBlocked":0,"AwayExtraPointPassingAttempts":0,"HomeExtraPointPassingAttempts":0,"AwayExtraPointPassingConversions":0,"HomeExtraPointPassingConversions":0,"AwayExtraPointRushingAttempts":1,"HomeExtraPointRushingAttempts":0,"AwayExtraPointRushingConversions":0,"HomeExtraPointRushingConversions":0,"AwayFieldGoalAttempts":0,"HomeFieldGoalAttempts":1,"AwayFieldGoalsMade":0,"HomeFieldGoalsMade":1,"AwayFieldGoalsHadBlocked":0,"HomeFieldGoalsHadBlocked":0,"AwayPuntReturns":2,"HomePuntReturns":1,"AwayPuntReturnYards":12,"HomePuntReturnYards":8,"AwayKickReturns":2,"HomeKickReturns":1,"AwayKickReturnYards":55,"HomeKickReturnYards":24,"AwayInterceptionReturns":0,"HomeInterceptionReturns":0,"AwayInterceptionReturnYards":0,"HomeInterceptionReturnYards":0,"AwaySoloTackles":46,"AwayAssistedTackles":16,"AwayQuarterbackHits":6,"AwayTacklesForLoss":4,"AwaySacks":3,"AwaySackYards":13,"AwayPassesDefended":2,"AwayFumblesForced":1,"AwayFumblesRecovered":1,"AwayFumbleReturnYards":2,"AwayFumbleReturnTouchdowns":0,"AwayInterceptionReturnTouchdowns":0,"AwayBlockedKicks":0,"AwayPuntReturnTouchdowns":0,"AwayPuntReturnLong":10,"AwayKickReturnTouchdowns":0,"AwayKickReturnLong":32,"AwayBlockedKickReturnYards":0,"AwayBlockedKickReturnTouchdowns":0,"AwayFieldGoalReturnYards":0,"AwayFieldGoalReturnTouchdowns":0,"AwayPuntNetYards":199,"HomeSoloTackles":33,"HomeAssistedTackles":14,"HomeQuarterbackHits":6,"HomeTacklesForLoss":2,"HomeSacks":0,"HomeSackYards":0,"HomePassesDefended":6,"HomeFumblesForced":0,"HomeFumblesRecovered":0,"HomeFumbleReturnYards":0,"HomeFumbleReturnTouchdowns":0,"HomeInterceptionReturnTouchdowns":0,"HomeBlockedKicks":0,"HomePuntReturnTouchdowns":0,"HomePuntReturnLong":8,"HomeKickReturnTouchdowns":0,"HomeKickReturnLong":24,"HomeBlockedKickReturnYards":0,"HomeBlockedKickReturnTouchdowns":0,"HomeFieldGoalReturnYards":0,"HomeFieldGoalReturnTouchdowns":0,"HomePuntNetYards":190,"IsGameOver":true,"GameID":62613,"StadiumID":null,"AwayTwoPointConversionReturns":null,"HomeTwoPointConversionReturns":null},"HomeDefense":[{"PlayerGameID":5915721,"PlayerID":13999,"ShortName":"J.Freeman","Name":"Jerrell Freeman","Team":"IND","Number":50,"Position":"OLB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":4.5,"Updated":null,"AssistedTackles":3,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":3,"Tackles":6,"TacklesForLoss":null},{"PlayerGameID":5915725,"PlayerID":2379,"ShortName":"A.Bethea","Name":"Antoine Bethea","Team":"IND","Number":41,"Position":"FS","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":6,"Updated":null,"AssistedTackles":2,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":1,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":4,"Tackles":6,"TacklesForLoss":null},{"PlayerGameID":5915726,"PlayerID":9681,"ShortName":"J.Powers","Name":"Jerraud Powers","Team":"IND","Number":25,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":6.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":2,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":4,"Tackles":5,"TacklesForLoss":null},{"PlayerGameID":5915720,"PlayerID":11126,"ShortName":"K.Conner","Name":"Kavell Conner","Team":"IND","Number":53,"Position":"ILB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":3.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":3,"Tackles":4,"TacklesForLoss":null},{"PlayerGameID":5915719,"PlayerID":11132,"ShortName":"J.Hughes","Name":"Jerry Hughes","Team":"IND","Number":92,"Position":"OLB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":4,"Updated":null,"AssistedTackles":2,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":3,"TacklesForLoss":null},{"PlayerGameID":5915723,"PlayerID":9664,"ShortName":"V.Davis","Name":"Vontae Davis","Team":"IND","Number":23,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":3,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":3,"Tackles":3,"TacklesForLoss":null},{"PlayerGameID":5915733,"PlayerID":11199,"ShortName":"C.Vaughn","Name":"Cassius Vaughn","Team":"IND","Number":32,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":4,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":1,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":3,"Tackles":3,"TacklesForLoss":null},{"PlayerGameID":5915738,"PlayerID":11124,"ShortName":"P.Angerer","Name":"Pat Angerer","Team":"IND","Number":51,"Position":"ILB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":4.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":2,"Tackles":3,"TacklesForLoss":null},{"PlayerGameID":5915717,"PlayerID":669,"ShortName":"A.Johnson","Name":"Antonio Johnson","Team":"IND","Number":99,"Position":"NT","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":2.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915724,"PlayerID":1765,"ShortName":"T.Zbikowski","Name":"Tom Zbikowski","Team":"IND","Number":28,"Position":"SS","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":3.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":2,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915732,"PlayerID":12557,"ShortName":"J.Gordy","Name":"Josh Gordy","Team":"IND","Number":27,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":1,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915735,"PlayerID":12968,"ShortName":"J.Lefeged","Name":"Joe Lefeged","Team":"IND","Number":35,"Position":"S","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":1,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915744,"PlayerID":12403,"ShortName":"C.Geathers","Name":"Clifton Geathers","Team":"IND","Number":66,"Position":"DE","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":1.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915716,"PlayerID":11139,"ShortName":"R.Mathews","Name":"Ricardo Mathews","Team":"IND","Number":91,"Position":"DE","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":0.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":0,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915722,"PlayerID":4131,"ShortName":"D.Freeney","Name":"Dwight Freeney","Team":"IND","Number":93,"Position":"DE/LB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":3,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915739,"PlayerID":12901,"ShortName":"M.Harvey","Name":"Mario Harvey","Team":"IND","Number":54,"Position":"ILB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":1,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915740,"PlayerID":14003,"ShortName":"J.Hickman","Name":"Justin Hickman","Team":"IND","Number":55,"Position":"OLB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":1,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915741,"PlayerID":8902,"ShortName":"M.Fokou","Name":"Moise Fokou","Team":"IND","Number":58,"Position":"ILB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":1,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915745,"PlayerID":14743,"ShortName":"L.Guy","Name":"Lawrence Guy","Team":"IND","Number":67,"Position":"DE","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":1,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":1,"TacklesForLoss":null}],"HomeFantasyDefense":{"ScoringDetails":[],"GameKey":"201210714","SeasonType":1,"Season":2012,"Week":7,"Date":"2012-10-21T13:00:00","Team":"IND","Opponent":"CLE","PointsAllowed":13,"TouchdownsScored":0,"SoloTackles":33,"AssistedTackles":14,"Sacks":0,"SackYards":0,"PassesDefended":6,"FumblesForced":0,"FumblesRecovered":0,"FumbleReturnYards":0,"FumbleReturnTouchdowns":0,"Interceptions":0,"InterceptionReturnYards":0,"InterceptionReturnTouchdowns":0,"BlockedKicks":0,"Safeties":0,"PuntReturns":1,"PuntReturnYards":8,"PuntReturnTouchdowns":0,"PuntReturnLong":8,"KickReturns":1,"KickReturnYards":24,"KickReturnTouchdowns":0,"KickReturnLong":24,"BlockedKickReturnTouchdowns":0,"FieldGoalReturnTouchdowns":0,"FantasyPointsAllowed":63.46,"QuarterbackFantasyPointsAllowed":18.96,"RunningbackFantasyPointsAllowed":7,"WideReceiverFantasyPointsAllowed":32.5,"TightEndFantasyPointsAllowed":4,"KickerFantasyPointsAllowed":1,"BlockedKickReturnYards":0,"FieldGoalReturnYards":0,"QuarterbackHits":6,"TacklesForLoss":2,"DefensiveTouchdowns":0,"SpecialTeamsTouchdowns":0,"IsGameOver":true,"FantasyPoints":4,"Stadium":"Lucas Oil Stadium","Temperature":60,"Humidity":65,"WindSpeed":9,"ThirdDownAttempts":13,"ThirdDownConversions":6,"FourthDownAttempts":1,"FourthDownConversions":0,"PointsAllowedByDefenseSpecialTeams":13,"FanDuelSalary":null,"DraftKingsSalary":null,"FantasyDataSalary":null,"VictivSalary":null},"HomeKickPuntReturns":[{"PlayerGameID":5915731,"PlayerID":4067,"ShortName":"M.Moore","Name":"Mewelde Moore","Team":"IND","Number":26,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":1.1,"Updated":null,"KickReturnLong":24,"KickReturnTouchdowns":0,"KickReturnYards":24,"KickReturnYardsPerAttempt":24,"KickReturns":1,"PuntReturnLong":0,"PuntReturnTouchdowns":0,"PuntReturnYards":0,"PuntReturnYardsPerAttempt":0,"PuntReturns":0},{"PlayerGameID":5915729,"PlayerID":14005,"ShortName":"T.Hilton","Name":"TY Hilton","Team":"IND","Number":13,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":2.2,"Updated":null,"KickReturnLong":0,"KickReturnTouchdowns":0,"KickReturnYards":0,"KickReturnYardsPerAttempt":0,"KickReturns":0,"PuntReturnLong":8,"PuntReturnTouchdowns":0,"PuntReturnYards":8,"PuntReturnYardsPerAttempt":8,"PuntReturns":1}],"HomeKicking":[{"PlayerGameID":5915704,"PlayerID":3258,"ShortName":"A.Vinatieri","Name":"Adam Vinatieri","Team":"IND","Number":4,"Position":"K","PositionCategory":"ST","FantasyPosition":"K","FantasyPoints":5,"Updated":null,"ExtraPointsAttempted":2,"ExtraPointsMade":2,"FieldGoalPercentage":100,"FieldGoalsAttempted":1,"FieldGoalsLongestMade":38,"FieldGoalsMade":1}],"HomePassing":[{"PlayerGameID":5915706,"PlayerID":14008,"ShortName":"A.Luck","Name":"Andrew Luck","Team":"IND","Number":12,"Position":"QB","PositionCategory":"OFF","FantasyPosition":"QB","FantasyPoints":18.64,"Updated":null,"PassingAttempts":29,"PassingCompletionPercentage":55.2,"PassingCompletions":16,"PassingInterceptions":0,"PassingLong":30,"PassingRating":74.78,"PassingSackYards":13,"PassingSacks":3,"PassingTouchdowns":0,"PassingYards":186,"PassingYardsPerAttempt":6.4,"PassingYardsPerCompletion":11.6,"TwoPointConversionPasses":0}],"HomePunting":[{"PlayerGameID":5915727,"PlayerID":8618,"ShortName":"P.McAfee","Name":"Pat McAfee","Team":"IND","Number":1,"Position":"P","PositionCategory":"ST","FantasyPosition":"P","FantasyPoints":0,"Updated":null,"PuntAverage":48.4,"PuntInside20":1,"PuntTouchbacks":2,"PuntYards":242,"Punts":5}],"HomeReceiving":[{"PlayerGameID":5915715,"PlayerID":5002,"ShortName":"R.Wayne","Name":"Reggie Wayne","Team":"IND","Number":87,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":7.3,"Updated":null,"FumblesLost":0,"ReceivingLong":30,"ReceivingTargets":11,"ReceivingTouchdowns":0,"ReceivingYards":73,"ReceivingYardsPerReception":12.2,"ReceivingYardsPerTarget":6.6,"ReceptionPercentage":54.5,"Receptions":6,"TwoPointConversionReceptions":0},{"PlayerGameID":5915705,"PlayerID":2730,"ShortName":"D.Avery","Name":"Donnie Avery","Team":"IND","Number":11,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":4.6,"Updated":null,"FumblesLost":0,"ReceivingLong":16,"ReceivingTargets":6,"ReceivingTouchdowns":0,"ReceivingYards":46,"ReceivingYardsPerReception":11.5,"ReceivingYardsPerTarget":7.7,"ReceptionPercentage":66.7,"Receptions":4,"TwoPointConversionReceptions":0},{"PlayerGameID":5915729,"PlayerID":14005,"ShortName":"T.Hilton","Name":"TY Hilton","Team":"IND","Number":13,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":2.2,"Updated":null,"FumblesLost":0,"ReceivingLong":14,"ReceivingTargets":5,"ReceivingTouchdowns":0,"ReceivingYards":22,"ReceivingYardsPerReception":11,"ReceivingYardsPerTarget":4.4,"ReceptionPercentage":40,"Receptions":2,"TwoPointConversionReceptions":0},{"PlayerGameID":5915707,"PlayerID":13991,"ShortName":"V.Ballard","Name":"Vick Ballard","Team":"IND","Number":33,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":10.3,"Updated":null,"FumblesLost":0,"ReceivingLong":19,"ReceivingTargets":1,"ReceivingTouchdowns":0,"ReceivingYards":19,"ReceivingYardsPerReception":19,"ReceivingYardsPerTarget":19,"ReceptionPercentage":100,"Receptions":1,"TwoPointConversionReceptions":0},{"PlayerGameID":5915746,"PlayerID":13997,"ShortName":"C.Fleener","Name":"Coby Fleener","Team":"IND","Number":80,"Position":"TE","PositionCategory":"OFF","FantasyPosition":"TE","FantasyPoints":1.7,"Updated":null,"FumblesLost":0,"ReceivingLong":10,"ReceivingTargets":2,"ReceivingTouchdowns":0,"ReceivingYards":17,"ReceivingYardsPerReception":8.5,"ReceivingYardsPerTarget":8.5,"ReceptionPercentage":100,"Receptions":2,"TwoPointConversionReceptions":0},{"PlayerGameID":5915714,"PlayerID":13987,"ShortName":"D.Allen","Name":"Dwayne Allen","Team":"IND","Number":83,"Position":"TE","PositionCategory":"OFF","FantasyPosition":"TE","FantasyPoints":0.9,"Updated":null,"FumblesLost":0,"ReceivingLong":9,"ReceivingTargets":2,"ReceivingTouchdowns":0,"ReceivingYards":9,"ReceivingYardsPerReception":9,"ReceivingYardsPerTarget":4.5,"ReceptionPercentage":50,"Receptions":1,"TwoPointConversionReceptions":0},{"PlayerGameID":5915730,"PlayerID":13992,"ShortName":"L.Brazill","Name":"LaVon Brazill","Team":"IND","Number":15,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":0,"Updated":null,"FumblesLost":0,"ReceivingLong":0,"ReceivingTargets":1,"ReceivingTouchdowns":0,"ReceivingYards":0,"ReceivingYardsPerReception":0,"ReceivingYardsPerTarget":0,"ReceptionPercentage":0,"Receptions":0,"TwoPointConversionReceptions":0},{"PlayerGameID":5915734,"PlayerID":12959,"ShortName":"D.Carter","Name":"Delone Carter","Team":"IND","Number":34,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":4.1,"Updated":null,"FumblesLost":0,"ReceivingLong":0,"ReceivingTargets":1,"ReceivingTouchdowns":0,"ReceivingYards":0,"ReceivingYardsPerReception":0,"ReceivingYardsPerTarget":0,"ReceptionPercentage":0,"Receptions":0,"TwoPointConversionReceptions":0}],"HomeRushing":[{"PlayerGameID":5915707,"PlayerID":13991,"ShortName":"V.Ballard","Name":"Vick Ballard","Team":"IND","Number":33,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":10.3,"Updated":null,"FumblesLost":0,"RushingAttempts":20,"RushingLong":26,"RushingTouchdowns":0,"RushingYards":84,"RushingYardsPerAttempt":4.2,"TwoPointConversionRuns":0},{"PlayerGameID":5915734,"PlayerID":12959,"ShortName":"D.Carter","Name":"Delone Carter","Team":"IND","Number":34,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":4.1,"Updated":null,"FumblesLost":0,"RushingAttempts":11,"RushingLong":6,"RushingTouchdowns":0,"RushingYards":41,"RushingYardsPerAttempt":3.7,"TwoPointConversionRuns":0},{"PlayerGameID":5915706,"PlayerID":14008,"ShortName":"A.Luck","Name":"Andrew Luck","Team":"IND","Number":12,"Position":"QB","PositionCategory":"OFF","FantasyPosition":"QB","FantasyPoints":18.64,"Updated":null,"FumblesLost":1,"RushingAttempts":3,"RushingLong":5,"RushingTouchdowns":2,"RushingYards":12,"RushingYardsPerAttempt":4,"TwoPointConversionRuns":0},{"PlayerGameID":5915731,"PlayerID":4067,"ShortName":"M.Moore","Name":"Mewelde Moore","Team":"IND","Number":26,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":1.1,"Updated":null,"FumblesLost":0,"RushingAttempts":3,"RushingLong":5,"RushingTouchdowns":0,"RushingYards":11,"RushingYardsPerAttempt":3.7,"TwoPointConversionRuns":0}],"Score":{"StadiumDetails":null,"GameKey":"201210714","SeasonType":1,"Season":2012,"Week":7,"Date":"2012-10-21T13:00:00","AwayTeam":"CLE","HomeTeam":"IND","AwayScore":13,"HomeScore":17,"Channel":"CBS","PointSpread":-1,"OverUnder":46.5,"Quarter":"F","TimeRemaining":null,"Possession":null,"Down":null,"Distance":null,"YardLine":null,"YardLineTerritory":null,"RedZone":null,"AwayScoreQuarter1":0,"AwayScoreQuarter2":6,"AwayScoreQuarter3":7,"AwayScoreQuarter4":0,"AwayScoreOvertime":0,"HomeScoreQuarter1":7,"HomeScoreQuarter2":7,"HomeScoreQuarter3":3,"HomeScoreQuarter4":0,"HomeScoreOvertime":0,"HasStarted":true,"IsInProgress":false,"IsOver":true,"Has1stQuarterStarted":true,"Has2ndQuarterStarted":true,"Has3rdQuarterStarted":true,"Has4thQuarterStarted":true,"IsOvertime":false,"DownAndDistance":null,"QuarterDescription":"Final","StadiumID":null,"LastUpdated":null},"ScoringDetails":[{"GameKey":"201210714","SeasonType":1,"PlayerID":3258,"Team":"IND","Season":2012,"Week":7,"ScoringType":"FieldGoalMade","Length":38,"ScoringDetailID":307779,"PlayerGameID":5915704},{"GameKey":"201210714","SeasonType":1,"PlayerID":12874,"Team":"CLE","Season":2012,"Week":7,"ScoringType":"ReceivingTouchdown","Length":14,"ScoringDetailID":307780,"PlayerGameID":5915757},{"GameKey":"201210714","SeasonType":1,"PlayerID":13910,"Team":"CLE","Season":2012,"Week":7,"ScoringType":"PassingTouchdown","Length":14,"ScoringDetailID":307781,"PlayerGameID":5915765},{"GameKey":"201210714","SeasonType":1,"PlayerID":14587,"Team":"CLE","Season":2012,"Week":7,"ScoringType":"ReceivingTouchdown","Length":33,"ScoringDetailID":307782,"PlayerGameID":5915764},{"GameKey":"201210714","SeasonType":1,"PlayerID":13910,"Team":"CLE","Season":2012,"Week":7,"ScoringType":"PassingTouchdown","Length":33,"ScoringDetailID":307783,"PlayerGameID":5915765},{"GameKey":"201210714","SeasonType":1,"PlayerID":14008,"Team":"IND","Season":2012,"Week":7,"ScoringType":"RushingTouchdown","Length":5,"ScoringDetailID":307784,"PlayerGameID":5915706},{"GameKey":"201210714","SeasonType":1,"PlayerID":14008,"Team":"IND","Season":2012,"Week":7,"ScoringType":"RushingTouchdown","Length":3,"ScoringDetailID":307785,"PlayerGameID":5915706}],"ScoringPlays":[{"GameKey":"201210714","SeasonType":1,"ScoringPlayID":89087,"Season":2012,"Week":7,"AwayTeam":"CLE","HomeTeam":"IND","Date":"2012-10-21T13:00:00","Sequence":1,"Team":"CLE","Quarter":"3","TimeRemaining":"11:53","PlayDescription":"J.Gordon 33 yd. pass from B.Weeden (P.Dawson kick) (6-80, 3:07)","AwayScore":13,"HomeScore":14},{"GameKey":"201210714","SeasonType":1,"ScoringPlayID":89088,"Season":2012,"Week":7,"AwayTeam":"CLE","HomeTeam":"IND","Date":"2012-10-21T13:00:00","Sequence":2,"Team":"IND","Quarter":"3","TimeRemaining":"3:19","PlayDescription":"A.Vinatieri 38 yd. Field Goal (17-61, 8:34)","AwayScore":13,"HomeScore":17},{"GameKey":"201210714","SeasonType":1,"ScoringPlayID":89089,"Season":2012,"Week":7,"AwayTeam":"CLE","HomeTeam":"IND","Date":"2012-10-21T13:00:00","Sequence":3,"Team":"IND","Quarter":"1","TimeRemaining":"7:23","PlayDescription":"A.Luck 3 yd. run (A.Vinatieri kick) (11-80, 7:37)","AwayScore":0,"HomeScore":7},{"GameKey":"201210714","SeasonType":1,"ScoringPlayID":89090,"Season":2012,"Week":7,"AwayTeam":"CLE","HomeTeam":"IND","Date":"2012-10-21T13:00:00","Sequence":4,"Team":"CLE","Quarter":"2","TimeRemaining":"14:01","PlayDescription":"G.Little 14 yd. pass from B.Weeden (kick aborted) (16-90, 8:22)","AwayScore":6,"HomeScore":7},{"GameKey":"201210714","SeasonType":1,"ScoringPlayID":89091,"Season":2012,"Week":7,"AwayTeam":"CLE","HomeTeam":"IND","Date":"2012-10-21T13:00:00","Sequence":5,"Team":"IND","Quarter":"2","TimeRemaining":"7:41","PlayDescription":"A.Luck 5 yd. run (A.Vinatieri kick) (14-76, 6:20)","AwayScore":6,"HomeScore":14}]}]
|
@@ -0,0 +1 @@
|
|
1
|
+
[{"AwayDefense":[],"AwayFantasyDefense":{"ScoringDetails":[],"GameKey":"201411225","SeasonType":1,"Season":2014,"Week":12,"Date":"2014-11-20T20:25:00","Team":"KC","Opponent":"OAK","PointsAllowed":24,"TouchdownsScored":0,"SoloTackles":43,"AssistedTackles":21,"Sacks":1,"SackYards":2,"PassesDefended":5,"FumblesForced":1,"FumblesRecovered":1,"FumbleReturnYards":0,"FumbleReturnTouchdowns":0,"Interceptions":0,"InterceptionReturnYards":0,"InterceptionReturnTouchdowns":0,"BlockedKicks":0,"Safeties":0,"PuntReturns":4,"PuntReturnYards":51,"PuntReturnTouchdowns":0,"PuntReturnLong":28,"KickReturns":3,"KickReturnYards":113,"KickReturnTouchdowns":0,"KickReturnLong":48,"BlockedKickReturnTouchdowns":0,"FieldGoalReturnTouchdowns":0,"FantasyPointsAllowed":68.26,"QuarterbackFantasyPointsAllowed":11.16,"RunningbackFantasyPointsAllowed":31,"WideReceiverFantasyPointsAllowed":19.3,"TightEndFantasyPointsAllowed":0.8,"KickerFantasyPointsAllowed":6,"BlockedKickReturnYards":0,"FieldGoalReturnYards":0,"QuarterbackHits":2,"TacklesForLoss":4,"DefensiveTouchdowns":0,"SpecialTeamsTouchdowns":0,"IsGameOver":true,"FantasyPoints":3,"Stadium":"O.co Coliseum","Temperature":57,"Humidity":88,"WindSpeed":6,"ThirdDownAttempts":16,"ThirdDownConversions":8,"FourthDownAttempts":1,"FourthDownConversions":1,"PointsAllowedByDefenseSpecialTeams":24,"FanDuelSalary":null,"DraftKingsSalary":null,"FantasyDataSalary":null,"VictivSalary":null},"AwayKickPuntReturns":[],"AwayKicking":[],"AwayPassing":[],"AwayPunting":[],"AwayReceiving":[],"AwayRushing":[],"Game":{"StadiumDetails":{"StadiumID":16,"Name":"O.co Coliseum","City":"Oakland","State":"CA","Country":"USA","Capacity":53200,"PlayingSurface":"Grass"},"GameKey":"201411225","Date":"2014-11-20T20:25:00","SeasonType":1,"Season":2014,"Week":12,"Stadium":"O.co Coliseum","PlayingSurface":"Grass","Temperature":57,"Humidity":88,"WindSpeed":6,"AwayTeam":"KC","HomeTeam":"OAK","AwayScore":20,"HomeScore":24,"TotalScore":44,"OverUnder":42.5,"PointSpread":7.5,"AwayScoreQuarter1":0,"AwayScoreQuarter2":3,"AwayScoreQuarter3":7,"AwayScoreQuarter4":10,"AwayScoreOvertime":0,"HomeScoreQuarter1":7,"HomeScoreQuarter2":7,"HomeScoreQuarter3":3,"HomeScoreQuarter4":7,"HomeScoreOvertime":0,"AwayTimeOfPossession":"29:56","HomeTimeOfPossession":"30:4","AwayFirstDowns":16,"HomeFirstDowns":18,"AwayFirstDownsByRushing":3,"HomeFirstDownsByRushing":8,"AwayFirstDownsByPassing":11,"HomeFirstDownsByPassing":9,"AwayFirstDownsByPenalty":2,"HomeFirstDownsByPenalty":1,"AwayOffensivePlays":62,"HomeOffensivePlays":66,"AwayOffensiveYards":313,"HomeOffensiveYards":351,"AwayOffensiveYardsPerPlay":5,"HomeOffensiveYardsPerPlay":5.3,"AwayTouchdowns":2,"HomeTouchdowns":3,"AwayRushingAttempts":24,"HomeRushingAttempts":30,"AwayRushingYards":96,"HomeRushingYards":179,"AwayRushingYardsPerAttempt":4,"HomeRushingYardsPerAttempt":6,"AwayRushingTouchdowns":0,"HomeRushingTouchdowns":2,"AwayPassingAttempts":36,"HomePassingAttempts":35,"AwayPassingCompletions":20,"HomePassingCompletions":18,"AwayPassingYards":217,"HomePassingYards":172,"AwayPassingTouchdowns":2,"HomePassingTouchdowns":1,"AwayPassingInterceptions":0,"HomePassingInterceptions":0,"AwayPassingYardsPerAttempt":6,"HomePassingYardsPerAttempt":4.9,"AwayPassingYardsPerCompletion":10.8,"HomePassingYardsPerCompletion":9.6,"AwayCompletionPercentage":55.6,"HomeCompletionPercentage":51.4,"AwayPasserRating":92.01,"HomePasserRating":74.94,"AwayThirdDownAttempts":14,"HomeThirdDownAttempts":16,"AwayThirdDownConversions":2,"HomeThirdDownConversions":8,"AwayThirdDownPercentage":14.3,"HomeThirdDownPercentage":50,"AwayFourthDownAttempts":1,"HomeFourthDownAttempts":1,"AwayFourthDownConversions":0,"HomeFourthDownConversions":1,"AwayFourthDownPercentage":0,"HomeFourthDownPercentage":100,"AwayRedZoneAttempts":3,"HomeRedZoneAttempts":2,"AwayRedZoneConversions":1,"HomeRedZoneConversions":2,"AwayGoalToGoAttempts":0,"HomeGoalToGoAttempts":1,"AwayGoalToGoConversions":0,"HomeGoalToGoConversions":1,"AwayReturnYards":51,"HomeReturnYards":5,"AwayPenalties":7,"HomePenalties":7,"AwayPenaltyYards":59,"HomePenaltyYards":60,"AwayFumbles":2,"HomeFumbles":2,"AwayFumblesLost":0,"HomeFumblesLost":1,"AwayTimesSacked":2,"HomeTimesSacked":1,"AwayTimesSackedYards":17,"HomeTimesSackedYards":2,"AwaySafeties":0,"HomeSafeties":0,"AwayPunts":7,"HomePunts":6,"AwayPuntYards":297,"HomePuntYards":296,"AwayPuntAverage":42.4,"HomePuntAverage":49.3,"AwayGiveaways":0,"HomeGiveaways":1,"AwayTakeaways":1,"HomeTakeaways":0,"AwayTurnoverDifferential":1,"HomeTurnoverDifferential":-1,"AwayKickoffs":5,"HomeKickoffs":5,"AwayKickoffsInEndZone":1,"HomeKickoffsInEndZone":5,"AwayKickoffTouchbacks":1,"HomeKickoffTouchbacks":2,"AwayPuntsHadBlocked":0,"HomePuntsHadBlocked":0,"AwayPuntNetAverage":41.7,"HomePuntNetAverage":40.8,"AwayExtraPointKickingAttempts":2,"HomeExtraPointKickingAttempts":3,"AwayExtraPointKickingConversions":2,"HomeExtraPointKickingConversions":3,"AwayExtraPointsHadBlocked":0,"HomeExtraPointsHadBlocked":0,"AwayExtraPointPassingAttempts":0,"HomeExtraPointPassingAttempts":0,"AwayExtraPointPassingConversions":0,"HomeExtraPointPassingConversions":0,"AwayExtraPointRushingAttempts":0,"HomeExtraPointRushingAttempts":0,"AwayExtraPointRushingConversions":0,"HomeExtraPointRushingConversions":0,"AwayFieldGoalAttempts":2,"HomeFieldGoalAttempts":1,"AwayFieldGoalsMade":2,"HomeFieldGoalsMade":1,"AwayFieldGoalsHadBlocked":0,"HomeFieldGoalsHadBlocked":0,"AwayPuntReturns":4,"HomePuntReturns":2,"AwayPuntReturnYards":51,"HomePuntReturnYards":5,"AwayKickReturns":3,"HomeKickReturns":4,"AwayKickReturnYards":113,"HomeKickReturnYards":83,"AwayInterceptionReturns":0,"HomeInterceptionReturns":0,"AwayInterceptionReturnYards":0,"HomeInterceptionReturnYards":0,"AwaySoloTackles":43,"AwayAssistedTackles":21,"AwayQuarterbackHits":2,"AwayTacklesForLoss":4,"AwaySacks":1,"AwaySackYards":2,"AwayPassesDefended":5,"AwayFumblesForced":1,"AwayFumblesRecovered":1,"AwayFumbleReturnYards":0,"AwayFumbleReturnTouchdowns":0,"AwayInterceptionReturnTouchdowns":0,"AwayBlockedKicks":0,"AwayPuntReturnTouchdowns":0,"AwayPuntReturnLong":28,"AwayKickReturnTouchdowns":0,"AwayKickReturnLong":48,"AwayBlockedKickReturnYards":0,"AwayBlockedKickReturnTouchdowns":0,"AwayFieldGoalReturnYards":0,"AwayFieldGoalReturnTouchdowns":0,"AwayPuntNetYards":292,"HomeSoloTackles":49,"HomeAssistedTackles":16,"HomeQuarterbackHits":4,"HomeTacklesForLoss":6,"HomeSacks":2,"HomeSackYards":17,"HomePassesDefended":3,"HomeFumblesForced":1,"HomeFumblesRecovered":0,"HomeFumbleReturnYards":3,"HomeFumbleReturnTouchdowns":0,"HomeInterceptionReturnTouchdowns":0,"HomeBlockedKicks":0,"HomePuntReturnTouchdowns":0,"HomePuntReturnLong":5,"HomeKickReturnTouchdowns":0,"HomeKickReturnLong":24,"HomeBlockedKickReturnYards":0,"HomeBlockedKickReturnTouchdowns":0,"HomeFieldGoalReturnYards":0,"HomeFieldGoalReturnTouchdowns":0,"HomePuntNetYards":245,"IsGameOver":true,"GameID":64352,"StadiumID":16,"AwayTwoPointConversionReturns":null,"HomeTwoPointConversionReturns":null},"HomeDefense":[],"HomeFantasyDefense":{"ScoringDetails":[],"GameKey":"201411225","SeasonType":1,"Season":2014,"Week":12,"Date":"2014-11-20T20:25:00","Team":"OAK","Opponent":"KC","PointsAllowed":20,"TouchdownsScored":0,"SoloTackles":49,"AssistedTackles":16,"Sacks":2,"SackYards":17,"PassesDefended":3,"FumblesForced":1,"FumblesRecovered":0,"FumbleReturnYards":3,"FumbleReturnTouchdowns":0,"Interceptions":0,"InterceptionReturnYards":0,"InterceptionReturnTouchdowns":0,"BlockedKicks":0,"Safeties":0,"PuntReturns":2,"PuntReturnYards":5,"PuntReturnTouchdowns":0,"PuntReturnLong":5,"KickReturns":4,"KickReturnYards":83,"KickReturnTouchdowns":0,"KickReturnLong":24,"BlockedKickReturnTouchdowns":0,"FieldGoalReturnTouchdowns":0,"FantasyPointsAllowed":70.36,"QuarterbackFantasyPointsAllowed":17.86,"RunningbackFantasyPointsAllowed":20.8,"WideReceiverFantasyPointsAllowed":8,"TightEndFantasyPointsAllowed":15.7,"KickerFantasyPointsAllowed":8,"BlockedKickReturnYards":0,"FieldGoalReturnYards":0,"QuarterbackHits":4,"TacklesForLoss":6,"DefensiveTouchdowns":0,"SpecialTeamsTouchdowns":0,"IsGameOver":true,"FantasyPoints":3,"Stadium":"O.co Coliseum","Temperature":57,"Humidity":88,"WindSpeed":6,"ThirdDownAttempts":14,"ThirdDownConversions":2,"FourthDownAttempts":1,"FourthDownConversions":0,"PointsAllowedByDefenseSpecialTeams":20,"FanDuelSalary":null,"DraftKingsSalary":null,"FantasyDataSalary":null,"VictivSalary":null},"HomeKickPuntReturns":[],"HomeKicking":[],"HomePassing":[],"HomePunting":[],"HomeReceiving":[],"HomeRushing":[],"Score":{"StadiumDetails":{"StadiumID":16,"Name":"O.co Coliseum","City":"Oakland","State":"CA","Country":"USA","Capacity":53200,"PlayingSurface":"Grass"},"GameKey":"201411225","SeasonType":1,"Season":2014,"Week":12,"Date":"2014-11-20T20:25:00","AwayTeam":"KC","HomeTeam":"OAK","AwayScore":20,"HomeScore":24,"Channel":null,"PointSpread":7.5,"OverUnder":42.5,"Quarter":"F","TimeRemaining":null,"Possession":null,"Down":null,"Distance":null,"YardLine":null,"YardLineTerritory":null,"RedZone":null,"AwayScoreQuarter1":0,"AwayScoreQuarter2":3,"AwayScoreQuarter3":7,"AwayScoreQuarter4":10,"AwayScoreOvertime":0,"HomeScoreQuarter1":7,"HomeScoreQuarter2":7,"HomeScoreQuarter3":3,"HomeScoreQuarter4":7,"HomeScoreOvertime":0,"HasStarted":true,"IsInProgress":false,"IsOver":true,"Has1stQuarterStarted":true,"Has2ndQuarterStarted":true,"Has3rdQuarterStarted":true,"Has4thQuarterStarted":true,"IsOvertime":false,"DownAndDistance":null,"QuarterDescription":"Final","StadiumID":16,"LastUpdated":"2014-11-28T05:40:10"},"ScoringDetails":[{"GameKey":"201411225","SeasonType":1,"PlayerID":15071,"Team":"OAK","Season":2014,"Week":12,"ScoringType":"RushingTouchdown","Length":11,"ScoringDetailID":413495,"PlayerGameID":13091709},{"GameKey":"201411225","SeasonType":1,"PlayerID":15071,"Team":"OAK","Season":2014,"Week":12,"ScoringType":"RushingTouchdown","Length":90,"ScoringDetailID":413496,"PlayerGameID":13091709},{"GameKey":"201411225","SeasonType":1,"PlayerID":16301,"Team":"KC","Season":2014,"Week":12,"ScoringType":"FieldGoalMade","Length":24,"ScoringDetailID":413497,"PlayerGameID":13091731},{"GameKey":"201411225","SeasonType":1,"PlayerID":3253,"Team":"OAK","Season":2014,"Week":12,"ScoringType":"FieldGoalMade","Length":40,"ScoringDetailID":413498,"PlayerGameID":13091713},{"GameKey":"201411225","SeasonType":1,"PlayerID":1545,"Team":"KC","Season":2014,"Week":12,"ScoringType":"ReceivingTouchdown","Length":19,"ScoringDetailID":413499,"PlayerGameID":13091728},{"GameKey":"201411225","SeasonType":1,"PlayerID":6739,"Team":"KC","Season":2014,"Week":12,"ScoringType":"PassingTouchdown","Length":19,"ScoringDetailID":413500,"PlayerGameID":13091692},{"GameKey":"201411225","SeasonType":1,"PlayerID":7969,"Team":"KC","Season":2014,"Week":12,"ScoringType":"ReceivingTouchdown","Length":30,"ScoringDetailID":413501,"PlayerGameID":13091690},{"GameKey":"201411225","SeasonType":1,"PlayerID":6739,"Team":"KC","Season":2014,"Week":12,"ScoringType":"PassingTouchdown","Length":30,"ScoringDetailID":413502,"PlayerGameID":13091692},{"GameKey":"201411225","SeasonType":1,"PlayerID":16301,"Team":"KC","Season":2014,"Week":12,"ScoringType":"FieldGoalMade","Length":25,"ScoringDetailID":413503,"PlayerGameID":13091731},{"GameKey":"201411225","SeasonType":1,"PlayerID":6302,"Team":"OAK","Season":2014,"Week":12,"ScoringType":"ReceivingTouchdown","Length":9,"ScoringDetailID":413504,"PlayerGameID":13091703},{"GameKey":"201411225","SeasonType":1,"PlayerID":16311,"Team":"OAK","Season":2014,"Week":12,"ScoringType":"PassingTouchdown","Length":9,"ScoringDetailID":413505,"PlayerGameID":13091697}],"ScoringPlays":[{"GameKey":"201411225","SeasonType":1,"ScoringPlayID":138346,"Season":2014,"Week":12,"AwayTeam":"KC","HomeTeam":"OAK","Date":"2014-11-20T20:25:00","Sequence":1,"Team":"OAK","Quarter":"1","TimeRemaining":"6:33","PlayDescription":"Latavius Murray 11 Yd Run (Sebastian Janikowski Kick)","AwayScore":0,"HomeScore":7},{"GameKey":"201411225","SeasonType":1,"ScoringPlayID":138348,"Season":2014,"Week":12,"AwayTeam":"KC","HomeTeam":"OAK","Date":"2014-11-20T20:25:00","Sequence":2,"Team":"OAK","Quarter":"2","TimeRemaining":"12:28","PlayDescription":"Latavius Murray 90 Yd Run (Sebastian Janikowski Kick)","AwayScore":0,"HomeScore":14},{"GameKey":"201411225","SeasonType":1,"ScoringPlayID":138349,"Season":2014,"Week":12,"AwayTeam":"KC","HomeTeam":"OAK","Date":"2014-11-20T20:25:00","Sequence":3,"Team":"KC","Quarter":"2","TimeRemaining":"7:19","PlayDescription":"Cairo Santos 24 Yd Field Goal","AwayScore":3,"HomeScore":14},{"GameKey":"201411225","SeasonType":1,"ScoringPlayID":138350,"Season":2014,"Week":12,"AwayTeam":"KC","HomeTeam":"OAK","Date":"2014-11-20T20:25:00","Sequence":4,"Team":"OAK","Quarter":"3","TimeRemaining":"5:05","PlayDescription":"Sebastian Janikowski 40 Yd Field Goal","AwayScore":3,"HomeScore":17},{"GameKey":"201411225","SeasonType":1,"ScoringPlayID":138351,"Season":2014,"Week":12,"AwayTeam":"KC","HomeTeam":"OAK","Date":"2014-11-20T20:25:00","Sequence":5,"Team":"KC","Quarter":"3","TimeRemaining":"1:52","PlayDescription":"Anthony Fasano 19 Yd pass from Alex Smith (Cairo Santos Kick)","AwayScore":10,"HomeScore":17},{"GameKey":"201411225","SeasonType":1,"ScoringPlayID":138352,"Season":2014,"Week":12,"AwayTeam":"KC","HomeTeam":"OAK","Date":"2014-11-20T20:25:00","Sequence":6,"Team":"KC","Quarter":"4","TimeRemaining":"12:20","PlayDescription":"Jamaal Charles 30 Yd pass from Alex Smith (Cairo Santos Kick)","AwayScore":17,"HomeScore":17},{"GameKey":"201411225","SeasonType":1,"ScoringPlayID":138353,"Season":2014,"Week":12,"AwayTeam":"KC","HomeTeam":"OAK","Date":"2014-11-20T20:25:00","Sequence":7,"Team":"KC","Quarter":"4","TimeRemaining":"9:03","PlayDescription":"Cairo Santos 25 Yd Field Goal","AwayScore":20,"HomeScore":17},{"GameKey":"201411225","SeasonType":1,"ScoringPlayID":138355,"Season":2014,"Week":12,"AwayTeam":"KC","HomeTeam":"OAK","Date":"2014-11-20T20:25:00","Sequence":8,"Team":"OAK","Quarter":"4","TimeRemaining":"1:42","PlayDescription":"James Jones 9 Yd pass from Derek Carr (Sebastian Janikowski Kick)","AwayScore":20,"HomeScore":24}]},{"AwayDefense":[],"AwayFantasyDefense":{"ScoringDetails":[],"GameKey":"201411206","SeasonType":1,"Season":2014,"Week":12,"Date":"2014-11-23T13:00:00","Team":"TB","Opponent":"CHI","PointsAllowed":21,"TouchdownsScored":0,"SoloTackles":51,"AssistedTackles":4,"Sacks":3,"SackYards":18,"PassesDefended":3,"FumblesForced":1,"FumblesRecovered":1,"FumbleReturnYards":3,"FumbleReturnTouchdowns":0,"Interceptions":0,"InterceptionReturnYards":0,"InterceptionReturnTouchdowns":0,"BlockedKicks":0,"Safeties":0,"PuntReturns":2,"PuntReturnYards":12,"PuntReturnTouchdowns":0,"PuntReturnLong":12,"KickReturns":3,"KickReturnYards":42,"KickReturnTouchdowns":0,"KickReturnLong":21,"BlockedKickReturnTouchdowns":0,"FieldGoalReturnTouchdowns":0,"FantasyPointsAllowed":50.4,"QuarterbackFantasyPointsAllowed":7.2,"RunningbackFantasyPointsAllowed":23.5,"WideReceiverFantasyPointsAllowed":12.4,"TightEndFantasyPointsAllowed":4.3,"KickerFantasyPointsAllowed":3,"BlockedKickReturnYards":0,"FieldGoalReturnYards":0,"QuarterbackHits":2,"TacklesForLoss":5,"DefensiveTouchdowns":0,"SpecialTeamsTouchdowns":0,"IsGameOver":true,"FantasyPoints":5,"Stadium":"Soldier Field","Temperature":54,"Humidity":75,"WindSpeed":12,"ThirdDownAttempts":16,"ThirdDownConversions":4,"FourthDownAttempts":0,"FourthDownConversions":0,"PointsAllowedByDefenseSpecialTeams":21,"FanDuelSalary":null,"DraftKingsSalary":null,"FantasyDataSalary":null,"VictivSalary":null},"AwayKickPuntReturns":[],"AwayKicking":[],"AwayPassing":[],"AwayPunting":[],"AwayReceiving":[],"AwayRushing":[],"Game":{"StadiumDetails":{"StadiumID":20,"Name":"Soldier Field","City":"Chicago","State":"IL","Country":"USA","Capacity":61500,"PlayingSurface":"Grass"},"GameKey":"201411206","Date":"2014-11-23T13:00:00","SeasonType":1,"Season":2014,"Week":12,"Stadium":"Soldier Field","PlayingSurface":"Grass","Temperature":54,"Humidity":75,"WindSpeed":12,"AwayTeam":"TB","HomeTeam":"CHI","AwayScore":13,"HomeScore":21,"TotalScore":34,"OverUnder":46,"PointSpread":-4,"AwayScoreQuarter1":0,"AwayScoreQuarter2":10,"AwayScoreQuarter3":0,"AwayScoreQuarter4":3,"AwayScoreOvertime":0,"HomeScoreQuarter1":0,"HomeScoreQuarter2":0,"HomeScoreQuarter3":21,"HomeScoreQuarter4":0,"HomeScoreOvertime":0,"AwayTimeOfPossession":"30:10","HomeTimeOfPossession":"29:50","AwayFirstDowns":17,"HomeFirstDowns":12,"AwayFirstDownsByRushing":3,"HomeFirstDownsByRushing":4,"AwayFirstDownsByPassing":14,"HomeFirstDownsByPassing":6,"AwayFirstDownsByPenalty":0,"HomeFirstDownsByPenalty":2,"AwayOffensivePlays":75,"HomeOffensivePlays":56,"AwayOffensiveYards":367,"HomeOffensiveYards":204,"AwayOffensiveYardsPerPlay":4.9,"HomeOffensiveYardsPerPlay":3.6,"AwayTouchdowns":1,"HomeTouchdowns":3,"AwayRushingAttempts":22,"HomeRushingAttempts":26,"AwayRushingYards":66,"HomeRushingYards":92,"AwayRushingYardsPerAttempt":3,"HomeRushingYardsPerAttempt":3.5,"AwayRushingTouchdowns":0,"HomeRushingTouchdowns":2,"AwayPassingAttempts":48,"HomePassingAttempts":27,"AwayPassingCompletions":25,"HomePassingCompletions":17,"AwayPassingYards":301,"HomePassingYards":112,"AwayPassingTouchdowns":1,"HomePassingTouchdowns":1,"AwayPassingInterceptions":2,"HomePassingInterceptions":0,"AwayPassingYardsPerAttempt":6.3,"HomePassingYardsPerAttempt":4.1,"AwayPassingYardsPerCompletion":12,"HomePassingYardsPerCompletion":6.6,"AwayCompletionPercentage":52.1,"HomeCompletionPercentage":63,"AwayPasserRating":61.2,"HomePasserRating":84.18,"AwayThirdDownAttempts":17,"HomeThirdDownAttempts":16,"AwayThirdDownConversions":7,"HomeThirdDownConversions":4,"AwayThirdDownPercentage":41.2,"HomeThirdDownPercentage":25,"AwayFourthDownAttempts":1,"HomeFourthDownAttempts":0,"AwayFourthDownConversions":0,"HomeFourthDownConversions":0,"AwayFourthDownPercentage":0,"HomeFourthDownPercentage":0,"AwayRedZoneAttempts":3,"HomeRedZoneAttempts":3,"AwayRedZoneConversions":1,"HomeRedZoneConversions":3,"AwayGoalToGoAttempts":1,"HomeGoalToGoAttempts":2,"AwayGoalToGoConversions":0,"HomeGoalToGoConversions":2,"AwayReturnYards":12,"HomeReturnYards":6,"AwayPenalties":9,"HomePenalties":6,"AwayPenaltyYards":87,"HomePenaltyYards":45,"AwayFumbles":4,"HomeFumbles":1,"AwayFumblesLost":2,"HomeFumblesLost":1,"AwayTimesSacked":5,"HomeTimesSacked":3,"AwayTimesSackedYards":40,"HomeTimesSackedYards":18,"AwaySafeties":0,"HomeSafeties":0,"AwayPunts":6,"HomePunts":9,"AwayPuntYards":243,"HomePuntYards":367,"AwayPuntAverage":40.5,"HomePuntAverage":40.8,"AwayGiveaways":4,"HomeGiveaways":1,"AwayTakeaways":1,"HomeTakeaways":4,"AwayTurnoverDifferential":-3,"HomeTurnoverDifferential":3,"AwayKickoffs":4,"HomeKickoffs":4,"AwayKickoffsInEndZone":1,"HomeKickoffsInEndZone":3,"AwayKickoffTouchbacks":1,"HomeKickoffTouchbacks":1,"AwayPuntsHadBlocked":0,"HomePuntsHadBlocked":0,"AwayPuntNetAverage":37.2,"HomePuntNetAverage":39.4,"AwayExtraPointKickingAttempts":1,"HomeExtraPointKickingAttempts":3,"AwayExtraPointKickingConversions":1,"HomeExtraPointKickingConversions":3,"AwayExtraPointsHadBlocked":0,"HomeExtraPointsHadBlocked":0,"AwayExtraPointPassingAttempts":0,"HomeExtraPointPassingAttempts":0,"AwayExtraPointPassingConversions":0,"HomeExtraPointPassingConversions":0,"AwayExtraPointRushingAttempts":0,"HomeExtraPointRushingAttempts":0,"AwayExtraPointRushingConversions":0,"HomeExtraPointRushingConversions":0,"AwayFieldGoalAttempts":2,"HomeFieldGoalAttempts":1,"AwayFieldGoalsMade":2,"HomeFieldGoalsMade":0,"AwayFieldGoalsHadBlocked":0,"HomeFieldGoalsHadBlocked":0,"AwayPuntReturns":2,"HomePuntReturns":3,"AwayPuntReturnYards":12,"HomePuntReturnYards":0,"AwayKickReturns":3,"HomeKickReturns":3,"AwayKickReturnYards":42,"HomeKickReturnYards":43,"AwayInterceptionReturns":0,"HomeInterceptionReturns":2,"AwayInterceptionReturnYards":0,"HomeInterceptionReturnYards":6,"AwaySoloTackles":51,"AwayAssistedTackles":4,"AwayQuarterbackHits":2,"AwayTacklesForLoss":5,"AwaySacks":3,"AwaySackYards":18,"AwayPassesDefended":3,"AwayFumblesForced":1,"AwayFumblesRecovered":1,"AwayFumbleReturnYards":3,"AwayFumbleReturnTouchdowns":0,"AwayInterceptionReturnTouchdowns":0,"AwayBlockedKicks":0,"AwayPuntReturnTouchdowns":0,"AwayPuntReturnLong":12,"AwayKickReturnTouchdowns":0,"AwayKickReturnLong":21,"AwayBlockedKickReturnYards":0,"AwayBlockedKickReturnTouchdowns":0,"AwayFieldGoalReturnYards":0,"AwayFieldGoalReturnTouchdowns":0,"AwayPuntNetYards":223,"HomeSoloTackles":51,"HomeAssistedTackles":14,"HomeQuarterbackHits":13,"HomeTacklesForLoss":5,"HomeSacks":5,"HomeSackYards":40,"HomePassesDefended":6,"HomeFumblesForced":3,"HomeFumblesRecovered":2,"HomeFumbleReturnYards":19,"HomeFumbleReturnTouchdowns":0,"HomeInterceptionReturnTouchdowns":0,"HomeBlockedKicks":0,"HomePuntReturnTouchdowns":0,"HomePuntReturnLong":1,"HomeKickReturnTouchdowns":0,"HomeKickReturnLong":30,"HomeBlockedKickReturnYards":0,"HomeBlockedKickReturnTouchdowns":0,"HomeFieldGoalReturnYards":0,"HomeFieldGoalReturnTouchdowns":0,"HomePuntNetYards":355,"IsGameOver":true,"GameID":64353,"StadiumID":20,"AwayTwoPointConversionReturns":null,"HomeTwoPointConversionReturns":null},"HomeDefense":[],"HomeFantasyDefense":{"ScoringDetails":[],"GameKey":"201411206","SeasonType":1,"Season":2014,"Week":12,"Date":"2014-11-23T13:00:00","Team":"CHI","Opponent":"TB","PointsAllowed":13,"TouchdownsScored":0,"SoloTackles":51,"AssistedTackles":14,"Sacks":5,"SackYards":40,"PassesDefended":6,"FumblesForced":3,"FumblesRecovered":2,"FumbleReturnYards":19,"FumbleReturnTouchdowns":0,"Interceptions":2,"InterceptionReturnYards":6,"InterceptionReturnTouchdowns":0,"BlockedKicks":0,"Safeties":0,"PuntReturns":3,"PuntReturnYards":0,"PuntReturnTouchdowns":0,"PuntReturnLong":1,"KickReturns":3,"KickReturnYards":43,"KickReturnTouchdowns":0,"KickReturnLong":30,"BlockedKickReturnTouchdowns":0,"FieldGoalReturnTouchdowns":0,"FantasyPointsAllowed":63.34,"QuarterbackFantasyPointsAllowed":12.84,"RunningbackFantasyPointsAllowed":8.7,"WideReceiverFantasyPointsAllowed":31.7,"TightEndFantasyPointsAllowed":3.1,"KickerFantasyPointsAllowed":7,"BlockedKickReturnYards":0,"FieldGoalReturnYards":0,"QuarterbackHits":13,"TacklesForLoss":5,"DefensiveTouchdowns":0,"SpecialTeamsTouchdowns":0,"IsGameOver":true,"FantasyPoints":17,"Stadium":"Soldier Field","Temperature":54,"Humidity":75,"WindSpeed":12,"ThirdDownAttempts":17,"ThirdDownConversions":7,"FourthDownAttempts":1,"FourthDownConversions":0,"PointsAllowedByDefenseSpecialTeams":13,"FanDuelSalary":null,"DraftKingsSalary":null,"FantasyDataSalary":null,"VictivSalary":null},"HomeKickPuntReturns":[],"HomeKicking":[],"HomePassing":[],"HomePunting":[],"HomeReceiving":[],"HomeRushing":[],"Score":{"StadiumDetails":{"StadiumID":20,"Name":"Soldier Field","City":"Chicago","State":"IL","Country":"USA","Capacity":61500,"PlayingSurface":"Grass"},"GameKey":"201411206","SeasonType":1,"Season":2014,"Week":12,"Date":"2014-11-23T13:00:00","AwayTeam":"TB","HomeTeam":"CHI","AwayScore":13,"HomeScore":21,"Channel":null,"PointSpread":-4,"OverUnder":46,"Quarter":"F","TimeRemaining":null,"Possession":null,"Down":null,"Distance":null,"YardLine":null,"YardLineTerritory":null,"RedZone":null,"AwayScoreQuarter1":0,"AwayScoreQuarter2":10,"AwayScoreQuarter3":0,"AwayScoreQuarter4":3,"AwayScoreOvertime":0,"HomeScoreQuarter1":0,"HomeScoreQuarter2":0,"HomeScoreQuarter3":21,"HomeScoreQuarter4":0,"HomeScoreOvertime":0,"HasStarted":true,"IsInProgress":false,"IsOver":true,"Has1stQuarterStarted":true,"Has2ndQuarterStarted":true,"Has3rdQuarterStarted":true,"Has4thQuarterStarted":true,"IsOvertime":false,"DownAndDistance":null,"QuarterDescription":"Final","StadiumID":20,"LastUpdated":"2014-11-28T05:40:55"},"ScoringDetails":[{"GameKey":"201411206","SeasonType":1,"PlayerID":1410,"Team":"CHI","Season":2014,"Week":12,"ScoringType":"FieldGoalMissed","Length":54,"ScoringDetailID":413528,"PlayerGameID":13149448},{"GameKey":"201411206","SeasonType":1,"PlayerID":16597,"Team":"TB","Season":2014,"Week":12,"ScoringType":"ReceivingTouchdown","Length":19,"ScoringDetailID":413529,"PlayerGameID":13149217},{"GameKey":"201411206","SeasonType":1,"PlayerID":5282,"Team":"TB","Season":2014,"Week":12,"ScoringType":"PassingTouchdown","Length":19,"ScoringDetailID":413530,"PlayerGameID":13149182},{"GameKey":"201411206","SeasonType":1,"PlayerID":16603,"Team":"TB","Season":2014,"Week":12,"ScoringType":"FieldGoalMade","Length":32,"ScoringDetailID":413531,"PlayerGameID":13149378},{"GameKey":"201411206","SeasonType":1,"PlayerID":14187,"Team":"CHI","Season":2014,"Week":12,"ScoringType":"ReceivingTouchdown","Length":2,"ScoringDetailID":413532,"PlayerGameID":13149135},{"GameKey":"201411206","SeasonType":1,"PlayerID":8972,"Team":"CHI","Season":2014,"Week":12,"ScoringType":"PassingTouchdown","Length":2,"ScoringDetailID":413533,"PlayerGameID":13149134},{"GameKey":"201411206","SeasonType":1,"PlayerID":2699,"Team":"CHI","Season":2014,"Week":12,"ScoringType":"RushingTouchdown","Length":13,"ScoringDetailID":413534,"PlayerGameID":13149162},{"GameKey":"201411206","SeasonType":1,"PlayerID":2699,"Team":"CHI","Season":2014,"Week":12,"ScoringType":"RushingTouchdown","Length":1,"ScoringDetailID":413535,"PlayerGameID":13149162},{"GameKey":"201411206","SeasonType":1,"PlayerID":16603,"Team":"TB","Season":2014,"Week":12,"ScoringType":"FieldGoalMade","Length":39,"ScoringDetailID":413536,"PlayerGameID":13149378}],"ScoringPlays":[{"GameKey":"201411206","SeasonType":1,"ScoringPlayID":138396,"Season":2014,"Week":12,"AwayTeam":"TB","HomeTeam":"CHI","Date":"2014-11-23T13:00:00","Sequence":2,"Team":"TB","Quarter":"2","TimeRemaining":"0:04","PlayDescription":"Patrick Murray 32 Yd Field Goal","AwayScore":10,"HomeScore":0},{"GameKey":"201411206","SeasonType":1,"ScoringPlayID":138405,"Season":2014,"Week":12,"AwayTeam":"TB","HomeTeam":"CHI","Date":"2014-11-23T13:00:00","Sequence":3,"Team":"CHI","Quarter":"3","TimeRemaining":"10:33","PlayDescription":"Alshon Jeffery 2 Yd pass from Jay Cutler (Robbie Gould Kick)","AwayScore":10,"HomeScore":7},{"GameKey":"201411206","SeasonType":1,"ScoringPlayID":138417,"Season":2014,"Week":12,"AwayTeam":"TB","HomeTeam":"CHI","Date":"2014-11-23T13:00:00","Sequence":4,"Team":"CHI","Quarter":"3","TimeRemaining":"4:51","PlayDescription":"Matt Forte 13 Yd Run (Robbie Gould Kick)","AwayScore":10,"HomeScore":14},{"GameKey":"201411206","SeasonType":1,"ScoringPlayID":138419,"Season":2014,"Week":12,"AwayTeam":"TB","HomeTeam":"CHI","Date":"2014-11-23T13:00:00","Sequence":5,"Team":"CHI","Quarter":"3","TimeRemaining":"3:02","PlayDescription":"Matt Forte 1 Yd Run (Robbie Gould Kick)","AwayScore":10,"HomeScore":21},{"GameKey":"201411206","SeasonType":1,"ScoringPlayID":138433,"Season":2014,"Week":12,"AwayTeam":"TB","HomeTeam":"CHI","Date":"2014-11-23T13:00:00","Sequence":6,"Team":"TB","Quarter":"4","TimeRemaining":"4:56","PlayDescription":"Patrick Murray 39 Yd Field Goal","AwayScore":13,"HomeScore":21},{"GameKey":"201411206","SeasonType":1,"ScoringPlayID":138513,"Season":2014,"Week":12,"AwayTeam":"TB","HomeTeam":"CHI","Date":"2014-11-23T13:00:00","Sequence":1,"Team":"TB","Quarter":"2","TimeRemaining":"13:24","PlayDescription":"Mike Evans 19 Yd pass from Josh McCown (Patrick Murray Kick)","AwayScore":7,"HomeScore":0}]}]
|
@@ -0,0 +1 @@
|
|
1
|
+
[{"AwayDefense":[{"PlayerGameID":5915351,"PlayerID":13484,"ShortName":"K.Wright","Name":"KJ Wright","Team":"SEA","Number":50,"Position":"OLB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":10.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":8,"Tackles":10,"TacklesForLoss":null},{"PlayerGameID":5915349,"PlayerID":4345,"ShortName":"L.Hill","Name":"Leroy Hill","Team":"SEA","Number":56,"Position":"OLB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":8,"Updated":null,"AssistedTackles":2,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":7,"Tackles":9,"TacklesForLoss":null},{"PlayerGameID":5915350,"PlayerID":14534,"ShortName":"B.Wagner","Name":"Bobby Wagner","Team":"SEA","Number":54,"Position":"ILB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":7.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":7,"Tackles":8,"TacklesForLoss":null},{"PlayerGameID":5915352,"PlayerID":13479,"ShortName":"R.Sherman","Name":"Richard Sherman","Team":"SEA","Number":25,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":8,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":1,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":1,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":4,"Tackles":4,"TacklesForLoss":null},{"PlayerGameID":5915354,"PlayerID":11598,"ShortName":"K.Chancellor","Name":"Kam Chancellor","Team":"SEA","Number":31,"Position":"SS","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":4,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":4,"Tackles":4,"TacklesForLoss":null},{"PlayerGameID":5915355,"PlayerID":11612,"ShortName":"E.Thomas","Name":"Earl Thomas","Team":"SEA","Number":29,"Position":"FS","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":4,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":4,"Tackles":4,"TacklesForLoss":null},{"PlayerGameID":5915345,"PlayerID":678,"ShortName":"R.Bryant","Name":"Red Bryant","Team":"SEA","Number":79,"Position":"DE","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":3,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":2,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915348,"PlayerID":12116,"ShortName":"C.Clemons","Name":"Chris Clemons","Team":"SEA","Number":91,"Position":"DE","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":2,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":2,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915353,"PlayerID":13687,"ShortName":"B.Browner","Name":"Brandon Browner","Team":"SEA","Number":39,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":6,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":4,"Interceptions":1,"PassesDefended":1,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":2,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915371,"PlayerID":12460,"ShortName":"C.McDonald","Name":"Clinton McDonald","Team":"SEA","Number":69,"Position":"DT","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":2,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":2,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915347,"PlayerID":292,"ShortName":"B.Mebane","Name":"Brandon Mebane","Team":"SEA","Number":92,"Position":"DT","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":1,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915360,"PlayerID":8116,"ShortName":"M.Trufant","Name":"Marcus Trufant","Team":"SEA","Number":23,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":1,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915363,"PlayerID":11589,"ShortName":"C.Maragos","Name":"Chris Maragos","Team":"SEA","Number":42,"Position":"FS","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":0,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":0,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915366,"PlayerID":13480,"ShortName":"M.Smith","Name":"Malcolm Smith","Team":"SEA","Number":53,"Position":"LB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":0,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":0,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915367,"PlayerID":5640,"ShortName":"H.Farwell","Name":"Heath Farwell","Team":"SEA","Number":55,"Position":"LB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":0,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":0,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915376,"PlayerID":322,"ShortName":"J.Jones","Name":"Jason Jones","Team":"SEA","Number":90,"Position":"DE","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":5.2,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":2,"Sacks":1,"SoloTackles":1,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915377,"PlayerID":14527,"ShortName":"G.Scruggs","Name":"Greg Scruggs","Team":"SEA","Number":98,"Position":"DE","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":5,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":1,"SoloTackles":1,"Tackles":1,"TacklesForLoss":null}],"AwayFantasyDefense":{"ScoringDetails":[],"GameKey":"201210731","SeasonType":1,"Season":2012,"Week":7,"Date":"2012-10-18T20:20:00","Team":"SEA","Opponent":"SF","PointsAllowed":13,"TouchdownsScored":0,"SoloTackles":46,"AssistedTackles":4,"Sacks":2,"SackYards":2,"PassesDefended":2,"FumblesForced":1,"FumblesRecovered":0,"FumbleReturnYards":0,"FumbleReturnTouchdowns":0,"Interceptions":1,"InterceptionReturnYards":4,"InterceptionReturnTouchdowns":0,"BlockedKicks":0,"Safeties":0,"PuntReturns":2,"PuntReturnYards":5,"PuntReturnTouchdowns":0,"PuntReturnLong":5,"KickReturns":0,"KickReturnYards":0,"KickReturnTouchdowns":0,"KickReturnLong":0,"BlockedKickReturnTouchdowns":0,"FieldGoalReturnTouchdowns":0,"FantasyPointsAllowed":52.1,"QuarterbackFantasyPointsAllowed":8.6,"RunningbackFantasyPointsAllowed":22.7,"WideReceiverFantasyPointsAllowed":6.6,"TightEndFantasyPointsAllowed":7.2,"KickerFantasyPointsAllowed":7,"BlockedKickReturnYards":0,"FieldGoalReturnYards":0,"QuarterbackHits":3,"TacklesForLoss":4,"DefensiveTouchdowns":0,"SpecialTeamsTouchdowns":0,"IsGameOver":true,"FantasyPoints":8,"Stadium":"Candlestick Park","Temperature":80,"Humidity":30,"WindSpeed":15,"ThirdDownAttempts":11,"ThirdDownConversions":3,"FourthDownAttempts":0,"FourthDownConversions":0,"PointsAllowedByDefenseSpecialTeams":13,"FanDuelSalary":null,"DraftKingsSalary":null,"FantasyDataSalary":null,"VictivSalary":null},"AwayKickPuntReturns":[{"PlayerGameID":5915362,"PlayerID":12136,"ShortName":"L.Washington","Name":"Leon Washington","Team":"SEA","Number":33,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":0.4,"Updated":null,"KickReturnLong":0,"KickReturnTouchdowns":0,"KickReturnYards":0,"KickReturnYardsPerAttempt":0,"KickReturns":0,"PuntReturnLong":5,"PuntReturnTouchdowns":0,"PuntReturnYards":5,"PuntReturnYardsPerAttempt":2.5,"PuntReturns":2}],"AwayKicking":[{"PlayerGameID":5915281,"PlayerID":12594,"ShortName":"S.Hauschka","Name":"Steven Hauschka","Team":"SEA","Number":4,"Position":"K","PositionCategory":"ST","FantasyPosition":"K","FantasyPoints":6,"Updated":null,"ExtraPointsAttempted":0,"ExtraPointsMade":0,"FieldGoalPercentage":66.7,"FieldGoalsAttempted":3,"FieldGoalsLongestMade":52,"FieldGoalsMade":2}],"AwayPassing":[{"PlayerGameID":5915342,"PlayerID":14536,"ShortName":"R.Wilson","Name":"Russell Wilson","Team":"SEA","Number":3,"Position":"QB","PositionCategory":"OFF","FantasyPosition":"QB","FantasyPoints":3.88,"Updated":null,"PassingAttempts":23,"PassingCompletionPercentage":39.1,"PassingCompletions":9,"PassingInterceptions":1,"PassingLong":36,"PassingRating":38.68,"PassingSackYards":7,"PassingSacks":2,"PassingTouchdowns":0,"PassingYards":122,"PassingYardsPerAttempt":5.3,"PassingYardsPerCompletion":13.6,"TwoPointConversionPasses":0}],"AwayPunting":[{"PlayerGameID":5915356,"PlayerID":3764,"ShortName":"J.Ryan","Name":"Jon Ryan","Team":"SEA","Number":9,"Position":"P","PositionCategory":"ST","FantasyPosition":"P","FantasyPoints":0,"Updated":null,"PuntAverage":48.5,"PuntInside20":1,"PuntTouchbacks":0,"PuntYards":194,"Punts":4}],"AwayReceiving":[{"PlayerGameID":5915374,"PlayerID":6138,"ShortName":"B.Obomanu","Name":"Ben Obomanu","Team":"SEA","Number":87,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":5,"Updated":null,"FumblesLost":0,"ReceivingLong":36,"ReceivingTargets":4,"ReceivingTouchdowns":0,"ReceivingYards":50,"ReceivingYardsPerReception":16.7,"ReceivingYardsPerTarget":12.5,"ReceptionPercentage":75,"Receptions":3,"TwoPointConversionReceptions":0},{"PlayerGameID":5915334,"PlayerID":459,"ShortName":"S.Rice","Name":"Sidney Rice","Team":"SEA","Number":18,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":3.2,"Updated":null,"FumblesLost":0,"ReceivingLong":27,"ReceivingTargets":4,"ReceivingTouchdowns":0,"ReceivingYards":32,"ReceivingYardsPerReception":16,"ReceivingYardsPerTarget":8,"ReceptionPercentage":50,"Receptions":2,"TwoPointConversionReceptions":0},{"PlayerGameID":5915375,"PlayerID":13460,"ShortName":"D.Baldwin","Name":"Doug Baldwin","Team":"SEA","Number":89,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":1.5,"Updated":null,"FumblesLost":0,"ReceivingLong":8,"ReceivingTargets":2,"ReceivingTouchdowns":0,"ReceivingYards":15,"ReceivingYardsPerReception":7.5,"ReceivingYardsPerTarget":7.5,"ReceptionPercentage":100,"Receptions":2,"TwoPointConversionReceptions":0},{"PlayerGameID":5915344,"PlayerID":12386,"ShortName":"M.Lynch","Name":"Marshawn Lynch","Team":"SEA","Number":24,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":11.6,"Updated":null,"FumblesLost":0,"ReceivingLong":13,"ReceivingTargets":2,"ReceivingTouchdowns":0,"ReceivingYards":13,"ReceivingYardsPerReception":13,"ReceivingYardsPerTarget":6.5,"ReceptionPercentage":50,"Receptions":1,"TwoPointConversionReceptions":0},{"PlayerGameID":5915343,"PlayerID":12273,"ShortName":"M.Robinson","Name":"Michael Robinson","Team":"SEA","Number":26,"Position":"FB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":1.4,"Updated":null,"FumblesLost":0,"ReceivingLong":12,"ReceivingTargets":1,"ReceivingTouchdowns":0,"ReceivingYards":12,"ReceivingYardsPerReception":12,"ReceivingYardsPerTarget":12,"ReceptionPercentage":100,"Receptions":1,"TwoPointConversionReceptions":0},{"PlayerGameID":5915340,"PlayerID":4484,"ShortName":"Z.Miller","Name":"Zach Miller","Team":"SEA","Number":86,"Position":"TE","PositionCategory":"OFF","FantasyPosition":"TE","FantasyPoints":0,"Updated":null,"FumblesLost":0,"ReceivingLong":0,"ReceivingTargets":2,"ReceivingTouchdowns":0,"ReceivingYards":0,"ReceivingYardsPerReception":0,"ReceivingYardsPerTarget":0,"ReceptionPercentage":0,"Receptions":0,"TwoPointConversionReceptions":0},{"PlayerGameID":5915341,"PlayerID":11611,"ShortName":"G.Tate","Name":"Golden Tate","Team":"SEA","Number":81,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":0,"Updated":null,"FumblesLost":0,"ReceivingLong":0,"ReceivingTargets":3,"ReceivingTouchdowns":0,"ReceivingYards":0,"ReceivingYardsPerReception":0,"ReceivingYardsPerTarget":0,"ReceptionPercentage":0,"Receptions":0,"TwoPointConversionReceptions":0},{"PlayerGameID":5915357,"PlayerID":3816,"ShortName":"B.Edwards","Name":"Braylon Edwards","Team":"SEA","Number":17,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":0,"Updated":null,"FumblesLost":0,"ReceivingLong":0,"ReceivingTargets":2,"ReceivingTouchdowns":0,"ReceivingYards":0,"ReceivingYardsPerReception":0,"ReceivingYardsPerTarget":0,"ReceptionPercentage":0,"Receptions":0,"TwoPointConversionReceptions":0},{"PlayerGameID":5915359,"PlayerID":14533,"ShortName":"R.Turbin","Name":"Robert Turbin","Team":"SEA","Number":22,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":1.7,"Updated":null,"FumblesLost":0,"ReceivingLong":0,"ReceivingTargets":1,"ReceivingTouchdowns":0,"ReceivingYards":0,"ReceivingYardsPerReception":0,"ReceivingYardsPerTarget":0,"ReceptionPercentage":0,"Receptions":0,"TwoPointConversionReceptions":0},{"PlayerGameID":5915372,"PlayerID":10290,"ShortName":"E.Moore","Name":"Evan Moore","Team":"SEA","Number":82,"Position":"TE","PositionCategory":"OFF","FantasyPosition":"TE","FantasyPoints":0,"Updated":null,"FumblesLost":0,"ReceivingLong":0,"ReceivingTargets":1,"ReceivingTouchdowns":0,"ReceivingYards":0,"ReceivingYardsPerReception":0,"ReceivingYardsPerTarget":0,"ReceptionPercentage":0,"Receptions":0,"TwoPointConversionReceptions":0},{"PlayerGameID":5915373,"PlayerID":11603,"ShortName":"A.McCoy","Name":"Anthony McCoy","Team":"SEA","Number":85,"Position":"TE","PositionCategory":"OFF","FantasyPosition":"TE","FantasyPoints":0,"Updated":null,"FumblesLost":0,"ReceivingLong":0,"ReceivingTargets":1,"ReceivingTouchdowns":0,"ReceivingYards":0,"ReceivingYardsPerReception":0,"ReceivingYardsPerTarget":0,"ReceptionPercentage":0,"Receptions":0,"TwoPointConversionReceptions":0}],"AwayRushing":[{"PlayerGameID":5915344,"PlayerID":12386,"ShortName":"M.Lynch","Name":"Marshawn Lynch","Team":"SEA","Number":24,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":11.6,"Updated":null,"FumblesLost":0,"RushingAttempts":19,"RushingLong":15,"RushingTouchdowns":0,"RushingYards":103,"RushingYardsPerAttempt":5.4,"TwoPointConversionRuns":0},{"PlayerGameID":5915359,"PlayerID":14533,"ShortName":"R.Turbin","Name":"Robert Turbin","Team":"SEA","Number":22,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":1.7,"Updated":null,"FumblesLost":0,"RushingAttempts":4,"RushingLong":15,"RushingTouchdowns":0,"RushingYards":17,"RushingYardsPerAttempt":4.2,"TwoPointConversionRuns":0},{"PlayerGameID":5915342,"PlayerID":14536,"ShortName":"R.Wilson","Name":"Russell Wilson","Team":"SEA","Number":3,"Position":"QB","PositionCategory":"OFF","FantasyPosition":"QB","FantasyPoints":3.88,"Updated":null,"FumblesLost":0,"RushingAttempts":3,"RushingLong":9,"RushingTouchdowns":0,"RushingYards":10,"RushingYardsPerAttempt":3.3,"TwoPointConversionRuns":0},{"PlayerGameID":5915362,"PlayerID":12136,"ShortName":"L.Washington","Name":"Leon Washington","Team":"SEA","Number":33,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":0.4,"Updated":null,"FumblesLost":0,"RushingAttempts":2,"RushingLong":2,"RushingTouchdowns":0,"RushingYards":4,"RushingYardsPerAttempt":2,"TwoPointConversionRuns":0},{"PlayerGameID":5915343,"PlayerID":12273,"ShortName":"M.Robinson","Name":"Michael Robinson","Team":"SEA","Number":26,"Position":"FB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":1.4,"Updated":null,"FumblesLost":0,"RushingAttempts":1,"RushingLong":2,"RushingTouchdowns":0,"RushingYards":2,"RushingYardsPerAttempt":2,"TwoPointConversionRuns":0}],"Game":{"StadiumDetails":null,"GameKey":"201210731","Date":"2012-10-18T20:20:00","SeasonType":1,"Season":2012,"Week":7,"Stadium":"Candlestick Park","PlayingSurface":"Grass","Temperature":80,"Humidity":30,"WindSpeed":15,"AwayTeam":"SEA","HomeTeam":"SF","AwayScore":6,"HomeScore":13,"TotalScore":19,"OverUnder":37.5,"PointSpread":-9,"AwayScoreQuarter1":3,"AwayScoreQuarter2":3,"AwayScoreQuarter3":0,"AwayScoreQuarter4":0,"AwayScoreOvertime":0,"HomeScoreQuarter1":3,"HomeScoreQuarter2":0,"HomeScoreQuarter3":7,"HomeScoreQuarter4":3,"HomeScoreOvertime":0,"AwayTimeOfPossession":"27:59","HomeTimeOfPossession":"32:1","AwayFirstDowns":13,"HomeFirstDowns":18,"AwayFirstDownsByRushing":6,"HomeFirstDownsByRushing":8,"AwayFirstDownsByPassing":5,"HomeFirstDownsByPassing":9,"AwayFirstDownsByPenalty":2,"HomeFirstDownsByPenalty":1,"AwayOffensivePlays":54,"HomeOffensivePlays":57,"AwayOffensiveYards":251,"HomeOffensiveYards":313,"AwayOffensiveYardsPerPlay":4.6,"HomeOffensiveYardsPerPlay":5.5,"AwayTouchdowns":0,"HomeTouchdowns":1,"AwayRushingAttempts":29,"HomeRushingAttempts":32,"AwayRushingYards":136,"HomeRushingYards":175,"AwayRushingYardsPerAttempt":4.7,"HomeRushingYardsPerAttempt":5.5,"AwayRushingTouchdowns":0,"HomeRushingTouchdowns":0,"AwayPassingAttempts":23,"HomePassingAttempts":23,"AwayPassingCompletions":9,"HomePassingCompletions":14,"AwayPassingYards":115,"HomePassingYards":138,"AwayPassingTouchdowns":0,"HomePassingTouchdowns":1,"AwayPassingInterceptions":1,"HomePassingInterceptions":1,"AwayPassingYardsPerAttempt":5,"HomePassingYardsPerAttempt":6,"AwayPassingYardsPerCompletion":12.8,"HomePassingYardsPerCompletion":9.9,"AwayCompletionPercentage":39.1,"HomeCompletionPercentage":60.9,"AwayPasserRating":37.41,"HomePasserRating":74.18,"AwayThirdDownAttempts":13,"HomeThirdDownAttempts":11,"AwayThirdDownConversions":4,"HomeThirdDownConversions":3,"AwayThirdDownPercentage":30.8,"HomeThirdDownPercentage":27.3,"AwayFourthDownAttempts":1,"HomeFourthDownAttempts":0,"AwayFourthDownConversions":0,"HomeFourthDownConversions":0,"AwayFourthDownPercentage":0,"HomeFourthDownPercentage":0,"AwayRedZoneAttempts":1,"HomeRedZoneAttempts":4,"AwayRedZoneConversions":0,"HomeRedZoneConversions":1,"AwayGoalToGoAttempts":0,"HomeGoalToGoAttempts":1,"AwayGoalToGoConversions":0,"HomeGoalToGoConversions":0,"AwayReturnYards":9,"HomeReturnYards":71,"AwayPenalties":3,"HomePenalties":5,"AwayPenaltyYards":20,"HomePenaltyYards":40,"AwayFumbles":1,"HomeFumbles":1,"AwayFumblesLost":0,"HomeFumblesLost":0,"AwayTimesSacked":2,"HomeTimesSacked":2,"AwayTimesSackedYards":7,"HomeTimesSackedYards":2,"AwaySafeties":0,"HomeSafeties":0,"AwayPunts":4,"HomePunts":5,"AwayPuntYards":194,"HomePuntYards":228,"AwayPuntAverage":48.5,"HomePuntAverage":45.6,"AwayGiveaways":1,"HomeGiveaways":1,"AwayTakeaways":1,"HomeTakeaways":1,"AwayTurnoverDifferential":0,"HomeTurnoverDifferential":0,"AwayKickoffs":3,"HomeKickoffs":4,"AwayKickoffsInEndZone":2,"HomeKickoffsInEndZone":4,"AwayKickoffTouchbacks":1,"HomeKickoffTouchbacks":4,"AwayPuntsHadBlocked":0,"HomePuntsHadBlocked":0,"AwayPuntNetAverage":31,"HomePuntNetAverage":44.6,"AwayExtraPointKickingAttempts":0,"HomeExtraPointKickingAttempts":1,"AwayExtraPointKickingConversions":0,"HomeExtraPointKickingConversions":1,"AwayExtraPointsHadBlocked":0,"HomeExtraPointsHadBlocked":0,"AwayExtraPointPassingAttempts":0,"HomeExtraPointPassingAttempts":0,"AwayExtraPointPassingConversions":0,"HomeExtraPointPassingConversions":0,"AwayExtraPointRushingAttempts":0,"HomeExtraPointRushingAttempts":0,"AwayExtraPointRushingConversions":0,"HomeExtraPointRushingConversions":0,"AwayFieldGoalAttempts":3,"HomeFieldGoalAttempts":2,"AwayFieldGoalsMade":2,"HomeFieldGoalsMade":2,"AwayFieldGoalsHadBlocked":0,"HomeFieldGoalsHadBlocked":0,"AwayPuntReturns":2,"HomePuntReturns":3,"AwayPuntReturnYards":5,"HomePuntReturnYards":70,"AwayKickReturns":0,"HomeKickReturns":2,"AwayKickReturnYards":0,"HomeKickReturnYards":41,"AwayInterceptionReturns":1,"HomeInterceptionReturns":1,"AwayInterceptionReturnYards":4,"HomeInterceptionReturnYards":1,"AwaySoloTackles":46,"AwayAssistedTackles":4,"AwayQuarterbackHits":3,"AwayTacklesForLoss":4,"AwaySacks":2,"AwaySackYards":2,"AwayPassesDefended":2,"AwayFumblesForced":1,"AwayFumblesRecovered":0,"AwayFumbleReturnYards":0,"AwayFumbleReturnTouchdowns":0,"AwayInterceptionReturnTouchdowns":0,"AwayBlockedKicks":0,"AwayPuntReturnTouchdowns":0,"AwayPuntReturnLong":5,"AwayKickReturnTouchdowns":0,"AwayKickReturnLong":0,"AwayBlockedKickReturnYards":0,"AwayBlockedKickReturnTouchdowns":0,"AwayFieldGoalReturnYards":0,"AwayFieldGoalReturnTouchdowns":0,"AwayPuntNetYards":124,"HomeSoloTackles":39,"HomeAssistedTackles":10,"HomeQuarterbackHits":3,"HomeTacklesForLoss":3,"HomeSacks":2,"HomeSackYards":7,"HomePassesDefended":6,"HomeFumblesForced":0,"HomeFumblesRecovered":0,"HomeFumbleReturnYards":0,"HomeFumbleReturnTouchdowns":0,"HomeInterceptionReturnTouchdowns":0,"HomeBlockedKicks":0,"HomePuntReturnTouchdowns":0,"HomePuntReturnLong":38,"HomeKickReturnTouchdowns":0,"HomeKickReturnLong":26,"HomeBlockedKickReturnYards":0,"HomeBlockedKickReturnTouchdowns":0,"HomeFieldGoalReturnYards":0,"HomeFieldGoalReturnTouchdowns":0,"HomePuntNetYards":223,"IsGameOver":true,"GameID":62609,"StadiumID":null,"AwayTwoPointConversionReturns":null,"HomeTwoPointConversionReturns":null},"HomeDefense":[{"PlayerGameID":5915295,"PlayerID":7534,"ShortName":"J.Smith","Name":"Justin Smith","Team":"SF","Number":94,"Position":"DT","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":9,"Updated":null,"AssistedTackles":2,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":7,"Tackles":9,"TacklesForLoss":null},{"PlayerGameID":5915298,"PlayerID":511,"ShortName":"P.Willis","Name":"Patrick Willis","Team":"SF","Number":52,"Position":"ILB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":9.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":2,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":7,"Tackles":8,"TacklesForLoss":null},{"PlayerGameID":5915297,"PlayerID":11578,"ShortName":"N.Bowman","Name":"NaVorro Bowman","Team":"SF","Number":53,"Position":"ILB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":11,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":1,"SoloTackles":7,"Tackles":7,"TacklesForLoss":null},{"PlayerGameID":5915299,"PlayerID":13453,"ShortName":"Ald.Smith","Name":"Aldon Smith","Team":"SF","Number":99,"Position":"OLB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":8.2,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":7,"Sacks":1,"SoloTackles":3,"Tackles":4,"TacklesForLoss":null},{"PlayerGameID":5915300,"PlayerID":206,"ShortName":"C.Rogers","Name":"Carlos Rogers","Team":"SF","Number":22,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":4.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":3,"Tackles":4,"TacklesForLoss":null},{"PlayerGameID":5915301,"PlayerID":7350,"ShortName":"T.Brown","Name":"Tarell Brown","Team":"SF","Number":25,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":3.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":3,"Tackles":4,"TacklesForLoss":null},{"PlayerGameID":5915302,"PlayerID":5442,"ShortName":"D.Whitner","Name":"Donte Whitner","Team":"SF","Number":31,"Position":"SS","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":2.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":2,"Tackles":3,"TacklesForLoss":null},{"PlayerGameID":5915303,"PlayerID":5940,"ShortName":"D.Goldson","Name":"Dashon Goldson","Team":"SF","Number":38,"Position":"FS","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":7.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":1,"Interceptions":1,"PassesDefended":2,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":2,"Tackles":3,"TacklesForLoss":null},{"PlayerGameID":5915293,"PlayerID":4060,"ShortName":"R.McDonald","Name":"Ray McDonald","Team":"SF","Number":91,"Position":"DT","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":1.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915296,"PlayerID":1248,"ShortName":"A.Brooks","Name":"Ahmad Brooks","Team":"SF","Number":55,"Position":"OLB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":1.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915313,"PlayerID":13432,"ShortName":"C.Culliver","Name":"Chris Culliver","Team":"SF","Number":29,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":4,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":2,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":2,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915294,"PlayerID":5572,"ShortName":"I.Sopoaga","Name":"Isaac Sopoaga","Team":"SF","Number":90,"Position":"NT","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":1,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915310,"PlayerID":11579,"ShortName":"T.Brock","Name":"Tramaine Brock","Team":"SF","Number":26,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":0,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":0,"Tackles":1,"TacklesForLoss":null}],"HomeFantasyDefense":{"ScoringDetails":[],"GameKey":"201210731","SeasonType":1,"Season":2012,"Week":7,"Date":"2012-10-18T20:20:00","Team":"SF","Opponent":"SEA","PointsAllowed":6,"TouchdownsScored":0,"SoloTackles":39,"AssistedTackles":10,"Sacks":2,"SackYards":7,"PassesDefended":6,"FumblesForced":0,"FumblesRecovered":0,"FumbleReturnYards":0,"FumbleReturnTouchdowns":0,"Interceptions":1,"InterceptionReturnYards":1,"InterceptionReturnTouchdowns":0,"BlockedKicks":0,"Safeties":0,"PuntReturns":3,"PuntReturnYards":70,"PuntReturnTouchdowns":0,"PuntReturnLong":38,"KickReturns":2,"KickReturnYards":41,"KickReturnTouchdowns":0,"KickReturnLong":26,"BlockedKickReturnTouchdowns":0,"FieldGoalReturnTouchdowns":0,"FantasyPointsAllowed":34.68,"QuarterbackFantasyPointsAllowed":3.88,"RunningbackFantasyPointsAllowed":15.1,"WideReceiverFantasyPointsAllowed":9.7,"TightEndFantasyPointsAllowed":0,"KickerFantasyPointsAllowed":6,"BlockedKickReturnYards":0,"FieldGoalReturnYards":0,"QuarterbackHits":3,"TacklesForLoss":3,"DefensiveTouchdowns":0,"SpecialTeamsTouchdowns":0,"IsGameOver":true,"FantasyPoints":11,"Stadium":"Candlestick Park","Temperature":80,"Humidity":30,"WindSpeed":15,"ThirdDownAttempts":13,"ThirdDownConversions":4,"FourthDownAttempts":1,"FourthDownConversions":0,"PointsAllowedByDefenseSpecialTeams":6,"FanDuelSalary":null,"DraftKingsSalary":null,"FantasyDataSalary":null,"VictivSalary":null},"HomeKickPuntReturns":[{"PlayerGameID":5915307,"PlayerID":12109,"ShortName":"T.Ginn","Name":"Ted Ginn","Team":"SF","Number":19,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":0,"Updated":null,"KickReturnLong":26,"KickReturnTouchdowns":0,"KickReturnYards":41,"KickReturnYardsPerAttempt":20.5,"KickReturns":2,"PuntReturnLong":38,"PuntReturnTouchdowns":0,"PuntReturnYards":70,"PuntReturnYardsPerAttempt":23.3,"PuntReturns":3}],"HomeKicking":[{"PlayerGameID":5915280,"PlayerID":5352,"ShortName":"D.Akers","Name":"David Akers","Team":"SF","Number":2,"Position":"K","PositionCategory":"ST","FantasyPosition":"K","FantasyPoints":7,"Updated":null,"ExtraPointsAttempted":1,"ExtraPointsMade":1,"FieldGoalPercentage":100,"FieldGoalsAttempted":2,"FieldGoalsLongestMade":38,"FieldGoalsMade":2}],"HomePassing":[{"PlayerGameID":5915290,"PlayerID":6739,"ShortName":"A.Smith","Name":"Alex Smith","Team":"SF","Number":11,"Position":"QB","PositionCategory":"OFF","FantasyPosition":"QB","FantasyPoints":8.7,"Updated":null,"PassingAttempts":23,"PassingCompletionPercentage":60.9,"PassingCompletions":14,"PassingInterceptions":1,"PassingLong":18,"PassingRating":74.55,"PassingSackYards":2,"PassingSacks":2,"PassingTouchdowns":1,"PassingYards":140,"PassingYardsPerAttempt":6.1,"PassingYardsPerCompletion":10,"TwoPointConversionPasses":0}],"HomePunting":[{"PlayerGameID":5915304,"PlayerID":3100,"ShortName":"A.Lee","Name":"Andy Lee","Team":"SF","Number":4,"Position":"P","PositionCategory":"ST","FantasyPosition":"P","FantasyPoints":0,"Updated":null,"PuntAverage":45.6,"PuntInside20":4,"PuntTouchbacks":0,"PuntYards":228,"Punts":5}],"HomeReceiving":[{"PlayerGameID":5915291,"PlayerID":5820,"ShortName":"F.Gore","Name":"Frank Gore","Team":"SF","Number":21,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":18.2,"Updated":null,"FumblesLost":0,"ReceivingLong":15,"ReceivingTargets":6,"ReceivingTouchdowns":0,"ReceivingYards":51,"ReceivingYardsPerReception":10.2,"ReceivingYardsPerTarget":8.5,"ReceptionPercentage":83.3,"Receptions":5,"TwoPointConversionReceptions":0},{"PlayerGameID":5915282,"PlayerID":9331,"ShortName":"M.Crabtree","Name":"Michael Crabtree","Team":"SF","Number":15,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":3.1,"Updated":null,"FumblesLost":0,"ReceivingLong":16,"ReceivingTargets":6,"ReceivingTouchdowns":0,"ReceivingYards":31,"ReceivingYardsPerReception":7.8,"ReceivingYardsPerTarget":5.2,"ReceptionPercentage":66.7,"Receptions":4,"TwoPointConversionReceptions":0},{"PlayerGameID":5915306,"PlayerID":11594,"ShortName":"K.Williams","Name":"Kyle Williams","Team":"SF","Number":10,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":2.1,"Updated":null,"FumblesLost":0,"ReceivingLong":18,"ReceivingTargets":4,"ReceivingTouchdowns":0,"ReceivingYards":18,"ReceivingYardsPerReception":18,"ReceivingYardsPerTarget":4.5,"ReceptionPercentage":25,"Receptions":1,"TwoPointConversionReceptions":0},{"PlayerGameID":5915314,"PlayerID":13440,"ShortName":"K.Hunter","Name":"Kendall Hunter","Team":"SF","Number":32,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":4.5,"Updated":null,"FumblesLost":0,"ReceivingLong":11,"ReceivingTargets":2,"ReceivingTouchdowns":0,"ReceivingYards":14,"ReceivingYardsPerReception":7,"ReceivingYardsPerTarget":7,"ReceptionPercentage":100,"Receptions":2,"TwoPointConversionReceptions":0},{"PlayerGameID":5915323,"PlayerID":4154,"ShortName":"R.Moss","Name":"Randy Moss","Team":"SF","Number":84,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":1.4,"Updated":null,"FumblesLost":0,"ReceivingLong":14,"ReceivingTargets":4,"ReceivingTouchdowns":0,"ReceivingYards":14,"ReceivingYardsPerReception":14,"ReceivingYardsPerTarget":3.5,"ReceptionPercentage":25,"Receptions":1,"TwoPointConversionReceptions":0},{"PlayerGameID":5915289,"PlayerID":7175,"ShortName":"D.Walker","Name":"Delanie Walker","Team":"SF","Number":46,"Position":"TE","PositionCategory":"OFF","FantasyPosition":"TE","FantasyPoints":7.2,"Updated":null,"FumblesLost":0,"ReceivingLong":12,"ReceivingTargets":1,"ReceivingTouchdowns":1,"ReceivingYards":12,"ReceivingYardsPerReception":12,"ReceivingYardsPerTarget":12,"ReceptionPercentage":100,"Receptions":1,"TwoPointConversionReceptions":0}],"HomeRushing":[{"PlayerGameID":5915291,"PlayerID":5820,"ShortName":"F.Gore","Name":"Frank Gore","Team":"SF","Number":21,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":18.2,"Updated":null,"FumblesLost":0,"RushingAttempts":16,"RushingLong":37,"RushingTouchdowns":0,"RushingYards":131,"RushingYardsPerAttempt":8.2,"TwoPointConversionRuns":0},{"PlayerGameID":5915314,"PlayerID":13440,"ShortName":"K.Hunter","Name":"Kendall Hunter","Team":"SF","Number":32,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":4.5,"Updated":null,"FumblesLost":0,"RushingAttempts":9,"RushingLong":10,"RushingTouchdowns":0,"RushingYards":31,"RushingYardsPerAttempt":3.4,"TwoPointConversionRuns":0},{"PlayerGameID":5915290,"PlayerID":6739,"ShortName":"A.Smith","Name":"Alex Smith","Team":"SF","Number":11,"Position":"QB","PositionCategory":"OFF","FantasyPosition":"QB","FantasyPoints":8.7,"Updated":null,"FumblesLost":0,"RushingAttempts":5,"RushingLong":8,"RushingTouchdowns":0,"RushingYards":11,"RushingYardsPerAttempt":2.2,"TwoPointConversionRuns":0},{"PlayerGameID":5915306,"PlayerID":11594,"ShortName":"K.Williams","Name":"Kyle Williams","Team":"SF","Number":10,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":2.1,"Updated":null,"FumblesLost":0,"RushingAttempts":1,"RushingLong":3,"RushingTouchdowns":0,"RushingYards":3,"RushingYardsPerAttempt":3,"TwoPointConversionRuns":0},{"PlayerGameID":5915305,"PlayerID":13443,"ShortName":"C.Kaepernick","Name":"Colin Kaepernick","Team":"SF","Number":7,"Position":"QB","PositionCategory":"OFF","FantasyPosition":"QB","FantasyPoints":-0.1,"Updated":null,"FumblesLost":0,"RushingAttempts":1,"RushingLong":-1,"RushingTouchdowns":0,"RushingYards":-1,"RushingYardsPerAttempt":-1,"TwoPointConversionRuns":0}],"Score":{"StadiumDetails":null,"GameKey":"201210731","SeasonType":1,"Season":2012,"Week":7,"Date":"2012-10-18T20:20:00","AwayTeam":"SEA","HomeTeam":"SF","AwayScore":6,"HomeScore":13,"Channel":"NFL","PointSpread":-9,"OverUnder":37.5,"Quarter":"F","TimeRemaining":null,"Possession":null,"Down":null,"Distance":null,"YardLine":null,"YardLineTerritory":null,"RedZone":null,"AwayScoreQuarter1":3,"AwayScoreQuarter2":3,"AwayScoreQuarter3":0,"AwayScoreQuarter4":0,"AwayScoreOvertime":0,"HomeScoreQuarter1":3,"HomeScoreQuarter2":0,"HomeScoreQuarter3":7,"HomeScoreQuarter4":3,"HomeScoreOvertime":0,"HasStarted":true,"IsInProgress":false,"IsOver":true,"Has1stQuarterStarted":true,"Has2ndQuarterStarted":true,"Has3rdQuarterStarted":true,"Has4thQuarterStarted":true,"IsOvertime":false,"DownAndDistance":null,"QuarterDescription":"Final","StadiumID":null,"LastUpdated":null},"ScoringDetails":[{"GameKey":"201210731","SeasonType":1,"PlayerID":12594,"Team":"SEA","Season":2012,"Week":7,"ScoringType":"FieldGoalMade","Length":52,"ScoringDetailID":307734,"PlayerGameID":5915281},{"GameKey":"201210731","SeasonType":1,"PlayerID":12594,"Team":"SEA","Season":2012,"Week":7,"ScoringType":"FieldGoalMade","Length":35,"ScoringDetailID":307735,"PlayerGameID":5915281},{"GameKey":"201210731","SeasonType":1,"PlayerID":12594,"Team":"SEA","Season":2012,"Week":7,"ScoringType":"FieldGoalMissed","Length":51,"ScoringDetailID":307736,"PlayerGameID":5915281},{"GameKey":"201210731","SeasonType":1,"PlayerID":5352,"Team":"SF","Season":2012,"Week":7,"ScoringType":"FieldGoalMade","Length":38,"ScoringDetailID":307737,"PlayerGameID":5915280},{"GameKey":"201210731","SeasonType":1,"PlayerID":5352,"Team":"SF","Season":2012,"Week":7,"ScoringType":"FieldGoalMade","Length":28,"ScoringDetailID":307738,"PlayerGameID":5915280},{"GameKey":"201210731","SeasonType":1,"PlayerID":7175,"Team":"SF","Season":2012,"Week":7,"ScoringType":"ReceivingTouchdown","Length":12,"ScoringDetailID":307739,"PlayerGameID":5915289},{"GameKey":"201210731","SeasonType":1,"PlayerID":6739,"Team":"SF","Season":2012,"Week":7,"ScoringType":"PassingTouchdown","Length":12,"ScoringDetailID":307740,"PlayerGameID":5915290}],"ScoringPlays":[{"GameKey":"201210731","SeasonType":1,"ScoringPlayID":89053,"Season":2012,"Week":7,"AwayTeam":"SEA","HomeTeam":"SF","Date":"2012-10-18T20:20:00","Sequence":1,"Team":"SEA","Quarter":"1","TimeRemaining":"5:29","PlayDescription":"S.Hauschka 52 yd. Field Goal (10-62, 5:05)","AwayScore":3,"HomeScore":0},{"GameKey":"201210731","SeasonType":1,"ScoringPlayID":89054,"Season":2012,"Week":7,"AwayTeam":"SEA","HomeTeam":"SF","Date":"2012-10-18T20:20:00","Sequence":2,"Team":"SF","Quarter":"1","TimeRemaining":"0:26","PlayDescription":"D.Akers 38 yd. Field Goal (11-60, 5:03)","AwayScore":3,"HomeScore":3},{"GameKey":"201210731","SeasonType":1,"ScoringPlayID":89055,"Season":2012,"Week":7,"AwayTeam":"SEA","HomeTeam":"SF","Date":"2012-10-18T20:20:00","Sequence":3,"Team":"SEA","Quarter":"2","TimeRemaining":"12:07","PlayDescription":"S.Hauschka 35 yd. Field Goal (8-63, 3:19)","AwayScore":6,"HomeScore":3},{"GameKey":"201210731","SeasonType":1,"ScoringPlayID":89056,"Season":2012,"Week":7,"AwayTeam":"SEA","HomeTeam":"SF","Date":"2012-10-18T20:20:00","Sequence":4,"Team":"SF","Quarter":"3","TimeRemaining":"4:29","PlayDescription":"D.Walker 12 yd. pass from A.Smith (D.Akers kick) (10-86, 6:20)","AwayScore":6,"HomeScore":10},{"GameKey":"201210731","SeasonType":1,"ScoringPlayID":89057,"Season":2012,"Week":7,"AwayTeam":"SEA","HomeTeam":"SF","Date":"2012-10-18T20:20:00","Sequence":5,"Team":"SF","Quarter":"4","TimeRemaining":"5:24","PlayDescription":"D.Akers 28 yd. Field Goal (7-39, 4:47)","AwayScore":6,"HomeScore":13}]},{"AwayDefense":[{"PlayerGameID":5915458,"PlayerID":5795,"ShortName":"J.Babineaux","Name":"Jordan Babineaux","Team":"TEN","Number":26,"Position":"FS","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":12,"Updated":null,"AssistedTackles":4,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":1,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":8,"Tackles":12,"TacklesForLoss":null},{"PlayerGameID":5915456,"PlayerID":8554,"ShortName":"R.Mouton","Name":"Ryan Mouton","Team":"TEN","Number":29,"Position":"DB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":8,"Updated":null,"AssistedTackles":2,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":6,"Tackles":9,"TacklesForLoss":null},{"PlayerGameID":5915453,"PlayerID":11873,"ShortName":"K.Wimbley","Name":"Kamerion Wimbley","Team":"TEN","Number":95,"Position":"DE","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":11.9,"Updated":null,"AssistedTackles":2,"FumbleReturnTouchdowns":0,"FumblesForced":1,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":9,"Sacks":1,"SoloTackles":4,"Tackles":6,"TacklesForLoss":null},{"PlayerGameID":5915457,"PlayerID":8550,"ShortName":"J.McCourty","Name":"Jason McCourty","Team":"TEN","Number":30,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":8.5,"Updated":null,"AssistedTackles":3,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":1,"PassesDefended":1,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":3,"Tackles":6,"TacklesForLoss":null},{"PlayerGameID":5915459,"PlayerID":1286,"ShortName":"M.Griffin","Name":"Michael Griffin","Team":"TEN","Number":33,"Position":"SS","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":6,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":6,"Tackles":6,"TacklesForLoss":null},{"PlayerGameID":5915460,"PlayerID":11096,"ShortName":"A.Verner","Name":"Alterraun Verner","Team":"TEN","Number":20,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":5,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":5,"Tackles":5,"TacklesForLoss":null},{"PlayerGameID":5915454,"PlayerID":12910,"ShortName":"A.Ayers","Name":"Akeem Ayers","Team":"TEN","Number":56,"Position":"OLB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":4.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":3,"Tackles":4,"TacklesForLoss":null},{"PlayerGameID":5915469,"PlayerID":12545,"ShortName":"A.Afalava","Name":"Al Afalava","Team":"TEN","Number":38,"Position":"S","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":3,"Updated":null,"AssistedTackles":2,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":2,"Tackles":4,"TacklesForLoss":null},{"PlayerGameID":5915473,"PlayerID":12304,"ShortName":"T.Shaw","Name":"Tim Shaw","Team":"TEN","Number":59,"Position":"LB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":4.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":3,"Tackles":4,"TacklesForLoss":null},{"PlayerGameID":5915450,"PlayerID":12305,"ShortName":"D.Morgan","Name":"Derrick Morgan","Team":"TEN","Number":91,"Position":"DE","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":8.5,"Updated":null,"AssistedTackles":3,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":1,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":2,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":0,"Tackles":3,"TacklesForLoss":null},{"PlayerGameID":5915471,"PlayerID":13941,"ShortName":"Z.Brown","Name":"Zach Brown","Team":"TEN","Number":55,"Position":"LB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":3.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":2,"Tackles":3,"TacklesForLoss":null},{"PlayerGameID":5915452,"PlayerID":12912,"ShortName":"J.Casey","Name":"Jurrell Casey","Team":"TEN","Number":99,"Position":"DT","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":1,"Updated":null,"AssistedTackles":2,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":0,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915455,"PlayerID":5775,"ShortName":"Z.Diles","Name":"Zac Diles","Team":"TEN","Number":53,"Position":"ILB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":1.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915479,"PlayerID":12306,"ShortName":"W.Witherspoon","Name":"Will Witherspoon","Team":"TEN","Number":92,"Position":"LB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":1.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915466,"PlayerID":13949,"ShortName":"C.Sensabaugh","Name":"Coty Sensabaugh","Team":"TEN","Number":24,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":0,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":0,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915472,"PlayerID":12303,"ShortName":"P.Bailey","Name":"Patrick Bailey","Team":"TEN","Number":57,"Position":"LB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":0,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":0,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915480,"PlayerID":13946,"ShortName":"M.Martin","Name":"Mike Martin","Team":"TEN","Number":93,"Position":"DT","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":1,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":1,"TacklesForLoss":null}],"AwayFantasyDefense":{"ScoringDetails":[],"GameKey":"201210704","SeasonType":1,"Season":2012,"Week":7,"Date":"2012-10-21T13:00:00","Team":"TEN","Opponent":"BUF","PointsAllowed":34,"TouchdownsScored":0,"SoloTackles":45,"AssistedTackles":23,"Sacks":1,"SackYards":9,"PassesDefended":4,"FumblesForced":1,"FumblesRecovered":1,"FumbleReturnYards":0,"FumbleReturnTouchdowns":0,"Interceptions":1,"InterceptionReturnYards":0,"InterceptionReturnTouchdowns":0,"BlockedKicks":0,"Safeties":0,"PuntReturns":0,"PuntReturnYards":0,"PuntReturnTouchdowns":0,"PuntReturnLong":0,"KickReturns":5,"KickReturnYards":116,"KickReturnTouchdowns":0,"KickReturnLong":32,"BlockedKickReturnTouchdowns":0,"FieldGoalReturnTouchdowns":0,"FantasyPointsAllowed":84.1,"QuarterbackFantasyPointsAllowed":19.3,"RunningbackFantasyPointsAllowed":28.2,"WideReceiverFantasyPointsAllowed":25.1,"TightEndFantasyPointsAllowed":1.5,"KickerFantasyPointsAllowed":10,"BlockedKickReturnYards":0,"FieldGoalReturnYards":0,"QuarterbackHits":5,"TacklesForLoss":4,"DefensiveTouchdowns":0,"SpecialTeamsTouchdowns":0,"IsGameOver":true,"FantasyPoints":4,"Stadium":"Ralph Wilson Stadium","Temperature":55,"Humidity":75,"WindSpeed":15,"ThirdDownAttempts":12,"ThirdDownConversions":7,"FourthDownAttempts":1,"FourthDownConversions":0,"PointsAllowedByDefenseSpecialTeams":34,"FanDuelSalary":null,"DraftKingsSalary":null,"FantasyDataSalary":null,"VictivSalary":null},"AwayKickPuntReturns":[{"PlayerGameID":5915467,"PlayerID":12243,"ShortName":"D.Reynaud","Name":"Darius Reynaud","Team":"TEN","Number":25,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":1.4,"Updated":null,"KickReturnLong":32,"KickReturnTouchdowns":0,"KickReturnYards":116,"KickReturnYardsPerAttempt":23.2,"KickReturns":5,"PuntReturnLong":0,"PuntReturnTouchdowns":0,"PuntReturnYards":0,"PuntReturnYardsPerAttempt":0,"PuntReturns":0}],"AwayKicking":[{"PlayerGameID":5915461,"PlayerID":2616,"ShortName":"R.Bironas","Name":"Rob Bironas","Team":"TEN","Number":2,"Position":"K","PositionCategory":"ST","FantasyPosition":"K","FantasyPoints":5,"Updated":null,"ExtraPointsAttempted":5,"ExtraPointsMade":5,"FieldGoalPercentage":0,"FieldGoalsAttempted":0,"FieldGoalsLongestMade":0,"FieldGoalsMade":0}],"AwayPassing":[{"PlayerGameID":5915447,"PlayerID":1034,"ShortName":"M.Hasselbeck","Name":"Matt Hasselbeck","Team":"TEN","Number":8,"Position":"QB","PositionCategory":"OFF","FantasyPosition":"QB","FantasyPoints":12,"Updated":null,"PassingAttempts":33,"PassingCompletionPercentage":66.7,"PassingCompletions":22,"PassingInterceptions":0,"PassingLong":29,"PassingRating":93.62,"PassingSackYards":12,"PassingSacks":2,"PassingTouchdowns":1,"PassingYards":205,"PassingYardsPerAttempt":6.2,"PassingYardsPerCompletion":9.3,"TwoPointConversionPasses":0}],"AwayPunting":[{"PlayerGameID":5915462,"PlayerID":10067,"ShortName":"B.Kern","Name":"Brett Kern","Team":"TEN","Number":6,"Position":"P","PositionCategory":"ST","FantasyPosition":"P","FantasyPoints":0,"Updated":null,"PuntAverage":41.3,"PuntInside20":2,"PuntTouchbacks":1,"PuntYards":124,"Punts":3}],"AwayReceiving":[{"PlayerGameID":5915439,"PlayerID":8564,"ShortName":"N.Washington","Name":"Nate Washington","Team":"TEN","Number":85,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":10.3,"Updated":null,"FumblesLost":0,"ReceivingLong":17,"ReceivingTargets":8,"ReceivingTouchdowns":1,"ReceivingYards":43,"ReceivingYardsPerReception":7.2,"ReceivingYardsPerTarget":5.4,"ReceptionPercentage":75,"Receptions":6,"TwoPointConversionReceptions":0},{"PlayerGameID":5915464,"PlayerID":11097,"ShortName":"D.Williams","Name":"Damian Williams","Team":"TEN","Number":17,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":3.8,"Updated":null,"FumblesLost":0,"ReceivingLong":19,"ReceivingTargets":4,"ReceivingTouchdowns":0,"ReceivingYards":38,"ReceivingYardsPerReception":12.7,"ReceivingYardsPerTarget":9.5,"ReceptionPercentage":75,"Receptions":3,"TwoPointConversionReceptions":0},{"PlayerGameID":5915477,"PlayerID":8534,"ShortName":"J.Cook","Name":"Jared Cook","Team":"TEN","Number":89,"Position":"TE","PositionCategory":"OFF","FantasyPosition":"TE","FantasyPoints":3.7,"Updated":null,"FumblesLost":0,"ReceivingLong":29,"ReceivingTargets":5,"ReceivingTouchdowns":0,"ReceivingYards":37,"ReceivingYardsPerReception":18.5,"ReceivingYardsPerTarget":7.4,"ReceptionPercentage":40,"Receptions":2,"TwoPointConversionReceptions":0},{"PlayerGameID":5915446,"PlayerID":8532,"ShortName":"K.Britt","Name":"Kenny Britt","Team":"TEN","Number":18,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":3,"Updated":null,"FumblesLost":0,"ReceivingLong":16,"ReceivingTargets":6,"ReceivingTouchdowns":0,"ReceivingYards":30,"ReceivingYardsPerReception":7.5,"ReceivingYardsPerTarget":5,"ReceptionPercentage":66.7,"Receptions":4,"TwoPointConversionReceptions":0},{"PlayerGameID":5915463,"PlayerID":13957,"ShortName":"K.Wright","Name":"Kendall Wright","Team":"TEN","Number":13,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":1.9,"Updated":null,"FumblesLost":0,"ReceivingLong":11,"ReceivingTargets":3,"ReceivingTouchdowns":0,"ReceivingYards":19,"ReceivingYardsPerReception":6.3,"ReceivingYardsPerTarget":6.3,"ReceptionPercentage":100,"Receptions":3,"TwoPointConversionReceptions":0},{"PlayerGameID":5915467,"PlayerID":12243,"ShortName":"D.Reynaud","Name":"Darius Reynaud","Team":"TEN","Number":25,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":1.4,"Updated":null,"FumblesLost":0,"ReceivingLong":9,"ReceivingTargets":2,"ReceivingTouchdowns":0,"ReceivingYards":18,"ReceivingYardsPerReception":9,"ReceivingYardsPerTarget":9,"ReceptionPercentage":100,"Receptions":2,"TwoPointConversionReceptions":0},{"PlayerGameID":5915445,"PlayerID":3,"ShortName":"C.Stevens","Name":"Craig Stevens","Team":"TEN","Number":88,"Position":"TE","PositionCategory":"OFF","FantasyPosition":"TE","FantasyPoints":1.7,"Updated":null,"FumblesLost":0,"ReceivingLong":17,"ReceivingTargets":1,"ReceivingTouchdowns":0,"ReceivingYards":17,"ReceivingYardsPerReception":17,"ReceivingYardsPerTarget":17,"ReceptionPercentage":100,"Receptions":1,"TwoPointConversionReceptions":0},{"PlayerGameID":5915448,"PlayerID":6828,"ShortName":"C.Johnson","Name":"Chris Johnson","Team":"TEN","Number":28,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":31.8,"Updated":null,"FumblesLost":0,"ReceivingLong":3,"ReceivingTargets":2,"ReceivingTouchdowns":0,"ReceivingYards":3,"ReceivingYardsPerReception":3,"ReceivingYardsPerTarget":1.5,"ReceptionPercentage":50,"Receptions":1,"TwoPointConversionReceptions":0},{"PlayerGameID":5915449,"PlayerID":9048,"ShortName":"Q.Johnson","Name":"Quinn Johnson","Team":"TEN","Number":45,"Position":"FB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":0,"Updated":null,"FumblesLost":0,"ReceivingLong":0,"ReceivingTargets":1,"ReceivingTouchdowns":0,"ReceivingYards":0,"ReceivingYardsPerReception":0,"ReceivingYardsPerTarget":0,"ReceptionPercentage":0,"Receptions":0,"TwoPointConversionReceptions":0},{"PlayerGameID":5915476,"PlayerID":13881,"ShortName":"T.Thompson","Name":"Taylor Thompson","Team":"TEN","Number":84,"Position":"TE","PositionCategory":"OFF","FantasyPosition":"TE","FantasyPoints":0,"Updated":null,"FumblesLost":0,"ReceivingLong":0,"ReceivingTargets":1,"ReceivingTouchdowns":0,"ReceivingYards":0,"ReceivingYardsPerReception":0,"ReceivingYardsPerTarget":0,"ReceptionPercentage":0,"Receptions":0,"TwoPointConversionReceptions":0}],"AwayRushing":[{"PlayerGameID":5915448,"PlayerID":6828,"ShortName":"C.Johnson","Name":"Chris Johnson","Team":"TEN","Number":28,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":31.8,"Updated":null,"FumblesLost":0,"RushingAttempts":18,"RushingLong":83,"RushingTouchdowns":2,"RushingYards":195,"RushingYardsPerAttempt":10.8,"TwoPointConversionRuns":0},{"PlayerGameID":5915465,"PlayerID":12918,"ShortName":"J.Harper","Name":"Jamie Harper","Team":"TEN","Number":23,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":12.8,"Updated":null,"FumblesLost":0,"RushingAttempts":7,"RushingLong":8,"RushingTouchdowns":2,"RushingYards":8,"RushingYardsPerAttempt":1.1,"TwoPointConversionRuns":0},{"PlayerGameID":5915447,"PlayerID":1034,"ShortName":"M.Hasselbeck","Name":"Matt Hasselbeck","Team":"TEN","Number":8,"Position":"QB","PositionCategory":"OFF","FantasyPosition":"QB","FantasyPoints":12,"Updated":null,"FumblesLost":0,"RushingAttempts":1,"RushingLong":-2,"RushingTouchdowns":0,"RushingYards":-2,"RushingYardsPerAttempt":-2,"TwoPointConversionRuns":0},{"PlayerGameID":5915467,"PlayerID":12243,"ShortName":"D.Reynaud","Name":"Darius Reynaud","Team":"TEN","Number":25,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":1.4,"Updated":null,"FumblesLost":0,"RushingAttempts":1,"RushingLong":-4,"RushingTouchdowns":0,"RushingYards":-4,"RushingYardsPerAttempt":-4,"TwoPointConversionRuns":0}],"Game":{"StadiumDetails":null,"GameKey":"201210704","Date":"2012-10-21T13:00:00","SeasonType":1,"Season":2012,"Week":7,"Stadium":"Ralph Wilson Stadium","PlayingSurface":"Artificial","Temperature":55,"Humidity":75,"WindSpeed":15,"AwayTeam":"TEN","HomeTeam":"BUF","AwayScore":35,"HomeScore":34,"TotalScore":69,"OverUnder":46.5,"PointSpread":-4,"AwayScoreQuarter1":14,"AwayScoreQuarter2":7,"AwayScoreQuarter3":7,"AwayScoreQuarter4":7,"AwayScoreOvertime":0,"HomeScoreQuarter1":14,"HomeScoreQuarter2":6,"HomeScoreQuarter3":14,"HomeScoreQuarter4":0,"HomeScoreOvertime":0,"AwayTimeOfPossession":"29:41","HomeTimeOfPossession":"30:19","AwayFirstDowns":21,"HomeFirstDowns":22,"AwayFirstDownsByRushing":7,"HomeFirstDownsByRushing":6,"AwayFirstDownsByPassing":12,"HomeFirstDownsByPassing":14,"AwayFirstDownsByPenalty":2,"HomeFirstDownsByPenalty":2,"AwayOffensivePlays":62,"HomeOffensivePlays":60,"AwayOffensiveYards":390,"HomeOffensiveYards":382,"AwayOffensiveYardsPerPlay":6.3,"HomeOffensiveYardsPerPlay":6.4,"AwayTouchdowns":5,"HomeTouchdowns":4,"AwayRushingAttempts":27,"HomeRushingAttempts":24,"AwayRushingYards":197,"HomeRushingYards":166,"AwayRushingYardsPerAttempt":7.3,"HomeRushingYardsPerAttempt":6.9,"AwayRushingTouchdowns":4,"HomeRushingTouchdowns":0,"AwayPassingAttempts":33,"HomePassingAttempts":35,"AwayPassingCompletions":22,"HomePassingCompletions":27,"AwayPassingYards":193,"HomePassingYards":216,"AwayPassingTouchdowns":1,"HomePassingTouchdowns":3,"AwayPassingInterceptions":0,"HomePassingInterceptions":1,"AwayPassingYardsPerAttempt":5.8,"HomePassingYardsPerAttempt":6.2,"AwayPassingYardsPerCompletion":8.8,"HomePassingYardsPerCompletion":8,"AwayCompletionPercentage":66.7,"HomeCompletionPercentage":77.1,"AwayPasserRating":92.11,"HomePasserRating":108.75,"AwayThirdDownAttempts":14,"HomeThirdDownAttempts":12,"AwayThirdDownConversions":9,"HomeThirdDownConversions":7,"AwayThirdDownPercentage":64.3,"HomeThirdDownPercentage":58.3,"AwayFourthDownAttempts":2,"HomeFourthDownAttempts":1,"AwayFourthDownConversions":1,"HomeFourthDownConversions":0,"AwayFourthDownPercentage":50,"HomeFourthDownPercentage":0,"AwayRedZoneAttempts":4,"HomeRedZoneAttempts":3,"AwayRedZoneConversions":4,"HomeRedZoneConversions":2,"AwayGoalToGoAttempts":2,"HomeGoalToGoAttempts":1,"AwayGoalToGoConversions":2,"HomeGoalToGoConversions":1,"AwayReturnYards":0,"HomeReturnYards":0,"AwayPenalties":3,"HomePenalties":8,"AwayPenaltyYards":25,"HomePenaltyYards":65,"AwayFumbles":1,"HomeFumbles":1,"AwayFumblesLost":0,"HomeFumblesLost":1,"AwayTimesSacked":2,"HomeTimesSacked":1,"AwayTimesSackedYards":12,"HomeTimesSackedYards":9,"AwaySafeties":0,"HomeSafeties":0,"AwayPunts":3,"HomePunts":1,"AwayPuntYards":124,"HomePuntYards":22,"AwayPuntAverage":41.3,"HomePuntAverage":22,"AwayGiveaways":0,"HomeGiveaways":2,"AwayTakeaways":2,"HomeTakeaways":0,"AwayTurnoverDifferential":2,"HomeTurnoverDifferential":-2,"AwayKickoffs":6,"HomeKickoffs":6,"AwayKickoffsInEndZone":3,"HomeKickoffsInEndZone":2,"AwayKickoffTouchbacks":2,"HomeKickoffTouchbacks":1,"AwayPuntsHadBlocked":0,"HomePuntsHadBlocked":0,"AwayPuntNetAverage":34.7,"HomePuntNetAverage":22,"AwayExtraPointKickingAttempts":5,"HomeExtraPointKickingAttempts":4,"AwayExtraPointKickingConversions":5,"HomeExtraPointKickingConversions":4,"AwayExtraPointsHadBlocked":0,"HomeExtraPointsHadBlocked":0,"AwayExtraPointPassingAttempts":0,"HomeExtraPointPassingAttempts":0,"AwayExtraPointPassingConversions":0,"HomeExtraPointPassingConversions":0,"AwayExtraPointRushingAttempts":0,"HomeExtraPointRushingAttempts":0,"AwayExtraPointRushingConversions":0,"HomeExtraPointRushingConversions":0,"AwayFieldGoalAttempts":0,"HomeFieldGoalAttempts":2,"AwayFieldGoalsMade":0,"HomeFieldGoalsMade":2,"AwayFieldGoalsHadBlocked":0,"HomeFieldGoalsHadBlocked":0,"AwayPuntReturns":0,"HomePuntReturns":0,"AwayPuntReturnYards":0,"HomePuntReturnYards":0,"AwayKickReturns":5,"HomeKickReturns":4,"AwayKickReturnYards":116,"HomeKickReturnYards":184,"AwayInterceptionReturns":1,"HomeInterceptionReturns":0,"AwayInterceptionReturnYards":0,"HomeInterceptionReturnYards":0,"AwaySoloTackles":45,"AwayAssistedTackles":23,"AwayQuarterbackHits":5,"AwayTacklesForLoss":4,"AwaySacks":1,"AwaySackYards":9,"AwayPassesDefended":4,"AwayFumblesForced":1,"AwayFumblesRecovered":1,"AwayFumbleReturnYards":0,"AwayFumbleReturnTouchdowns":0,"AwayInterceptionReturnTouchdowns":0,"AwayBlockedKicks":0,"AwayPuntReturnTouchdowns":0,"AwayPuntReturnLong":0,"AwayKickReturnTouchdowns":0,"AwayKickReturnLong":32,"AwayBlockedKickReturnYards":0,"AwayBlockedKickReturnTouchdowns":0,"AwayFieldGoalReturnYards":0,"AwayFieldGoalReturnTouchdowns":0,"AwayPuntNetYards":104,"HomeSoloTackles":42,"HomeAssistedTackles":19,"HomeQuarterbackHits":4,"HomeTacklesForLoss":6,"HomeSacks":2,"HomeSackYards":12,"HomePassesDefended":4,"HomeFumblesForced":1,"HomeFumblesRecovered":0,"HomeFumbleReturnYards":0,"HomeFumbleReturnTouchdowns":0,"HomeInterceptionReturnTouchdowns":0,"HomeBlockedKicks":0,"HomePuntReturnTouchdowns":0,"HomePuntReturnLong":0,"HomeKickReturnTouchdowns":1,"HomeKickReturnLong":89,"HomeBlockedKickReturnYards":0,"HomeBlockedKickReturnTouchdowns":0,"HomeFieldGoalReturnYards":0,"HomeFieldGoalReturnTouchdowns":0,"HomePuntNetYards":22,"IsGameOver":true,"GameID":62610,"StadiumID":null,"AwayTwoPointConversionReturns":null,"HomeTwoPointConversionReturns":null},"HomeDefense":[{"PlayerGameID":5915403,"PlayerID":12742,"ShortName":"K.Sheppard","Name":"Kelvin Sheppard","Team":"BUF","Number":55,"Position":"ILB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":6,"Updated":null,"AssistedTackles":4,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":4,"Tackles":9,"TacklesForLoss":null},{"PlayerGameID":5915404,"PlayerID":3378,"ShortName":"N.Barnett","Name":"Nick Barnett","Team":"BUF","Number":50,"Position":"OLB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":8,"Updated":null,"AssistedTackles":4,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":5,"Tackles":9,"TacklesForLoss":null},{"PlayerGameID":5915407,"PlayerID":5483,"ShortName":"G.Wilson","Name":"George Wilson","Team":"BUF","Number":37,"Position":"SS","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":8,"Updated":null,"AssistedTackles":2,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":1,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":6,"Tackles":8,"TacklesForLoss":null},{"PlayerGameID":5915417,"PlayerID":3059,"ShortName":"B.Scott","Name":"Bryan Scott","Team":"BUF","Number":43,"Position":"OLB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":6,"Updated":null,"AssistedTackles":2,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":1,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":4,"Tackles":7,"TacklesForLoss":null},{"PlayerGameID":5915408,"PlayerID":8281,"ShortName":"J.Byrd","Name":"Jairus Byrd","Team":"BUF","Number":31,"Position":"FS","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":8,"Updated":null,"AssistedTackles":2,"FumbleReturnTouchdowns":0,"FumblesForced":1,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":4,"Tackles":6,"TacklesForLoss":null},{"PlayerGameID":5915400,"PlayerID":2550,"ShortName":"K.Williams","Name":"Kyle Williams","Team":"BUF","Number":95,"Position":"DT","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":10.8,"Updated":null,"AssistedTackles":2,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":8,"Sacks":1,"SoloTackles":3,"Tackles":5,"TacklesForLoss":null},{"PlayerGameID":5915402,"PlayerID":13756,"ShortName":"N.Bradham","Name":"Nigel Bradham","Team":"BUF","Number":53,"Position":"OLB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":3.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":3,"Tackles":5,"TacklesForLoss":null},{"PlayerGameID":5915405,"PlayerID":12747,"ShortName":"A.Williams","Name":"Aaron Williams","Team":"BUF","Number":23,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":4,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":1,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":3,"Tackles":3,"TacklesForLoss":null},{"PlayerGameID":5915414,"PlayerID":12740,"ShortName":"J.Rogers","Name":"Justin Rogers","Team":"BUF","Number":26,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":3,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":3,"Tackles":3,"TacklesForLoss":null},{"PlayerGameID":5915398,"PlayerID":5467,"ShortName":"M.Williams","Name":"Mario Williams","Team":"BUF","Number":94,"Position":"DE","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":1.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915401,"PlayerID":3552,"ShortName":"C.Kelsay","Name":"Chris Kelsay","Team":"BUF","Number":90,"Position":"DE","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":6.4,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":4,"Sacks":1,"SoloTackles":2,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915426,"PlayerID":8054,"ShortName":"Sp.Johnson","Name":"Spencer Johnson","Team":"BUF","Number":91,"Position":"DT","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":2.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915399,"PlayerID":12725,"ShortName":"M.Dareus","Name":"Marcell Dareus","Team":"BUF","Number":99,"Position":"DT","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":1,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915406,"PlayerID":13761,"ShortName":"S.Gilmore","Name":"Stephon Gilmore","Team":"BUF","Number":27,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":2,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":1,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915419,"PlayerID":12157,"ShortName":"A.Moats","Name":"Arthur Moats","Team":"BUF","Number":52,"Position":"OLB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":0,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":0,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915427,"PlayerID":10935,"ShortName":"A.Carrington","Name":"Alex Carrington","Team":"BUF","Number":92,"Position":"DT","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":2,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":1,"TacklesForLoss":null}],"HomeFantasyDefense":{"ScoringDetails":[{"GameKey":"201210704","SeasonType":1,"PlayerID":7236,"Team":"BUF","Season":2012,"Week":7,"ScoringType":"KickoffReturnTouchdown","Length":89,"ScoringDetailID":307751,"PlayerGameID":5915410}],"GameKey":"201210704","SeasonType":1,"Season":2012,"Week":7,"Date":"2012-10-21T13:00:00","Team":"BUF","Opponent":"TEN","PointsAllowed":35,"TouchdownsScored":1,"SoloTackles":42,"AssistedTackles":19,"Sacks":2,"SackYards":12,"PassesDefended":4,"FumblesForced":1,"FumblesRecovered":0,"FumbleReturnYards":0,"FumbleReturnTouchdowns":0,"Interceptions":0,"InterceptionReturnYards":0,"InterceptionReturnTouchdowns":0,"BlockedKicks":0,"Safeties":0,"PuntReturns":0,"PuntReturnYards":0,"PuntReturnTouchdowns":0,"PuntReturnLong":0,"KickReturns":4,"KickReturnYards":184,"KickReturnTouchdowns":1,"KickReturnLong":89,"BlockedKickReturnTouchdowns":0,"FieldGoalReturnTouchdowns":0,"FantasyPointsAllowed":87.4,"QuarterbackFantasyPointsAllowed":12,"RunningbackFantasyPointsAllowed":46,"WideReceiverFantasyPointsAllowed":19,"TightEndFantasyPointsAllowed":5.4,"KickerFantasyPointsAllowed":5,"BlockedKickReturnYards":0,"FieldGoalReturnYards":0,"QuarterbackHits":4,"TacklesForLoss":6,"DefensiveTouchdowns":0,"SpecialTeamsTouchdowns":1,"IsGameOver":true,"FantasyPoints":4,"Stadium":"Ralph Wilson Stadium","Temperature":55,"Humidity":75,"WindSpeed":15,"ThirdDownAttempts":14,"ThirdDownConversions":9,"FourthDownAttempts":2,"FourthDownConversions":1,"PointsAllowedByDefenseSpecialTeams":35,"FanDuelSalary":null,"DraftKingsSalary":null,"FantasyDataSalary":null,"VictivSalary":null},"HomeKickPuntReturns":[{"PlayerGameID":5915410,"PlayerID":7236,"ShortName":"B.Smith","Name":"Brad Smith","Team":"BUF","Number":16,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":0.7,"Updated":null,"KickReturnLong":89,"KickReturnTouchdowns":1,"KickReturnYards":109,"KickReturnYardsPerAttempt":54.5,"KickReturns":2,"PuntReturnLong":0,"PuntReturnTouchdowns":0,"PuntReturnYards":0,"PuntReturnYardsPerAttempt":0,"PuntReturns":0},{"PlayerGameID":5915411,"PlayerID":5035,"ShortName":"L.McKelvin","Name":"Leodis McKelvin","Team":"BUF","Number":21,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":0,"Updated":null,"KickReturnLong":46,"KickReturnTouchdowns":0,"KickReturnYards":75,"KickReturnYardsPerAttempt":37.5,"KickReturns":2,"PuntReturnLong":0,"PuntReturnTouchdowns":0,"PuntReturnYards":0,"PuntReturnYardsPerAttempt":0,"PuntReturns":0}],"HomeKicking":[{"PlayerGameID":5915386,"PlayerID":6410,"ShortName":"R.Lindell","Name":"Rian Lindell","Team":"BUF","Number":9,"Position":"K","PositionCategory":"ST","FantasyPosition":"K","FantasyPoints":10,"Updated":null,"ExtraPointsAttempted":4,"ExtraPointsMade":4,"FieldGoalPercentage":100,"FieldGoalsAttempted":2,"FieldGoalsLongestMade":42,"FieldGoalsMade":2}],"HomePassing":[{"PlayerGameID":5915396,"PlayerID":8283,"ShortName":"R.Fitzpatrick","Name":"Ryan Fitzpatrick","Team":"BUF","Number":14,"Position":"QB","PositionCategory":"OFF","FantasyPosition":"QB","FantasyPoints":19.3,"Updated":null,"PassingAttempts":35,"PassingCompletionPercentage":77.1,"PassingCompletions":27,"PassingInterceptions":1,"PassingLong":27,"PassingRating":109.82,"PassingSackYards":9,"PassingSacks":1,"PassingTouchdowns":3,"PassingYards":225,"PassingYardsPerAttempt":6.4,"PassingYardsPerCompletion":8.3,"TwoPointConversionPasses":0}],"HomePunting":[{"PlayerGameID":5915409,"PlayerID":14718,"ShortName":"S.Powell","Name":"Shawn Powell","Team":"BUF","Number":6,"Position":"P","PositionCategory":"ST","FantasyPosition":"P","FantasyPoints":0,"Updated":null,"PuntAverage":22,"PuntInside20":0,"PuntTouchbacks":0,"PuntYards":22,"Punts":1}],"HomeReceiving":[{"PlayerGameID":5915387,"PlayerID":2950,"ShortName":"St.Johnson","Name":"Steve Johnson","Team":"BUF","Number":13,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":13.1,"Updated":null,"FumblesLost":0,"ReceivingLong":27,"ReceivingTargets":7,"ReceivingTouchdowns":1,"ReceivingYards":71,"ReceivingYardsPerReception":14.2,"ReceivingYardsPerTarget":10.1,"ReceptionPercentage":71.4,"Receptions":5,"TwoPointConversionReceptions":0},{"PlayerGameID":5915397,"PlayerID":5701,"ShortName":"F.Jackson","Name":"Fred Jackson","Team":"BUF","Number":22,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":18,"Updated":null,"FumblesLost":0,"ReceivingLong":9,"ReceivingTargets":11,"ReceivingTouchdowns":1,"ReceivingYards":49,"ReceivingYardsPerReception":6.1,"ReceivingYardsPerTarget":4.5,"ReceptionPercentage":72.7,"Receptions":8,"TwoPointConversionReceptions":0},{"PlayerGameID":5915394,"PlayerID":10944,"ShortName":"D.Jones","Name":"Donald Jones","Team":"BUF","Number":19,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":10.7,"Updated":null,"FumblesLost":0,"ReceivingLong":20,"ReceivingTargets":5,"ReceivingTouchdowns":1,"ReceivingYards":47,"ReceivingYardsPerReception":11.8,"ReceivingYardsPerTarget":9.4,"ReceptionPercentage":80,"Receptions":4,"TwoPointConversionReceptions":0},{"PlayerGameID":5915415,"PlayerID":10949,"ShortName":"C.Spiller","Name":"CJ Spiller","Team":"BUF","Number":28,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":10.2,"Updated":null,"FumblesLost":0,"ReceivingLong":20,"ReceivingTargets":6,"ReceivingTouchdowns":0,"ReceivingYards":32,"ReceivingYardsPerReception":5.3,"ReceivingYardsPerTarget":5.3,"ReceptionPercentage":100,"Receptions":6,"TwoPointConversionReceptions":0},{"PlayerGameID":5915393,"PlayerID":12548,"ShortName":"S.Chandler","Name":"Scott Chandler","Team":"BUF","Number":84,"Position":"TE","PositionCategory":"OFF","FantasyPosition":"TE","FantasyPoints":1.5,"Updated":null,"FumblesLost":0,"ReceivingLong":13,"ReceivingTargets":4,"ReceivingTouchdowns":0,"ReceivingYards":15,"ReceivingYardsPerReception":7.5,"ReceivingYardsPerTarget":3.8,"ReceptionPercentage":50,"Receptions":2,"TwoPointConversionReceptions":0},{"PlayerGameID":5915395,"PlayerID":13763,"ShortName":"T.Graham","Name":"TJ Graham","Team":"BUF","Number":11,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":0.6,"Updated":null,"FumblesLost":0,"ReceivingLong":6,"ReceivingTargets":1,"ReceivingTouchdowns":0,"ReceivingYards":6,"ReceivingYardsPerReception":6,"ReceivingYardsPerTarget":6,"ReceptionPercentage":100,"Receptions":1,"TwoPointConversionReceptions":0},{"PlayerGameID":5915410,"PlayerID":7236,"ShortName":"B.Smith","Name":"Brad Smith","Team":"BUF","Number":16,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":0.7,"Updated":null,"FumblesLost":0,"ReceivingLong":5,"ReceivingTargets":1,"ReceivingTouchdowns":0,"ReceivingYards":5,"ReceivingYardsPerReception":5,"ReceivingYardsPerTarget":5,"ReceptionPercentage":100,"Receptions":1,"TwoPointConversionReceptions":0}],"HomeRushing":[{"PlayerGameID":5915397,"PlayerID":5701,"ShortName":"F.Jackson","Name":"Fred Jackson","Team":"BUF","Number":22,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":18,"Updated":null,"FumblesLost":0,"RushingAttempts":9,"RushingLong":13,"RushingTouchdowns":0,"RushingYards":71,"RushingYardsPerAttempt":7.9,"TwoPointConversionRuns":0},{"PlayerGameID":5915415,"PlayerID":10949,"ShortName":"C.Spiller","Name":"CJ Spiller","Team":"BUF","Number":28,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":10.2,"Updated":null,"FumblesLost":0,"RushingAttempts":12,"RushingLong":20,"RushingTouchdowns":0,"RushingYards":70,"RushingYardsPerAttempt":5.8,"TwoPointConversionRuns":0},{"PlayerGameID":5915396,"PlayerID":8283,"ShortName":"R.Fitzpatrick","Name":"Ryan Fitzpatrick","Team":"BUF","Number":14,"Position":"QB","PositionCategory":"OFF","FantasyPosition":"QB","FantasyPoints":19.3,"Updated":null,"FumblesLost":1,"RushingAttempts":2,"RushingLong":13,"RushingTouchdowns":0,"RushingYards":23,"RushingYardsPerAttempt":11.5,"TwoPointConversionRuns":0},{"PlayerGameID":5915410,"PlayerID":7236,"ShortName":"B.Smith","Name":"Brad Smith","Team":"BUF","Number":16,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":0.7,"Updated":null,"FumblesLost":0,"RushingAttempts":1,"RushingLong":2,"RushingTouchdowns":0,"RushingYards":2,"RushingYardsPerAttempt":2,"TwoPointConversionRuns":0}],"Score":{"StadiumDetails":null,"GameKey":"201210704","SeasonType":1,"Season":2012,"Week":7,"Date":"2012-10-21T13:00:00","AwayTeam":"TEN","HomeTeam":"BUF","AwayScore":35,"HomeScore":34,"Channel":"CBS","PointSpread":-4,"OverUnder":46.5,"Quarter":"F","TimeRemaining":null,"Possession":null,"Down":null,"Distance":null,"YardLine":null,"YardLineTerritory":null,"RedZone":null,"AwayScoreQuarter1":14,"AwayScoreQuarter2":7,"AwayScoreQuarter3":7,"AwayScoreQuarter4":7,"AwayScoreOvertime":0,"HomeScoreQuarter1":14,"HomeScoreQuarter2":6,"HomeScoreQuarter3":14,"HomeScoreQuarter4":0,"HomeScoreOvertime":0,"HasStarted":true,"IsInProgress":false,"IsOver":true,"Has1stQuarterStarted":true,"Has2ndQuarterStarted":true,"Has3rdQuarterStarted":true,"Has4thQuarterStarted":true,"IsOvertime":false,"DownAndDistance":null,"QuarterDescription":"Final","StadiumID":null,"LastUpdated":null},"ScoringDetails":[{"GameKey":"201210704","SeasonType":1,"PlayerID":6410,"Team":"BUF","Season":2012,"Week":7,"ScoringType":"FieldGoalMade","Length":31,"ScoringDetailID":307741,"PlayerGameID":5915386},{"GameKey":"201210704","SeasonType":1,"PlayerID":6410,"Team":"BUF","Season":2012,"Week":7,"ScoringType":"FieldGoalMade","Length":42,"ScoringDetailID":307742,"PlayerGameID":5915386},{"GameKey":"201210704","SeasonType":1,"PlayerID":12918,"Team":"TEN","Season":2012,"Week":7,"ScoringType":"RushingTouchdown","Length":1,"ScoringDetailID":307743,"PlayerGameID":5915465},{"GameKey":"201210704","SeasonType":1,"PlayerID":6828,"Team":"TEN","Season":2012,"Week":7,"ScoringType":"RushingTouchdown","Length":16,"ScoringDetailID":307744,"PlayerGameID":5915448},{"GameKey":"201210704","SeasonType":1,"PlayerID":12918,"Team":"TEN","Season":2012,"Week":7,"ScoringType":"RushingTouchdown","Length":1,"ScoringDetailID":307745,"PlayerGameID":5915465},{"GameKey":"201210704","SeasonType":1,"PlayerID":10944,"Team":"BUF","Season":2012,"Week":7,"ScoringType":"ReceivingTouchdown","Length":15,"ScoringDetailID":307746,"PlayerGameID":5915394},{"GameKey":"201210704","SeasonType":1,"PlayerID":8283,"Team":"BUF","Season":2012,"Week":7,"ScoringType":"PassingTouchdown","Length":15,"ScoringDetailID":307747,"PlayerGameID":5915396},{"GameKey":"201210704","SeasonType":1,"PlayerID":5701,"Team":"BUF","Season":2012,"Week":7,"ScoringType":"ReceivingTouchdown","Length":3,"ScoringDetailID":307748,"PlayerGameID":5915397},{"GameKey":"201210704","SeasonType":1,"PlayerID":8283,"Team":"BUF","Season":2012,"Week":7,"ScoringType":"PassingTouchdown","Length":3,"ScoringDetailID":307749,"PlayerGameID":5915396},{"GameKey":"201210704","SeasonType":1,"PlayerID":6828,"Team":"TEN","Season":2012,"Week":7,"ScoringType":"RushingTouchdown","Length":83,"ScoringDetailID":307750,"PlayerGameID":5915448},{"GameKey":"201210704","SeasonType":1,"PlayerID":7236,"Team":"BUF","Season":2012,"Week":7,"ScoringType":"KickoffReturnTouchdown","Length":89,"ScoringDetailID":307751,"PlayerGameID":5915410},{"GameKey":"201210704","SeasonType":1,"PlayerID":8564,"Team":"TEN","Season":2012,"Week":7,"ScoringType":"ReceivingTouchdown","Length":15,"ScoringDetailID":307752,"PlayerGameID":5915439},{"GameKey":"201210704","SeasonType":1,"PlayerID":1034,"Team":"TEN","Season":2012,"Week":7,"ScoringType":"PassingTouchdown","Length":15,"ScoringDetailID":307753,"PlayerGameID":5915447},{"GameKey":"201210704","SeasonType":1,"PlayerID":2950,"Team":"BUF","Season":2012,"Week":7,"ScoringType":"ReceivingTouchdown","Length":27,"ScoringDetailID":307754,"PlayerGameID":5915387},{"GameKey":"201210704","SeasonType":1,"PlayerID":8283,"Team":"BUF","Season":2012,"Week":7,"ScoringType":"PassingTouchdown","Length":27,"ScoringDetailID":307755,"PlayerGameID":5915396}],"ScoringPlays":[{"GameKey":"201210704","SeasonType":1,"ScoringPlayID":89058,"Season":2012,"Week":7,"AwayTeam":"TEN","HomeTeam":"BUF","Date":"2012-10-21T13:00:00","Sequence":1,"Team":"TEN","Quarter":"1","TimeRemaining":"10:38","PlayDescription":"C.Johnson 16 yd. run (R.Bironas kick) (8-77, 4:22)","AwayScore":7,"HomeScore":0},{"GameKey":"201210704","SeasonType":1,"ScoringPlayID":89059,"Season":2012,"Week":7,"AwayTeam":"TEN","HomeTeam":"BUF","Date":"2012-10-21T13:00:00","Sequence":2,"Team":"BUF","Quarter":"1","TimeRemaining":"3:01","PlayDescription":"F.Jackson 3 yd. pass from R.Fitzpatrick (R.Lindell kick) (13-83, 7:37)","AwayScore":7,"HomeScore":7},{"GameKey":"201210704","SeasonType":1,"ScoringPlayID":89060,"Season":2012,"Week":7,"AwayTeam":"TEN","HomeTeam":"BUF","Date":"2012-10-21T13:00:00","Sequence":3,"Team":"TEN","Quarter":"1","TimeRemaining":"2:43","PlayDescription":"C.Johnson 83 yd. run (R.Bironas kick) (1-83, 0:18)","AwayScore":14,"HomeScore":7},{"GameKey":"201210704","SeasonType":1,"ScoringPlayID":89061,"Season":2012,"Week":7,"AwayTeam":"TEN","HomeTeam":"BUF","Date":"2012-10-21T13:00:00","Sequence":4,"Team":"BUF","Quarter":"1","TimeRemaining":"2:31","PlayDescription":"B.Smith 89 yd. kickoff return (R.Lindell kick) (0-0, 0:12)","AwayScore":14,"HomeScore":14},{"GameKey":"201210704","SeasonType":1,"ScoringPlayID":89062,"Season":2012,"Week":7,"AwayTeam":"TEN","HomeTeam":"BUF","Date":"2012-10-21T13:00:00","Sequence":5,"Team":"TEN","Quarter":"2","TimeRemaining":"10:18","PlayDescription":"J.Harper 1 yd. run (R.Bironas kick) (14-80, 7:13)","AwayScore":21,"HomeScore":14},{"GameKey":"201210704","SeasonType":1,"ScoringPlayID":89063,"Season":2012,"Week":7,"AwayTeam":"TEN","HomeTeam":"BUF","Date":"2012-10-21T13:00:00","Sequence":6,"Team":"BUF","Quarter":"2","TimeRemaining":"3:56","PlayDescription":"R.Lindell 31 yd. Field Goal (10-68, 6:22)","AwayScore":21,"HomeScore":17},{"GameKey":"201210704","SeasonType":1,"ScoringPlayID":89064,"Season":2012,"Week":7,"AwayTeam":"TEN","HomeTeam":"BUF","Date":"2012-10-21T13:00:00","Sequence":7,"Team":"BUF","Quarter":"2","TimeRemaining":"0:00","PlayDescription":"R.Lindell 42 yd. Field Goal (10-63, 1:47)","AwayScore":21,"HomeScore":20},{"GameKey":"201210704","SeasonType":1,"ScoringPlayID":89065,"Season":2012,"Week":7,"AwayTeam":"TEN","HomeTeam":"BUF","Date":"2012-10-21T13:00:00","Sequence":8,"Team":"TEN","Quarter":"3","TimeRemaining":"11:45","PlayDescription":"J.Harper 1 yd. run (R.Bironas kick) (8-32, 2:58)","AwayScore":28,"HomeScore":20},{"GameKey":"201210704","SeasonType":1,"ScoringPlayID":89066,"Season":2012,"Week":7,"AwayTeam":"TEN","HomeTeam":"BUF","Date":"2012-10-21T13:00:00","Sequence":9,"Team":"BUF","Quarter":"3","TimeRemaining":"7:52","PlayDescription":"D.Jones 15 yd. pass from R.Fitzpatrick (R.Lindell kick) (7-66, 3:53)","AwayScore":28,"HomeScore":27},{"GameKey":"201210704","SeasonType":1,"ScoringPlayID":89067,"Season":2012,"Week":7,"AwayTeam":"TEN","HomeTeam":"BUF","Date":"2012-10-21T13:00:00","Sequence":10,"Team":"BUF","Quarter":"3","TimeRemaining":"0:05","PlayDescription":"St.Johnson 27 yd. pass from R.Fitzpatrick (R.Lindell kick) (9-80, 4:36)","AwayScore":28,"HomeScore":34},{"GameKey":"201210704","SeasonType":1,"ScoringPlayID":89068,"Season":2012,"Week":7,"AwayTeam":"TEN","HomeTeam":"BUF","Date":"2012-10-21T13:00:00","Sequence":11,"Team":"TEN","Quarter":"4","TimeRemaining":"1:03","PlayDescription":"N.Washington 15 yd. pass from M.Hasselbeck (R.Bironas kick) (7-52, 1:54)","AwayScore":35,"HomeScore":34}]},{"AwayDefense":[{"PlayerGameID":5915776,"PlayerID":11740,"ShortName":"S.Brown","Name":"Sheldon Brown","Team":"CLE","Number":24,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":19.1,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":1,"FumblesRecovered":1,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":6,"Sacks":1,"SoloTackles":9,"Tackles":10,"TacklesForLoss":null},{"PlayerGameID":5915783,"PlayerID":12881,"ShortName":"B.Skrine","Name":"Buster Skrine","Team":"CLE","Number":22,"Position":"DB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":6.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":6,"Tackles":8,"TacklesForLoss":null},{"PlayerGameID":5915778,"PlayerID":11054,"ShortName":"T.Ward","Name":"TJ Ward","Team":"CLE","Number":43,"Position":"SS","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":7,"Updated":null,"AssistedTackles":2,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":1,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":5,"Tackles":7,"TacklesForLoss":null},{"PlayerGameID":5915773,"PlayerID":2503,"ShortName":"D.Jackson","Name":"D'Qwell Jackson","Team":"CLE","Number":52,"Position":"ILB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":6.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":1,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":5,"Tackles":6,"TacklesForLoss":null},{"PlayerGameID":5915790,"PlayerID":14711,"ShortName":"C.Robertson","Name":"Craig Robertson","Team":"CLE","Number":53,"Position":"LB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":5.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":5,"Tackles":6,"TacklesForLoss":null},{"PlayerGameID":5915774,"PlayerID":8486,"ShortName":"K.Maiava","Name":"Kaluka Maiava","Team":"CLE","Number":56,"Position":"OLB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":8,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":5,"Sacks":1,"SoloTackles":3,"Tackles":4,"TacklesForLoss":null},{"PlayerGameID":5915777,"PlayerID":364,"ShortName":"U.Young","Name":"Usama Young","Team":"CLE","Number":28,"Position":"FS","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":3.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":3,"Tackles":4,"TacklesForLoss":null},{"PlayerGameID":5915771,"PlayerID":1214,"ShortName":"F.Rucker","Name":"Frostee Rucker","Team":"CLE","Number":92,"Position":"DE","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":8.7,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":2,"Sacks":1,"SoloTackles":2,"Tackles":3,"TacklesForLoss":null},{"PlayerGameID":5915797,"PlayerID":13896,"ShortName":"J.Hughes","Name":"John Hughes","Team":"CLE","Number":93,"Position":"DL","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":3.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":2,"Tackles":3,"TacklesForLoss":null},{"PlayerGameID":5915768,"PlayerID":12880,"ShortName":"J.Sheard","Name":"Jabaal Sheard","Team":"CLE","Number":97,"Position":"OLB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":3,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":2,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915775,"PlayerID":11043,"ShortName":"J.Haden","Name":"Joe Haden","Team":"CLE","Number":23,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":2,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":2,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915793,"PlayerID":13843,"ShortName":"I.Kitchen","Name":"Ishmaa'ily Kitchen","Team":"CLE","Number":67,"Position":"DL","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":2.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915799,"PlayerID":6528,"ShortName":"J.Parker","Name":"Juqua Parker","Team":"CLE","Number":95,"Position":"DL","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":1,"Updated":null,"AssistedTackles":2,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":0,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915769,"PlayerID":4096,"ShortName":"A.Rubin","Name":"Ahtyba Rubin","Team":"CLE","Number":71,"Position":"DT","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":0.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":0,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915770,"PlayerID":13911,"ShortName":"B.Winn","Name":"Billy Winn","Team":"CLE","Number":90,"Position":"DT","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":0.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":0,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915772,"PlayerID":13898,"ShortName":"J.Johnson","Name":"James-Michael Johnson","Team":"CLE","Number":50,"Position":"OLB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":0.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":0,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915800,"PlayerID":13649,"ShortName":"E.Stephens","Name":"Emmanuel Stephens","Team":"CLE","Number":96,"Position":"DL","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":1,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":1,"TacklesForLoss":null}],"AwayFantasyDefense":{"ScoringDetails":[],"GameKey":"201210714","SeasonType":1,"Season":2012,"Week":7,"Date":"2012-10-21T13:00:00","Team":"CLE","Opponent":"IND","PointsAllowed":17,"TouchdownsScored":0,"SoloTackles":46,"AssistedTackles":16,"Sacks":3,"SackYards":13,"PassesDefended":2,"FumblesForced":1,"FumblesRecovered":1,"FumbleReturnYards":2,"FumbleReturnTouchdowns":0,"Interceptions":0,"InterceptionReturnYards":0,"InterceptionReturnTouchdowns":0,"BlockedKicks":0,"Safeties":0,"PuntReturns":2,"PuntReturnYards":12,"PuntReturnTouchdowns":0,"PuntReturnLong":10,"KickReturns":2,"KickReturnYards":55,"KickReturnTouchdowns":0,"KickReturnLong":32,"BlockedKickReturnTouchdowns":0,"FieldGoalReturnTouchdowns":0,"FantasyPointsAllowed":55.84,"QuarterbackFantasyPointsAllowed":18.64,"RunningbackFantasyPointsAllowed":15.5,"WideReceiverFantasyPointsAllowed":14.1,"TightEndFantasyPointsAllowed":2.6,"KickerFantasyPointsAllowed":5,"BlockedKickReturnYards":0,"FieldGoalReturnYards":0,"QuarterbackHits":6,"TacklesForLoss":4,"DefensiveTouchdowns":0,"SpecialTeamsTouchdowns":0,"IsGameOver":true,"FantasyPoints":6,"Stadium":"Lucas Oil Stadium","Temperature":60,"Humidity":65,"WindSpeed":9,"ThirdDownAttempts":15,"ThirdDownConversions":6,"FourthDownAttempts":1,"FourthDownConversions":1,"PointsAllowedByDefenseSpecialTeams":17,"FanDuelSalary":null,"DraftKingsSalary":null,"FantasyDataSalary":null,"VictivSalary":null},"AwayKickPuntReturns":[{"PlayerGameID":5915781,"PlayerID":4291,"ShortName":"J.Cribbs","Name":"Joshua Cribbs","Team":"CLE","Number":16,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":0.8,"Updated":null,"KickReturnLong":32,"KickReturnTouchdowns":0,"KickReturnYards":55,"KickReturnYardsPerAttempt":27.5,"KickReturns":2,"PuntReturnLong":10,"PuntReturnTouchdowns":0,"PuntReturnYards":12,"PuntReturnYardsPerAttempt":6,"PuntReturns":2}],"AwayKicking":[{"PlayerGameID":5915780,"PlayerID":5714,"ShortName":"P.Dawson","Name":"Phil Dawson","Team":"CLE","Number":4,"Position":"K","PositionCategory":"ST","FantasyPosition":"K","FantasyPoints":1,"Updated":null,"ExtraPointsAttempted":1,"ExtraPointsMade":1,"FieldGoalPercentage":0,"FieldGoalsAttempted":0,"FieldGoalsLongestMade":0,"FieldGoalsMade":0}],"AwayPassing":[{"PlayerGameID":5915765,"PlayerID":13910,"ShortName":"B.Weeden","Name":"Brandon Weeden","Team":"CLE","Number":3,"Position":"QB","PositionCategory":"OFF","FantasyPosition":"QB","FantasyPoints":18.96,"Updated":null,"PassingAttempts":41,"PassingCompletionPercentage":61,"PassingCompletions":25,"PassingInterceptions":0,"PassingLong":33,"PassingRating":95.99,"PassingSackYards":0,"PassingSacks":0,"PassingTouchdowns":2,"PassingYards":264,"PassingYardsPerAttempt":6.4,"PassingYardsPerCompletion":10.6,"TwoPointConversionPasses":0}],"AwayPunting":[{"PlayerGameID":5915779,"PlayerID":10121,"ShortName":"R.Hodges","Name":"Reggie Hodges","Team":"CLE","Number":2,"Position":"P","PositionCategory":"ST","FantasyPosition":"P","FantasyPoints":0,"Updated":null,"PuntAverage":41.4,"PuntInside20":2,"PuntTouchbacks":0,"PuntYards":207,"Punts":5}],"AwayReceiving":[{"PlayerGameID":5915764,"PlayerID":14587,"ShortName":"J.Gordon","Name":"Josh Gordon","Team":"CLE","Number":13,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":11.9,"Updated":null,"FumblesLost":0,"ReceivingLong":33,"ReceivingTargets":10,"ReceivingTouchdowns":1,"ReceivingYards":59,"ReceivingYardsPerReception":29.5,"ReceivingYardsPerTarget":5.9,"ReceptionPercentage":20,"Receptions":2,"TwoPointConversionReceptions":0},{"PlayerGameID":5915796,"PlayerID":14735,"ShortName":"J.Cooper","Name":"Josh Cooper","Team":"CLE","Number":88,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":5.3,"Updated":null,"FumblesLost":0,"ReceivingLong":14,"ReceivingTargets":8,"ReceivingTouchdowns":0,"ReceivingYards":53,"ReceivingYardsPerReception":13.2,"ReceivingYardsPerTarget":6.6,"ReceptionPercentage":50,"Receptions":4,"TwoPointConversionReceptions":0},{"PlayerGameID":5915757,"PlayerID":12874,"ShortName":"G.Little","Name":"Greg Little","Team":"CLE","Number":15,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":11.2,"Updated":null,"FumblesLost":0,"ReceivingLong":14,"ReceivingTargets":7,"ReceivingTouchdowns":1,"ReceivingYards":52,"ReceivingYardsPerReception":8.7,"ReceivingYardsPerTarget":7.4,"ReceptionPercentage":85.7,"Receptions":6,"TwoPointConversionReceptions":0},{"PlayerGameID":5915763,"PlayerID":11756,"ShortName":"B.Watson","Name":"Benjamin Watson","Team":"CLE","Number":82,"Position":"TE","PositionCategory":"OFF","FantasyPosition":"TE","FantasyPoints":3.6,"Updated":null,"FumblesLost":0,"ReceivingLong":25,"ReceivingTargets":3,"ReceivingTouchdowns":0,"ReceivingYards":36,"ReceivingYardsPerReception":12,"ReceivingYardsPerTarget":12,"ReceptionPercentage":100,"Receptions":3,"TwoPointConversionReceptions":0},{"PlayerGameID":5915795,"PlayerID":13887,"ShortName":"T.Benjamin","Name":"Travis Benjamin","Team":"CLE","Number":80,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":3.3,"Updated":null,"FumblesLost":0,"ReceivingLong":12,"ReceivingTargets":5,"ReceivingTouchdowns":0,"ReceivingYards":33,"ReceivingYardsPerReception":11,"ReceivingYardsPerTarget":6.6,"ReceptionPercentage":60,"Receptions":3,"TwoPointConversionReceptions":0},{"PlayerGameID":5915784,"PlayerID":9277,"ShortName":"C.Ogbonnaya","Name":"Chris Ogbonnaya","Team":"CLE","Number":25,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":2.3,"Updated":null,"FumblesLost":0,"ReceivingLong":7,"ReceivingTargets":4,"ReceivingTouchdowns":0,"ReceivingYards":17,"ReceivingYardsPerReception":5.7,"ReceivingYardsPerTarget":4.2,"ReceptionPercentage":75,"Receptions":3,"TwoPointConversionReceptions":0},{"PlayerGameID":5915767,"PlayerID":13902,"ShortName":"T.Richardson","Name":"Trent Richardson","Team":"CLE","Number":33,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":1.9,"Updated":null,"FumblesLost":0,"ReceivingLong":9,"ReceivingTargets":2,"ReceivingTouchdowns":0,"ReceivingYards":11,"ReceivingYardsPerReception":5.5,"ReceivingYardsPerTarget":5.5,"ReceptionPercentage":100,"Receptions":2,"TwoPointConversionReceptions":0},{"PlayerGameID":5915781,"PlayerID":4291,"ShortName":"J.Cribbs","Name":"Joshua Cribbs","Team":"CLE","Number":16,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":0.8,"Updated":null,"FumblesLost":0,"ReceivingLong":8,"ReceivingTargets":1,"ReceivingTouchdowns":0,"ReceivingYards":8,"ReceivingYardsPerReception":8,"ReceivingYardsPerTarget":8,"ReceptionPercentage":100,"Receptions":1,"TwoPointConversionReceptions":0},{"PlayerGameID":5915766,"PlayerID":12861,"ShortName":"J.Cameron","Name":"Jordan Cameron","Team":"CLE","Number":84,"Position":"TE","PositionCategory":"OFF","FantasyPosition":"TE","FantasyPoints":0.4,"Updated":null,"FumblesLost":0,"ReceivingLong":4,"ReceivingTargets":1,"ReceivingTouchdowns":0,"ReceivingYards":4,"ReceivingYardsPerReception":4,"ReceivingYardsPerTarget":4,"ReceptionPercentage":100,"Receptions":1,"TwoPointConversionReceptions":0}],"AwayRushing":[{"PlayerGameID":5915782,"PlayerID":13530,"ShortName":"M.Hardesty","Name":"Montario Hardesty","Team":"CLE","Number":20,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":2.8,"Updated":null,"FumblesLost":0,"RushingAttempts":7,"RushingLong":9,"RushingTouchdowns":0,"RushingYards":28,"RushingYardsPerAttempt":4,"TwoPointConversionRuns":0},{"PlayerGameID":5915765,"PlayerID":13910,"ShortName":"B.Weeden","Name":"Brandon Weeden","Team":"CLE","Number":3,"Position":"QB","PositionCategory":"OFF","FantasyPosition":"QB","FantasyPoints":18.96,"Updated":null,"FumblesLost":0,"RushingAttempts":1,"RushingLong":13,"RushingTouchdowns":0,"RushingYards":13,"RushingYardsPerAttempt":13,"TwoPointConversionRuns":0},{"PlayerGameID":5915767,"PlayerID":13902,"ShortName":"T.Richardson","Name":"Trent Richardson","Team":"CLE","Number":33,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":1.9,"Updated":null,"FumblesLost":0,"RushingAttempts":8,"RushingLong":5,"RushingTouchdowns":0,"RushingYards":8,"RushingYardsPerAttempt":1,"TwoPointConversionRuns":0},{"PlayerGameID":5915784,"PlayerID":9277,"ShortName":"C.Ogbonnaya","Name":"Chris Ogbonnaya","Team":"CLE","Number":25,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":2.3,"Updated":null,"FumblesLost":0,"RushingAttempts":1,"RushingLong":6,"RushingTouchdowns":0,"RushingYards":6,"RushingYardsPerAttempt":6,"TwoPointConversionRuns":0}],"Game":{"StadiumDetails":null,"GameKey":"201210714","Date":"2012-10-21T13:00:00","SeasonType":1,"Season":2012,"Week":7,"Stadium":"Lucas Oil Stadium","PlayingSurface":"Artificial","Temperature":60,"Humidity":65,"WindSpeed":9,"AwayTeam":"CLE","HomeTeam":"IND","AwayScore":13,"HomeScore":17,"TotalScore":30,"OverUnder":46.5,"PointSpread":-1,"AwayScoreQuarter1":0,"AwayScoreQuarter2":6,"AwayScoreQuarter3":7,"AwayScoreQuarter4":0,"AwayScoreOvertime":0,"HomeScoreQuarter1":7,"HomeScoreQuarter2":7,"HomeScoreQuarter3":3,"HomeScoreQuarter4":0,"HomeScoreOvertime":0,"AwayTimeOfPossession":"24:39","HomeTimeOfPossession":"35:21","AwayFirstDowns":19,"HomeFirstDowns":21,"AwayFirstDownsByRushing":3,"HomeFirstDownsByRushing":10,"AwayFirstDownsByPassing":14,"HomeFirstDownsByPassing":8,"AwayFirstDownsByPenalty":2,"HomeFirstDownsByPenalty":3,"AwayOffensivePlays":58,"HomeOffensivePlays":69,"AwayOffensiveYards":319,"HomeOffensiveYards":321,"AwayOffensiveYardsPerPlay":5.5,"HomeOffensiveYardsPerPlay":4.7,"AwayTouchdowns":2,"HomeTouchdowns":2,"AwayRushingAttempts":17,"HomeRushingAttempts":37,"AwayRushingYards":55,"HomeRushingYards":148,"AwayRushingYardsPerAttempt":3.2,"HomeRushingYardsPerAttempt":4,"AwayRushingTouchdowns":0,"HomeRushingTouchdowns":2,"AwayPassingAttempts":41,"HomePassingAttempts":29,"AwayPassingCompletions":25,"HomePassingCompletions":16,"AwayPassingYards":264,"HomePassingYards":173,"AwayPassingTouchdowns":2,"HomePassingTouchdowns":0,"AwayPassingInterceptions":0,"HomePassingInterceptions":0,"AwayPassingYardsPerAttempt":6.4,"HomePassingYardsPerAttempt":6,"AwayPassingYardsPerCompletion":10.6,"HomePassingYardsPerCompletion":10.8,"AwayCompletionPercentage":61,"HomeCompletionPercentage":55.2,"AwayPasserRating":95.99,"HomePasserRating":72.92,"AwayThirdDownAttempts":13,"HomeThirdDownAttempts":15,"AwayThirdDownConversions":6,"HomeThirdDownConversions":6,"AwayThirdDownPercentage":46.2,"HomeThirdDownPercentage":40,"AwayFourthDownAttempts":1,"HomeFourthDownAttempts":1,"AwayFourthDownConversions":0,"HomeFourthDownConversions":1,"AwayFourthDownPercentage":0,"HomeFourthDownPercentage":100,"AwayRedZoneAttempts":1,"HomeRedZoneAttempts":3,"AwayRedZoneConversions":1,"HomeRedZoneConversions":2,"AwayGoalToGoAttempts":1,"HomeGoalToGoAttempts":2,"AwayGoalToGoConversions":1,"HomeGoalToGoConversions":2,"AwayReturnYards":12,"HomeReturnYards":8,"AwayPenalties":9,"HomePenalties":7,"AwayPenaltyYards":75,"HomePenaltyYards":50,"AwayFumbles":1,"HomeFumbles":1,"AwayFumblesLost":0,"HomeFumblesLost":1,"AwayTimesSacked":0,"HomeTimesSacked":3,"AwayTimesSackedYards":0,"HomeTimesSackedYards":13,"AwaySafeties":0,"HomeSafeties":0,"AwayPunts":5,"HomePunts":5,"AwayPuntYards":207,"HomePuntYards":242,"AwayPuntAverage":41.4,"HomePuntAverage":48.4,"AwayGiveaways":0,"HomeGiveaways":1,"AwayTakeaways":1,"HomeTakeaways":0,"AwayTurnoverDifferential":1,"HomeTurnoverDifferential":-1,"AwayKickoffs":3,"HomeKickoffs":4,"AwayKickoffsInEndZone":3,"HomeKickoffsInEndZone":4,"AwayKickoffTouchbacks":2,"HomeKickoffTouchbacks":2,"AwayPuntsHadBlocked":0,"HomePuntsHadBlocked":0,"AwayPuntNetAverage":39.8,"HomePuntNetAverage":38,"AwayExtraPointKickingAttempts":1,"HomeExtraPointKickingAttempts":2,"AwayExtraPointKickingConversions":1,"HomeExtraPointKickingConversions":2,"AwayExtraPointsHadBlocked":0,"HomeExtraPointsHadBlocked":0,"AwayExtraPointPassingAttempts":0,"HomeExtraPointPassingAttempts":0,"AwayExtraPointPassingConversions":0,"HomeExtraPointPassingConversions":0,"AwayExtraPointRushingAttempts":1,"HomeExtraPointRushingAttempts":0,"AwayExtraPointRushingConversions":0,"HomeExtraPointRushingConversions":0,"AwayFieldGoalAttempts":0,"HomeFieldGoalAttempts":1,"AwayFieldGoalsMade":0,"HomeFieldGoalsMade":1,"AwayFieldGoalsHadBlocked":0,"HomeFieldGoalsHadBlocked":0,"AwayPuntReturns":2,"HomePuntReturns":1,"AwayPuntReturnYards":12,"HomePuntReturnYards":8,"AwayKickReturns":2,"HomeKickReturns":1,"AwayKickReturnYards":55,"HomeKickReturnYards":24,"AwayInterceptionReturns":0,"HomeInterceptionReturns":0,"AwayInterceptionReturnYards":0,"HomeInterceptionReturnYards":0,"AwaySoloTackles":46,"AwayAssistedTackles":16,"AwayQuarterbackHits":6,"AwayTacklesForLoss":4,"AwaySacks":3,"AwaySackYards":13,"AwayPassesDefended":2,"AwayFumblesForced":1,"AwayFumblesRecovered":1,"AwayFumbleReturnYards":2,"AwayFumbleReturnTouchdowns":0,"AwayInterceptionReturnTouchdowns":0,"AwayBlockedKicks":0,"AwayPuntReturnTouchdowns":0,"AwayPuntReturnLong":10,"AwayKickReturnTouchdowns":0,"AwayKickReturnLong":32,"AwayBlockedKickReturnYards":0,"AwayBlockedKickReturnTouchdowns":0,"AwayFieldGoalReturnYards":0,"AwayFieldGoalReturnTouchdowns":0,"AwayPuntNetYards":199,"HomeSoloTackles":33,"HomeAssistedTackles":14,"HomeQuarterbackHits":6,"HomeTacklesForLoss":2,"HomeSacks":0,"HomeSackYards":0,"HomePassesDefended":6,"HomeFumblesForced":0,"HomeFumblesRecovered":0,"HomeFumbleReturnYards":0,"HomeFumbleReturnTouchdowns":0,"HomeInterceptionReturnTouchdowns":0,"HomeBlockedKicks":0,"HomePuntReturnTouchdowns":0,"HomePuntReturnLong":8,"HomeKickReturnTouchdowns":0,"HomeKickReturnLong":24,"HomeBlockedKickReturnYards":0,"HomeBlockedKickReturnTouchdowns":0,"HomeFieldGoalReturnYards":0,"HomeFieldGoalReturnTouchdowns":0,"HomePuntNetYards":190,"IsGameOver":true,"GameID":62613,"StadiumID":null,"AwayTwoPointConversionReturns":null,"HomeTwoPointConversionReturns":null},"HomeDefense":[{"PlayerGameID":5915721,"PlayerID":13999,"ShortName":"J.Freeman","Name":"Jerrell Freeman","Team":"IND","Number":50,"Position":"OLB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":4.5,"Updated":null,"AssistedTackles":3,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":3,"Tackles":6,"TacklesForLoss":null},{"PlayerGameID":5915725,"PlayerID":2379,"ShortName":"A.Bethea","Name":"Antoine Bethea","Team":"IND","Number":41,"Position":"FS","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":6,"Updated":null,"AssistedTackles":2,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":1,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":4,"Tackles":6,"TacklesForLoss":null},{"PlayerGameID":5915726,"PlayerID":9681,"ShortName":"J.Powers","Name":"Jerraud Powers","Team":"IND","Number":25,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":6.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":2,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":4,"Tackles":5,"TacklesForLoss":null},{"PlayerGameID":5915720,"PlayerID":11126,"ShortName":"K.Conner","Name":"Kavell Conner","Team":"IND","Number":53,"Position":"ILB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":3.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":3,"Tackles":4,"TacklesForLoss":null},{"PlayerGameID":5915719,"PlayerID":11132,"ShortName":"J.Hughes","Name":"Jerry Hughes","Team":"IND","Number":92,"Position":"OLB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":4,"Updated":null,"AssistedTackles":2,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":3,"TacklesForLoss":null},{"PlayerGameID":5915723,"PlayerID":9664,"ShortName":"V.Davis","Name":"Vontae Davis","Team":"IND","Number":23,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":3,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":3,"Tackles":3,"TacklesForLoss":null},{"PlayerGameID":5915733,"PlayerID":11199,"ShortName":"C.Vaughn","Name":"Cassius Vaughn","Team":"IND","Number":32,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":4,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":1,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":3,"Tackles":3,"TacklesForLoss":null},{"PlayerGameID":5915738,"PlayerID":11124,"ShortName":"P.Angerer","Name":"Pat Angerer","Team":"IND","Number":51,"Position":"ILB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":4.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":2,"Tackles":3,"TacklesForLoss":null},{"PlayerGameID":5915717,"PlayerID":669,"ShortName":"A.Johnson","Name":"Antonio Johnson","Team":"IND","Number":99,"Position":"NT","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":2.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915724,"PlayerID":1765,"ShortName":"T.Zbikowski","Name":"Tom Zbikowski","Team":"IND","Number":28,"Position":"SS","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":3.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":2,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915732,"PlayerID":12557,"ShortName":"J.Gordy","Name":"Josh Gordy","Team":"IND","Number":27,"Position":"CB","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":1,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915735,"PlayerID":12968,"ShortName":"J.Lefeged","Name":"Joe Lefeged","Team":"IND","Number":35,"Position":"S","PositionCategory":"DEF","FantasyPosition":"DB","FantasyPoints":1,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915744,"PlayerID":12403,"ShortName":"C.Geathers","Name":"Clifton Geathers","Team":"IND","Number":66,"Position":"DE","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":1.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":2,"TacklesForLoss":null},{"PlayerGameID":5915716,"PlayerID":11139,"ShortName":"R.Mathews","Name":"Ricardo Mathews","Team":"IND","Number":91,"Position":"DE","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":0.5,"Updated":null,"AssistedTackles":1,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":0,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915722,"PlayerID":4131,"ShortName":"D.Freeney","Name":"Dwight Freeney","Team":"IND","Number":93,"Position":"DE/LB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":3,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915739,"PlayerID":12901,"ShortName":"M.Harvey","Name":"Mario Harvey","Team":"IND","Number":54,"Position":"ILB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":1,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915740,"PlayerID":14003,"ShortName":"J.Hickman","Name":"Justin Hickman","Team":"IND","Number":55,"Position":"OLB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":1,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915741,"PlayerID":8902,"ShortName":"M.Fokou","Name":"Moise Fokou","Team":"IND","Number":58,"Position":"ILB","PositionCategory":"DEF","FantasyPosition":"LB","FantasyPoints":1,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":1,"TacklesForLoss":null},{"PlayerGameID":5915745,"PlayerID":14743,"ShortName":"L.Guy","Name":"Lawrence Guy","Team":"IND","Number":67,"Position":"DE","PositionCategory":"DEF","FantasyPosition":"DL","FantasyPoints":1,"Updated":null,"AssistedTackles":0,"FumbleReturnTouchdowns":0,"FumblesForced":0,"FumblesRecovered":0,"InterceptionReturnTouchdowns":0,"InterceptionReturnYards":0,"Interceptions":0,"PassesDefended":0,"QuarterbackHits":0,"SackYards":0,"Sacks":0,"SoloTackles":1,"Tackles":1,"TacklesForLoss":null}],"HomeFantasyDefense":{"ScoringDetails":[],"GameKey":"201210714","SeasonType":1,"Season":2012,"Week":7,"Date":"2012-10-21T13:00:00","Team":"IND","Opponent":"CLE","PointsAllowed":13,"TouchdownsScored":0,"SoloTackles":33,"AssistedTackles":14,"Sacks":0,"SackYards":0,"PassesDefended":6,"FumblesForced":0,"FumblesRecovered":0,"FumbleReturnYards":0,"FumbleReturnTouchdowns":0,"Interceptions":0,"InterceptionReturnYards":0,"InterceptionReturnTouchdowns":0,"BlockedKicks":0,"Safeties":0,"PuntReturns":1,"PuntReturnYards":8,"PuntReturnTouchdowns":0,"PuntReturnLong":8,"KickReturns":1,"KickReturnYards":24,"KickReturnTouchdowns":0,"KickReturnLong":24,"BlockedKickReturnTouchdowns":0,"FieldGoalReturnTouchdowns":0,"FantasyPointsAllowed":63.46,"QuarterbackFantasyPointsAllowed":18.96,"RunningbackFantasyPointsAllowed":7,"WideReceiverFantasyPointsAllowed":32.5,"TightEndFantasyPointsAllowed":4,"KickerFantasyPointsAllowed":1,"BlockedKickReturnYards":0,"FieldGoalReturnYards":0,"QuarterbackHits":6,"TacklesForLoss":2,"DefensiveTouchdowns":0,"SpecialTeamsTouchdowns":0,"IsGameOver":true,"FantasyPoints":4,"Stadium":"Lucas Oil Stadium","Temperature":60,"Humidity":65,"WindSpeed":9,"ThirdDownAttempts":13,"ThirdDownConversions":6,"FourthDownAttempts":1,"FourthDownConversions":0,"PointsAllowedByDefenseSpecialTeams":13,"FanDuelSalary":null,"DraftKingsSalary":null,"FantasyDataSalary":null,"VictivSalary":null},"HomeKickPuntReturns":[{"PlayerGameID":5915731,"PlayerID":4067,"ShortName":"M.Moore","Name":"Mewelde Moore","Team":"IND","Number":26,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":1.1,"Updated":null,"KickReturnLong":24,"KickReturnTouchdowns":0,"KickReturnYards":24,"KickReturnYardsPerAttempt":24,"KickReturns":1,"PuntReturnLong":0,"PuntReturnTouchdowns":0,"PuntReturnYards":0,"PuntReturnYardsPerAttempt":0,"PuntReturns":0},{"PlayerGameID":5915729,"PlayerID":14005,"ShortName":"T.Hilton","Name":"TY Hilton","Team":"IND","Number":13,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":2.2,"Updated":null,"KickReturnLong":0,"KickReturnTouchdowns":0,"KickReturnYards":0,"KickReturnYardsPerAttempt":0,"KickReturns":0,"PuntReturnLong":8,"PuntReturnTouchdowns":0,"PuntReturnYards":8,"PuntReturnYardsPerAttempt":8,"PuntReturns":1}],"HomeKicking":[{"PlayerGameID":5915704,"PlayerID":3258,"ShortName":"A.Vinatieri","Name":"Adam Vinatieri","Team":"IND","Number":4,"Position":"K","PositionCategory":"ST","FantasyPosition":"K","FantasyPoints":5,"Updated":null,"ExtraPointsAttempted":2,"ExtraPointsMade":2,"FieldGoalPercentage":100,"FieldGoalsAttempted":1,"FieldGoalsLongestMade":38,"FieldGoalsMade":1}],"HomePassing":[{"PlayerGameID":5915706,"PlayerID":14008,"ShortName":"A.Luck","Name":"Andrew Luck","Team":"IND","Number":12,"Position":"QB","PositionCategory":"OFF","FantasyPosition":"QB","FantasyPoints":18.64,"Updated":null,"PassingAttempts":29,"PassingCompletionPercentage":55.2,"PassingCompletions":16,"PassingInterceptions":0,"PassingLong":30,"PassingRating":74.78,"PassingSackYards":13,"PassingSacks":3,"PassingTouchdowns":0,"PassingYards":186,"PassingYardsPerAttempt":6.4,"PassingYardsPerCompletion":11.6,"TwoPointConversionPasses":0}],"HomePunting":[{"PlayerGameID":5915727,"PlayerID":8618,"ShortName":"P.McAfee","Name":"Pat McAfee","Team":"IND","Number":1,"Position":"P","PositionCategory":"ST","FantasyPosition":"P","FantasyPoints":0,"Updated":null,"PuntAverage":48.4,"PuntInside20":1,"PuntTouchbacks":2,"PuntYards":242,"Punts":5}],"HomeReceiving":[{"PlayerGameID":5915715,"PlayerID":5002,"ShortName":"R.Wayne","Name":"Reggie Wayne","Team":"IND","Number":87,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":7.3,"Updated":null,"FumblesLost":0,"ReceivingLong":30,"ReceivingTargets":11,"ReceivingTouchdowns":0,"ReceivingYards":73,"ReceivingYardsPerReception":12.2,"ReceivingYardsPerTarget":6.6,"ReceptionPercentage":54.5,"Receptions":6,"TwoPointConversionReceptions":0},{"PlayerGameID":5915705,"PlayerID":2730,"ShortName":"D.Avery","Name":"Donnie Avery","Team":"IND","Number":11,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":4.6,"Updated":null,"FumblesLost":0,"ReceivingLong":16,"ReceivingTargets":6,"ReceivingTouchdowns":0,"ReceivingYards":46,"ReceivingYardsPerReception":11.5,"ReceivingYardsPerTarget":7.7,"ReceptionPercentage":66.7,"Receptions":4,"TwoPointConversionReceptions":0},{"PlayerGameID":5915729,"PlayerID":14005,"ShortName":"T.Hilton","Name":"TY Hilton","Team":"IND","Number":13,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":2.2,"Updated":null,"FumblesLost":0,"ReceivingLong":14,"ReceivingTargets":5,"ReceivingTouchdowns":0,"ReceivingYards":22,"ReceivingYardsPerReception":11,"ReceivingYardsPerTarget":4.4,"ReceptionPercentage":40,"Receptions":2,"TwoPointConversionReceptions":0},{"PlayerGameID":5915707,"PlayerID":13991,"ShortName":"V.Ballard","Name":"Vick Ballard","Team":"IND","Number":33,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":10.3,"Updated":null,"FumblesLost":0,"ReceivingLong":19,"ReceivingTargets":1,"ReceivingTouchdowns":0,"ReceivingYards":19,"ReceivingYardsPerReception":19,"ReceivingYardsPerTarget":19,"ReceptionPercentage":100,"Receptions":1,"TwoPointConversionReceptions":0},{"PlayerGameID":5915746,"PlayerID":13997,"ShortName":"C.Fleener","Name":"Coby Fleener","Team":"IND","Number":80,"Position":"TE","PositionCategory":"OFF","FantasyPosition":"TE","FantasyPoints":1.7,"Updated":null,"FumblesLost":0,"ReceivingLong":10,"ReceivingTargets":2,"ReceivingTouchdowns":0,"ReceivingYards":17,"ReceivingYardsPerReception":8.5,"ReceivingYardsPerTarget":8.5,"ReceptionPercentage":100,"Receptions":2,"TwoPointConversionReceptions":0},{"PlayerGameID":5915714,"PlayerID":13987,"ShortName":"D.Allen","Name":"Dwayne Allen","Team":"IND","Number":83,"Position":"TE","PositionCategory":"OFF","FantasyPosition":"TE","FantasyPoints":0.9,"Updated":null,"FumblesLost":0,"ReceivingLong":9,"ReceivingTargets":2,"ReceivingTouchdowns":0,"ReceivingYards":9,"ReceivingYardsPerReception":9,"ReceivingYardsPerTarget":4.5,"ReceptionPercentage":50,"Receptions":1,"TwoPointConversionReceptions":0},{"PlayerGameID":5915730,"PlayerID":13992,"ShortName":"L.Brazill","Name":"LaVon Brazill","Team":"IND","Number":15,"Position":"WR","PositionCategory":"OFF","FantasyPosition":"WR","FantasyPoints":0,"Updated":null,"FumblesLost":0,"ReceivingLong":0,"ReceivingTargets":1,"ReceivingTouchdowns":0,"ReceivingYards":0,"ReceivingYardsPerReception":0,"ReceivingYardsPerTarget":0,"ReceptionPercentage":0,"Receptions":0,"TwoPointConversionReceptions":0},{"PlayerGameID":5915734,"PlayerID":12959,"ShortName":"D.Carter","Name":"Delone Carter","Team":"IND","Number":34,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":4.1,"Updated":null,"FumblesLost":0,"ReceivingLong":0,"ReceivingTargets":1,"ReceivingTouchdowns":0,"ReceivingYards":0,"ReceivingYardsPerReception":0,"ReceivingYardsPerTarget":0,"ReceptionPercentage":0,"Receptions":0,"TwoPointConversionReceptions":0}],"HomeRushing":[{"PlayerGameID":5915707,"PlayerID":13991,"ShortName":"V.Ballard","Name":"Vick Ballard","Team":"IND","Number":33,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":10.3,"Updated":null,"FumblesLost":0,"RushingAttempts":20,"RushingLong":26,"RushingTouchdowns":0,"RushingYards":84,"RushingYardsPerAttempt":4.2,"TwoPointConversionRuns":0},{"PlayerGameID":5915734,"PlayerID":12959,"ShortName":"D.Carter","Name":"Delone Carter","Team":"IND","Number":34,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":4.1,"Updated":null,"FumblesLost":0,"RushingAttempts":11,"RushingLong":6,"RushingTouchdowns":0,"RushingYards":41,"RushingYardsPerAttempt":3.7,"TwoPointConversionRuns":0},{"PlayerGameID":5915706,"PlayerID":14008,"ShortName":"A.Luck","Name":"Andrew Luck","Team":"IND","Number":12,"Position":"QB","PositionCategory":"OFF","FantasyPosition":"QB","FantasyPoints":18.64,"Updated":null,"FumblesLost":1,"RushingAttempts":3,"RushingLong":5,"RushingTouchdowns":2,"RushingYards":12,"RushingYardsPerAttempt":4,"TwoPointConversionRuns":0},{"PlayerGameID":5915731,"PlayerID":4067,"ShortName":"M.Moore","Name":"Mewelde Moore","Team":"IND","Number":26,"Position":"RB","PositionCategory":"OFF","FantasyPosition":"RB","FantasyPoints":1.1,"Updated":null,"FumblesLost":0,"RushingAttempts":3,"RushingLong":5,"RushingTouchdowns":0,"RushingYards":11,"RushingYardsPerAttempt":3.7,"TwoPointConversionRuns":0}],"Score":{"StadiumDetails":null,"GameKey":"201210714","SeasonType":1,"Season":2012,"Week":7,"Date":"2012-10-21T13:00:00","AwayTeam":"CLE","HomeTeam":"IND","AwayScore":13,"HomeScore":17,"Channel":"CBS","PointSpread":-1,"OverUnder":46.5,"Quarter":"F","TimeRemaining":null,"Possession":null,"Down":null,"Distance":null,"YardLine":null,"YardLineTerritory":null,"RedZone":null,"AwayScoreQuarter1":0,"AwayScoreQuarter2":6,"AwayScoreQuarter3":7,"AwayScoreQuarter4":0,"AwayScoreOvertime":0,"HomeScoreQuarter1":7,"HomeScoreQuarter2":7,"HomeScoreQuarter3":3,"HomeScoreQuarter4":0,"HomeScoreOvertime":0,"HasStarted":true,"IsInProgress":false,"IsOver":true,"Has1stQuarterStarted":true,"Has2ndQuarterStarted":true,"Has3rdQuarterStarted":true,"Has4thQuarterStarted":true,"IsOvertime":false,"DownAndDistance":null,"QuarterDescription":"Final","StadiumID":null,"LastUpdated":null},"ScoringDetails":[{"GameKey":"201210714","SeasonType":1,"PlayerID":3258,"Team":"IND","Season":2012,"Week":7,"ScoringType":"FieldGoalMade","Length":38,"ScoringDetailID":307779,"PlayerGameID":5915704},{"GameKey":"201210714","SeasonType":1,"PlayerID":12874,"Team":"CLE","Season":2012,"Week":7,"ScoringType":"ReceivingTouchdown","Length":14,"ScoringDetailID":307780,"PlayerGameID":5915757},{"GameKey":"201210714","SeasonType":1,"PlayerID":13910,"Team":"CLE","Season":2012,"Week":7,"ScoringType":"PassingTouchdown","Length":14,"ScoringDetailID":307781,"PlayerGameID":5915765},{"GameKey":"201210714","SeasonType":1,"PlayerID":14587,"Team":"CLE","Season":2012,"Week":7,"ScoringType":"ReceivingTouchdown","Length":33,"ScoringDetailID":307782,"PlayerGameID":5915764},{"GameKey":"201210714","SeasonType":1,"PlayerID":13910,"Team":"CLE","Season":2012,"Week":7,"ScoringType":"PassingTouchdown","Length":33,"ScoringDetailID":307783,"PlayerGameID":5915765},{"GameKey":"201210714","SeasonType":1,"PlayerID":14008,"Team":"IND","Season":2012,"Week":7,"ScoringType":"RushingTouchdown","Length":5,"ScoringDetailID":307784,"PlayerGameID":5915706},{"GameKey":"201210714","SeasonType":1,"PlayerID":14008,"Team":"IND","Season":2012,"Week":7,"ScoringType":"RushingTouchdown","Length":3,"ScoringDetailID":307785,"PlayerGameID":5915706}],"ScoringPlays":[{"GameKey":"201210714","SeasonType":1,"ScoringPlayID":89087,"Season":2012,"Week":7,"AwayTeam":"CLE","HomeTeam":"IND","Date":"2012-10-21T13:00:00","Sequence":1,"Team":"CLE","Quarter":"3","TimeRemaining":"11:53","PlayDescription":"J.Gordon 33 yd. pass from B.Weeden (P.Dawson kick) (6-80, 3:07)","AwayScore":13,"HomeScore":14},{"GameKey":"201210714","SeasonType":1,"ScoringPlayID":89088,"Season":2012,"Week":7,"AwayTeam":"CLE","HomeTeam":"IND","Date":"2012-10-21T13:00:00","Sequence":2,"Team":"IND","Quarter":"3","TimeRemaining":"3:19","PlayDescription":"A.Vinatieri 38 yd. Field Goal (17-61, 8:34)","AwayScore":13,"HomeScore":17},{"GameKey":"201210714","SeasonType":1,"ScoringPlayID":89089,"Season":2012,"Week":7,"AwayTeam":"CLE","HomeTeam":"IND","Date":"2012-10-21T13:00:00","Sequence":3,"Team":"IND","Quarter":"1","TimeRemaining":"7:23","PlayDescription":"A.Luck 3 yd. run (A.Vinatieri kick) (11-80, 7:37)","AwayScore":0,"HomeScore":7},{"GameKey":"201210714","SeasonType":1,"ScoringPlayID":89090,"Season":2012,"Week":7,"AwayTeam":"CLE","HomeTeam":"IND","Date":"2012-10-21T13:00:00","Sequence":4,"Team":"CLE","Quarter":"2","TimeRemaining":"14:01","PlayDescription":"G.Little 14 yd. pass from B.Weeden (kick aborted) (16-90, 8:22)","AwayScore":6,"HomeScore":7},{"GameKey":"201210714","SeasonType":1,"ScoringPlayID":89091,"Season":2012,"Week":7,"AwayTeam":"CLE","HomeTeam":"IND","Date":"2012-10-21T13:00:00","Sequence":5,"Team":"IND","Quarter":"2","TimeRemaining":"7:41","PlayDescription":"A.Luck 5 yd. run (A.Vinatieri kick) (14-76, 6:20)","AwayScore":6,"HomeScore":14}]}]
|
@@ -0,0 +1 @@
|
|
1
|
+
[{"CustomD365FantasyPoints":354.14,"ScoringDetails":[{"GameKey":"201410130","SeasonType":1,"PlayerID":2593,"Team":"GB","Season":2014,"Week":1,"ScoringType":"PassingTouchdown","Length":3,"ScoringDetailID":369614,"PlayerGameID":10934015},{"GameKey":"201410212","SeasonType":1,"PlayerID":2593,"Team":"GB","Season":2014,"Week":2,"ScoringType":"PassingTouchdown","Length":6,"ScoringDetailID":385607,"PlayerGameID":11141270},{"GameKey":"201410212","SeasonType":1,"PlayerID":2593,"Team":"GB","Season":2014,"Week":2,"ScoringType":"PassingTouchdown","Length":1,"ScoringDetailID":385609,"PlayerGameID":11141270},{"GameKey":"201410212","SeasonType":1,"PlayerID":2593,"Team":"GB","Season":2014,"Week":2,"ScoringType":"PassingTouchdown","Length":80,"ScoringDetailID":385612,"PlayerGameID":11141270},{"GameKey":"201410311","SeasonType":1,"PlayerID":2593,"Team":"GB","Season":2014,"Week":3,"ScoringType":"PassingTouchdown","Length":10,"ScoringDetailID":392827,"PlayerGameID":11310755},{"GameKey":"201410406","SeasonType":1,"PlayerID":2593,"Team":"GB","Season":2014,"Week":4,"ScoringType":"PassingTouchdown","Length":3,"ScoringDetailID":393769,"PlayerGameID":11482317},{"GameKey":"201410406","SeasonType":1,"PlayerID":2593,"Team":"GB","Season":2014,"Week":4,"ScoringType":"PassingTouchdown","Length":22,"ScoringDetailID":393773,"PlayerGameID":11482317},{"GameKey":"201410406","SeasonType":1,"PlayerID":2593,"Team":"GB","Season":2014,"Week":4,"ScoringType":"PassingTouchdown","Length":11,"ScoringDetailID":393776,"PlayerGameID":11482317},{"GameKey":"201410406","SeasonType":1,"PlayerID":2593,"Team":"GB","Season":2014,"Week":4,"ScoringType":"PassingTouchdown","Length":3,"ScoringDetailID":393778,"PlayerGameID":11482317},{"GameKey":"201410512","SeasonType":1,"PlayerID":2593,"Team":"GB","Season":2014,"Week":5,"ScoringType":"PassingTouchdown","Length":8,"ScoringDetailID":395729,"PlayerGameID":11641539},{"GameKey":"201410512","SeasonType":1,"PlayerID":2593,"Team":"GB","Season":2014,"Week":5,"ScoringType":"PassingTouchdown","Length":66,"ScoringDetailID":395731,"PlayerGameID":11641539},{"GameKey":"201410512","SeasonType":1,"PlayerID":2593,"Team":"GB","Season":2014,"Week":5,"ScoringType":"PassingTouchdown","Length":11,"ScoringDetailID":395733,"PlayerGameID":11641539},{"GameKey":"201410619","SeasonType":1,"PlayerID":2593,"Team":"GB","Season":2014,"Week":6,"ScoringType":"PassingTouchdown","Length":9,"ScoringDetailID":402311,"PlayerGameID":11836771},{"GameKey":"201410619","SeasonType":1,"PlayerID":2593,"Team":"GB","Season":2014,"Week":6,"ScoringType":"PassingTouchdown","Length":5,"ScoringDetailID":402317,"PlayerGameID":11836771},{"GameKey":"201410619","SeasonType":1,"PlayerID":2593,"Team":"GB","Season":2014,"Week":6,"ScoringType":"PassingTouchdown","Length":4,"ScoringDetailID":402323,"PlayerGameID":11836771},{"GameKey":"201410712","SeasonType":1,"PlayerID":2593,"Team":"GB","Season":2014,"Week":7,"ScoringType":"PassingTouchdown","Length":59,"ScoringDetailID":403477,"PlayerGameID":12077226},{"GameKey":"201410712","SeasonType":1,"PlayerID":2593,"Team":"GB","Season":2014,"Week":7,"ScoringType":"PassingTouchdown","Length":3,"ScoringDetailID":403481,"PlayerGameID":12077226},{"GameKey":"201410712","SeasonType":1,"PlayerID":2593,"Team":"GB","Season":2014,"Week":7,"ScoringType":"PassingTouchdown","Length":21,"ScoringDetailID":403484,"PlayerGameID":12077226},{"GameKey":"201410822","SeasonType":1,"PlayerID":2593,"Team":"GB","Season":2014,"Week":8,"ScoringType":"PassingTouchdown","Length":70,"ScoringDetailID":405834,"PlayerGameID":12365492},{"GameKey":"201410822","SeasonType":1,"PlayerID":2593,"Team":"GB","Season":2014,"Week":8,"ScoringType":"RushingTouchdown","Length":14,"ScoringDetailID":405848,"PlayerGameID":12365492},{"GameKey":"201411012","SeasonType":1,"PlayerID":2593,"Team":"GB","Season":2014,"Week":10,"ScoringType":"PassingTouchdown","Length":1,"ScoringDetailID":409744,"PlayerGameID":12825704},{"GameKey":"201411012","SeasonType":1,"PlayerID":2593,"Team":"GB","Season":2014,"Week":10,"ScoringType":"PassingTouchdown","Length":4,"ScoringDetailID":409746,"PlayerGameID":12825704},{"GameKey":"201411012","SeasonType":1,"PlayerID":2593,"Team":"GB","Season":2014,"Week":10,"ScoringType":"PassingTouchdown","Length":73,"ScoringDetailID":409748,"PlayerGameID":12825704},{"GameKey":"201411012","SeasonType":1,"PlayerID":2593,"Team":"GB","Season":2014,"Week":10,"ScoringType":"PassingTouchdown","Length":40,"ScoringDetailID":409750,"PlayerGameID":12825704},{"GameKey":"201411012","SeasonType":1,"PlayerID":2593,"Team":"GB","Season":2014,"Week":10,"ScoringType":"PassingTouchdown","Length":56,"ScoringDetailID":409752,"PlayerGameID":12825704},{"GameKey":"201411012","SeasonType":1,"PlayerID":2593,"Team":"GB","Season":2014,"Week":10,"ScoringType":"PassingTouchdown","Length":18,"ScoringDetailID":409754,"PlayerGameID":12825704},{"GameKey":"201411112","SeasonType":1,"PlayerID":2593,"Team":"GB","Season":2014,"Week":11,"ScoringType":"PassingTouchdown","Length":6,"ScoringDetailID":411257,"PlayerGameID":12976095},{"GameKey":"201411112","SeasonType":1,"PlayerID":2593,"Team":"GB","Season":2014,"Week":11,"ScoringType":"PassingTouchdown","Length":27,"ScoringDetailID":411261,"PlayerGameID":12976095},{"GameKey":"201411112","SeasonType":1,"PlayerID":2593,"Team":"GB","Season":2014,"Week":11,"ScoringType":"PassingTouchdown","Length":32,"ScoringDetailID":411269,"PlayerGameID":12976095},{"GameKey":"201411220","SeasonType":1,"PlayerID":2593,"Team":"GB","Season":2014,"Week":12,"ScoringType":"PassingTouchdown","Length":1,"ScoringDetailID":413557,"PlayerGameID":13149145},{"GameKey":"201411220","SeasonType":1,"PlayerID":2593,"Team":"GB","Season":2014,"Week":12,"ScoringType":"PassingTouchdown","Length":10,"ScoringDetailID":413562,"PlayerGameID":13149145},{"GameKey":"201411312","SeasonType":1,"PlayerID":2593,"Team":"GB","Season":2014,"Week":13,"ScoringType":"PassingTouchdown","Length":32,"ScoringDetailID":416743,"PlayerGameID":13370526},{"GameKey":"201411312","SeasonType":1,"PlayerID":2593,"Team":"GB","Season":2014,"Week":13,"ScoringType":"PassingTouchdown","Length":45,"ScoringDetailID":416749,"PlayerGameID":13370526},{"GameKey":"201411412","SeasonType":1,"PlayerID":2593,"Team":"GB","Season":2014,"Week":14,"ScoringType":"PassingTouchdown","Length":1,"ScoringDetailID":419474,"PlayerGameID":13615203},{"GameKey":"201411412","SeasonType":1,"PlayerID":2593,"Team":"GB","Season":2014,"Week":14,"ScoringType":"PassingTouchdown","Length":10,"ScoringDetailID":419476,"PlayerGameID":13615203},{"GameKey":"201411412","SeasonType":1,"PlayerID":2593,"Team":"GB","Season":2014,"Week":14,"ScoringType":"PassingTouchdown","Length":60,"ScoringDetailID":419484,"PlayerGameID":13615203},{"GameKey":"201411633","SeasonType":1,"PlayerID":2593,"Team":"GB","Season":2014,"Week":16,"ScoringType":"PassingTouchdown","Length":1,"ScoringDetailID":424377,"PlayerGameID":13942311},{"GameKey":"201411712","SeasonType":1,"PlayerID":2593,"Team":"GB","Season":2014,"Week":17,"ScoringType":"PassingTouchdown","Length":4,"ScoringDetailID":426444,"PlayerGameID":14154122},{"GameKey":"201411712","SeasonType":1,"PlayerID":2593,"Team":"GB","Season":2014,"Week":17,"ScoringType":"PassingTouchdown","Length":13,"ScoringDetailID":426450,"PlayerGameID":14154122},{"GameKey":"201411712","SeasonType":1,"PlayerID":2593,"Team":"GB","Season":2014,"Week":17,"ScoringType":"RushingTouchdown","Length":1,"ScoringDetailID":426451,"PlayerGameID":14154122}],"PlayerID":2593,"SeasonType":1,"Season":2014,"Team":"GB","Number":12,"Name":"Aaron Rodgers","Position":"QB","PositionCategory":"OFF","Activated":16,"Played":16,"Started":16,"PassingAttempts":520,"PassingCompletions":341,"PassingYards":4381,"PassingCompletionPercentage":65.6,"PassingYardsPerAttempt":8.4,"PassingYardsPerCompletion":12.8,"PassingTouchdowns":38,"PassingInterceptions":5,"PassingRating":112.19,"PassingLong":80,"PassingSacks":28,"PassingSackYards":174,"RushingAttempts":43,"RushingYards":269,"RushingYardsPerAttempt":6.3,"RushingTouchdowns":2,"RushingLong":19,"ReceivingTargets":0,"Receptions":0,"ReceivingYards":0,"ReceivingYardsPerReception":0,"ReceivingTouchdowns":0,"ReceivingLong":0,"Fumbles":10,"FumblesLost":2,"PuntReturns":0,"PuntReturnYards":0,"PuntReturnYardsPerAttempt":0,"PuntReturnTouchdowns":0,"PuntReturnLong":0,"KickReturns":0,"KickReturnYards":0,"KickReturnYardsPerAttempt":0,"KickReturnTouchdowns":0,"KickReturnLong":0,"SoloTackles":0,"AssistedTackles":0,"TacklesForLoss":0,"Sacks":0,"SackYards":0,"QuarterbackHits":0,"PassesDefended":0,"FumblesForced":0,"FumblesRecovered":0,"FumbleReturnYards":-16,"FumbleReturnTouchdowns":0,"Interceptions":0,"InterceptionReturnYards":0,"InterceptionReturnTouchdowns":0,"BlockedKicks":0,"SpecialTeamsSoloTackles":0,"SpecialTeamsAssistedTackles":0,"MiscSoloTackles":1,"MiscAssistedTackles":0,"Punts":0,"PuntYards":0,"PuntAverage":0,"FieldGoalsAttempted":0,"FieldGoalsMade":0,"FieldGoalsLongestMade":0,"ExtraPointsMade":0,"TwoPointConversionPasses":1,"TwoPointConversionRuns":0,"TwoPointConversionReceptions":0,"FantasyPoints":354.14,"FantasyPointsPPR":354.14,"ReceptionPercentage":0,"ReceivingYardsPerTarget":0,"Tackles":0,"OffensiveTouchdowns":2,"DefensiveTouchdowns":0,"SpecialTeamsTouchdowns":0,"Touchdowns":2,"FantasyPosition":"QB","FieldGoalPercentage":0,"PlayerSeasonID":14248493,"FumblesOwnRecoveries":5,"FumblesOutOfBounds":0,"KickReturnFairCatches":0,"PuntReturnFairCatches":0,"PuntTouchbacks":0,"PuntInside20":0,"PuntNetAverage":0,"ExtraPointsAttempted":0,"BlockedKickReturnTouchdowns":0,"FieldGoalReturnTouchdowns":0,"Safeties":0,"FieldGoalsHadBlocked":0,"PuntsHadBlocked":0,"ExtraPointsHadBlocked":0,"PuntLong":0,"BlockedKickReturnYards":0,"FieldGoalReturnYards":0,"PuntNetYards":0,"SpecialTeamsFumblesForced":0,"SpecialTeamsFumblesRecovered":0,"MiscFumblesForced":0,"MiscFumblesRecovered":5,"ShortName":"A.Rodgers","SafetiesAllowed":0,"Temperature":53,"Humidity":70,"WindSpeed":7,"OffensiveSnapsPlayed":983,"DefensiveSnapsPlayed":0,"SpecialTeamsSnapsPlayed":0,"OffensiveTeamSnaps":1050,"DefensiveTeamSnaps":1093,"SpecialTeamsTeamSnaps":355,"AuctionValue":null,"AuctionValuePPR":null},{"CustomD365FantasyPoints":350.74,"ScoringDetails":[{"GameKey":"201410110","SeasonType":1,"PlayerID":14008,"Team":"IND","Season":2014,"Week":1,"ScoringType":"PassingTouchdown","Length":41,"ScoringDetailID":369769,"PlayerGameID":11015770},{"GameKey":"201410110","SeasonType":1,"PlayerID":14008,"Team":"IND","Season":2014,"Week":1,"ScoringType":"PassingTouchdown","Length":9,"ScoringDetailID":369773,"PlayerGameID":11015770},{"GameKey":"201410110","SeasonType":1,"PlayerID":14008,"Team":"IND","Season":2014,"Week":1,"ScoringType":"RushingTouchdown","Length":9,"ScoringDetailID":369776,"PlayerGameID":11015770},{"GameKey":"201410214","SeasonType":1,"PlayerID":14008,"Team":"IND","Season":2014,"Week":2,"ScoringType":"PassingTouchdown","Length":1,"ScoringDetailID":385641,"PlayerGameID":11242598},{"GameKey":"201410214","SeasonType":1,"PlayerID":14008,"Team":"IND","Season":2014,"Week":2,"ScoringType":"PassingTouchdown","Length":2,"ScoringDetailID":385645,"PlayerGameID":11242598},{"GameKey":"201410214","SeasonType":1,"PlayerID":14008,"Team":"IND","Season":2014,"Week":2,"ScoringType":"PassingTouchdown","Length":7,"ScoringDetailID":385650,"PlayerGameID":11242598},{"GameKey":"201410315","SeasonType":1,"PlayerID":14008,"Team":"IND","Season":2014,"Week":3,"ScoringType":"PassingTouchdown","Length":6,"ScoringDetailID":392857,"PlayerGameID":11310603},{"GameKey":"201410315","SeasonType":1,"PlayerID":14008,"Team":"IND","Season":2014,"Week":3,"ScoringType":"PassingTouchdown","Length":7,"ScoringDetailID":392861,"PlayerGameID":11310603},{"GameKey":"201410315","SeasonType":1,"PlayerID":14008,"Team":"IND","Season":2014,"Week":3,"ScoringType":"PassingTouchdown","Length":1,"ScoringDetailID":392863,"PlayerGameID":11310603},{"GameKey":"201410315","SeasonType":1,"PlayerID":14008,"Team":"IND","Season":2014,"Week":3,"ScoringType":"PassingTouchdown","Length":1,"ScoringDetailID":392866,"PlayerGameID":11310603},{"GameKey":"201410414","SeasonType":1,"PlayerID":14008,"Team":"IND","Season":2014,"Week":4,"ScoringType":"PassingTouchdown","Length":7,"ScoringDetailID":393810,"PlayerGameID":11482181},{"GameKey":"201410414","SeasonType":1,"PlayerID":14008,"Team":"IND","Season":2014,"Week":4,"ScoringType":"PassingTouchdown","Length":28,"ScoringDetailID":393814,"PlayerGameID":11482181},{"GameKey":"201410414","SeasonType":1,"PlayerID":14008,"Team":"IND","Season":2014,"Week":4,"ScoringType":"PassingTouchdown","Length":2,"ScoringDetailID":393816,"PlayerGameID":11482181},{"GameKey":"201410414","SeasonType":1,"PlayerID":14008,"Team":"IND","Season":2014,"Week":4,"ScoringType":"PassingTouchdown","Length":15,"ScoringDetailID":393819,"PlayerGameID":11482181},{"GameKey":"201410514","SeasonType":1,"PlayerID":14008,"Team":"IND","Season":2014,"Week":5,"ScoringType":"PassingTouchdown","Length":6,"ScoringDetailID":395755,"PlayerGameID":11664244},{"GameKey":"201410514","SeasonType":1,"PlayerID":14008,"Team":"IND","Season":2014,"Week":5,"ScoringType":"RushingTouchdown","Length":13,"ScoringDetailID":395757,"PlayerGameID":11664244},{"GameKey":"201410613","SeasonType":1,"PlayerID":14008,"Team":"IND","Season":2014,"Week":6,"ScoringType":"PassingTouchdown","Length":5,"ScoringDetailID":402243,"PlayerGameID":11813993},{"GameKey":"201410613","SeasonType":1,"PlayerID":14008,"Team":"IND","Season":2014,"Week":6,"ScoringType":"PassingTouchdown","Length":4,"ScoringDetailID":402245,"PlayerGameID":11813993},{"GameKey":"201410613","SeasonType":1,"PlayerID":14008,"Team":"IND","Season":2014,"Week":6,"ScoringType":"PassingTouchdown","Length":33,"ScoringDetailID":402252,"PlayerGameID":11813993},{"GameKey":"201410714","SeasonType":1,"PlayerID":14008,"Team":"IND","Season":2014,"Week":7,"ScoringType":"PassingTouchdown","Length":32,"ScoringDetailID":403493,"PlayerGameID":12077213},{"GameKey":"201410714","SeasonType":1,"PlayerID":14008,"Team":"IND","Season":2014,"Week":7,"ScoringType":"PassingTouchdown","Length":10,"ScoringDetailID":403495,"PlayerGameID":12077213},{"GameKey":"201410828","SeasonType":1,"PlayerID":14008,"Team":"IND","Season":2014,"Week":8,"ScoringType":"PassingTouchdown","Length":21,"ScoringDetailID":405818,"PlayerGameID":12319611},{"GameKey":"201410828","SeasonType":1,"PlayerID":14008,"Team":"IND","Season":2014,"Week":8,"ScoringType":"PassingTouchdown","Length":28,"ScoringDetailID":405824,"PlayerGameID":12319611},{"GameKey":"201410828","SeasonType":1,"PlayerID":14008,"Team":"IND","Season":2014,"Week":8,"ScoringType":"PassingTouchdown","Length":31,"ScoringDetailID":405830,"PlayerGameID":12319611},{"GameKey":"201410923","SeasonType":1,"PlayerID":14008,"Team":"IND","Season":2014,"Week":9,"ScoringType":"PassingTouchdown","Length":32,"ScoringDetailID":407882,"PlayerGameID":12652625},{"GameKey":"201410923","SeasonType":1,"PlayerID":14008,"Team":"IND","Season":2014,"Week":9,"ScoringType":"PassingTouchdown","Length":31,"ScoringDetailID":407887,"PlayerGameID":12652625},{"GameKey":"201410923","SeasonType":1,"PlayerID":14008,"Team":"IND","Season":2014,"Week":9,"ScoringType":"PassingTouchdown","Length":40,"ScoringDetailID":407890,"PlayerGameID":12652625},{"GameKey":"201410923","SeasonType":1,"PlayerID":14008,"Team":"IND","Season":2014,"Week":9,"ScoringType":"PassingTouchdown","Length":2,"ScoringDetailID":407892,"PlayerGameID":12652625},{"GameKey":"201411114","SeasonType":1,"PlayerID":14008,"Team":"IND","Season":2014,"Week":11,"ScoringType":"PassingTouchdown","Length":10,"ScoringDetailID":411339,"PlayerGameID":12999302},{"GameKey":"201411114","SeasonType":1,"PlayerID":14008,"Team":"IND","Season":2014,"Week":11,"ScoringType":"PassingTouchdown","Length":1,"ScoringDetailID":411345,"PlayerGameID":12999302},{"GameKey":"201411214","SeasonType":1,"PlayerID":14008,"Team":"IND","Season":2014,"Week":12,"ScoringType":"PassingTouchdown","Length":73,"ScoringDetailID":413551,"PlayerGameID":13149148},{"GameKey":"201411314","SeasonType":1,"PlayerID":14008,"Team":"IND","Season":2014,"Week":13,"ScoringType":"PassingTouchdown","Length":30,"ScoringDetailID":416649,"PlayerGameID":13369709},{"GameKey":"201411314","SeasonType":1,"PlayerID":14008,"Team":"IND","Season":2014,"Week":13,"ScoringType":"PassingTouchdown","Length":3,"ScoringDetailID":416652,"PlayerGameID":13369709},{"GameKey":"201411314","SeasonType":1,"PlayerID":14008,"Team":"IND","Season":2014,"Week":13,"ScoringType":"PassingTouchdown","Length":48,"ScoringDetailID":416658,"PlayerGameID":13369709},{"GameKey":"201411314","SeasonType":1,"PlayerID":14008,"Team":"IND","Season":2014,"Week":13,"ScoringType":"PassingTouchdown","Length":73,"ScoringDetailID":416663,"PlayerGameID":13369709},{"GameKey":"201411314","SeasonType":1,"PlayerID":14008,"Team":"IND","Season":2014,"Week":13,"ScoringType":"PassingTouchdown","Length":79,"ScoringDetailID":416666,"PlayerGameID":13369709},{"GameKey":"201411408","SeasonType":1,"PlayerID":14008,"Team":"IND","Season":2014,"Week":14,"ScoringType":"RushingTouchdown","Length":11,"ScoringDetailID":419325,"PlayerGameID":13556123},{"GameKey":"201411408","SeasonType":1,"PlayerID":14008,"Team":"IND","Season":2014,"Week":14,"ScoringType":"PassingTouchdown","Length":42,"ScoringDetailID":419330,"PlayerGameID":13556123},{"GameKey":"201411408","SeasonType":1,"PlayerID":14008,"Team":"IND","Season":2014,"Week":14,"ScoringType":"PassingTouchdown","Length":1,"ScoringDetailID":419334,"PlayerGameID":13556123},{"GameKey":"201411514","SeasonType":1,"PlayerID":14008,"Team":"IND","Season":2014,"Week":15,"ScoringType":"PassingTouchdown","Length":26,"ScoringDetailID":421527,"PlayerGameID":13742952},{"GameKey":"201411514","SeasonType":1,"PlayerID":14008,"Team":"IND","Season":2014,"Week":15,"ScoringType":"PassingTouchdown","Length":3,"ScoringDetailID":421529,"PlayerGameID":13742952},{"GameKey":"201411734","SeasonType":1,"PlayerID":14008,"Team":"IND","Season":2014,"Week":17,"ScoringType":"PassingTouchdown","Length":7,"ScoringDetailID":426546,"PlayerGameID":14153121},{"GameKey":"201411734","SeasonType":1,"PlayerID":14008,"Team":"IND","Season":2014,"Week":17,"ScoringType":"PassingTouchdown","Length":1,"ScoringDetailID":426548,"PlayerGameID":14153121}],"PlayerID":14008,"SeasonType":1,"Season":2014,"Team":"IND","Number":12,"Name":"Andrew Luck","Position":"QB","PositionCategory":"OFF","Activated":16,"Played":16,"Started":16,"PassingAttempts":616,"PassingCompletions":380,"PassingYards":4761,"PassingCompletionPercentage":61.7,"PassingYardsPerAttempt":7.7,"PassingYardsPerCompletion":12.5,"PassingTouchdowns":40,"PassingInterceptions":16,"PassingRating":96.52,"PassingLong":80,"PassingSacks":27,"PassingSackYards":161,"RushingAttempts":64,"RushingYards":263,"RushingYardsPerAttempt":4.1,"RushingTouchdowns":3,"RushingLong":20,"ReceivingTargets":0,"Receptions":0,"ReceivingYards":0,"ReceivingYardsPerReception":0,"ReceivingTouchdowns":0,"ReceivingLong":0,"Fumbles":12,"FumblesLost":6,"PuntReturns":0,"PuntReturnYards":0,"PuntReturnYardsPerAttempt":0,"PuntReturnTouchdowns":0,"PuntReturnLong":0,"KickReturns":0,"KickReturnYards":0,"KickReturnYardsPerAttempt":0,"KickReturnTouchdowns":0,"KickReturnLong":0,"SoloTackles":0,"AssistedTackles":0,"TacklesForLoss":0,"Sacks":0,"SackYards":0,"QuarterbackHits":0,"PassesDefended":0,"FumblesForced":0,"FumblesRecovered":0,"FumbleReturnYards":-20,"FumbleReturnTouchdowns":0,"Interceptions":0,"InterceptionReturnYards":0,"InterceptionReturnTouchdowns":0,"BlockedKicks":0,"SpecialTeamsSoloTackles":0,"SpecialTeamsAssistedTackles":0,"MiscSoloTackles":2,"MiscAssistedTackles":1,"Punts":0,"PuntYards":0,"PuntAverage":0,"FieldGoalsAttempted":0,"FieldGoalsMade":0,"FieldGoalsLongestMade":0,"ExtraPointsMade":0,"TwoPointConversionPasses":0,"TwoPointConversionRuns":0,"TwoPointConversionReceptions":0,"FantasyPoints":350.74,"FantasyPointsPPR":350.74,"ReceptionPercentage":0,"ReceivingYardsPerTarget":0,"Tackles":0,"OffensiveTouchdowns":3,"DefensiveTouchdowns":0,"SpecialTeamsTouchdowns":0,"Touchdowns":3,"FantasyPosition":"QB","FieldGoalPercentage":0,"PlayerSeasonID":14248607,"FumblesOwnRecoveries":3,"FumblesOutOfBounds":0,"KickReturnFairCatches":0,"PuntReturnFairCatches":0,"PuntTouchbacks":0,"PuntInside20":0,"PuntNetAverage":0,"ExtraPointsAttempted":0,"BlockedKickReturnTouchdowns":0,"FieldGoalReturnTouchdowns":0,"Safeties":0,"FieldGoalsHadBlocked":0,"PuntsHadBlocked":0,"ExtraPointsHadBlocked":0,"PuntLong":0,"BlockedKickReturnYards":0,"FieldGoalReturnYards":0,"PuntNetYards":0,"SpecialTeamsFumblesForced":0,"SpecialTeamsFumblesRecovered":0,"MiscFumblesForced":0,"MiscFumblesRecovered":3,"ShortName":"A.Luck","SafetiesAllowed":0,"Temperature":58,"Humidity":62,"WindSpeed":8,"OffensiveSnapsPlayed":1072,"DefensiveSnapsPlayed":0,"SpecialTeamsSnapsPlayed":0,"OffensiveTeamSnaps":1155,"DefensiveTeamSnaps":1046,"SpecialTeamsTeamSnaps":409,"AuctionValue":null,"AuctionValuePPR":null}]
|
@@ -0,0 +1 @@
|
|
1
|
+
[{"CustomD365FantasyPoints":44.1,"ScoringDetails":[{"GameKey":"201411114","SeasonType":1,"PlayerID":15565,"Team":"NE","Season":2014,"Week":11,"ScoringType":"RushingTouchdown","Length":4,"ScoringDetailID":411335,"PlayerGameID":12999315},{"GameKey":"201411114","SeasonType":1,"PlayerID":15565,"Team":"NE","Season":2014,"Week":11,"ScoringType":"RushingTouchdown","Length":2,"ScoringDetailID":411337,"PlayerGameID":12999315},{"GameKey":"201411114","SeasonType":1,"PlayerID":15565,"Team":"NE","Season":2014,"Week":11,"ScoringType":"RushingTouchdown","Length":2,"ScoringDetailID":411343,"PlayerGameID":12999315},{"GameKey":"201411114","SeasonType":1,"PlayerID":15565,"Team":"NE","Season":2014,"Week":11,"ScoringType":"RushingTouchdown","Length":1,"ScoringDetailID":411346,"PlayerGameID":12999315}],"GameKey":"201411114","PlayerID":15565,"SeasonType":1,"Season":2014,"GameDate":"2014-11-16T20:30:00","Week":11,"Team":"NE","Opponent":"IND","HomeOrAway":"AWAY","Number":35,"Name":"Jonas Gray","Position":"RB","PositionCategory":"OFF","Activated":1,"Played":1,"Started":1,"PassingAttempts":0,"PassingCompletions":0,"PassingYards":0,"PassingCompletionPercentage":0,"PassingYardsPerAttempt":0,"PassingYardsPerCompletion":0,"PassingTouchdowns":0,"PassingInterceptions":0,"PassingRating":0,"PassingLong":0,"PassingSacks":0,"PassingSackYards":0,"RushingAttempts":37,"RushingYards":201,"RushingYardsPerAttempt":5.4,"RushingTouchdowns":4,"RushingLong":20,"ReceivingTargets":0,"Receptions":0,"ReceivingYards":0,"ReceivingYardsPerReception":0,"ReceivingTouchdowns":0,"ReceivingLong":0,"Fumbles":0,"FumblesLost":0,"PuntReturns":0,"PuntReturnYards":0,"PuntReturnYardsPerAttempt":0,"PuntReturnTouchdowns":0,"PuntReturnLong":0,"KickReturns":0,"KickReturnYards":0,"KickReturnYardsPerAttempt":0,"KickReturnTouchdowns":0,"KickReturnLong":0,"SoloTackles":0,"AssistedTackles":0,"TacklesForLoss":0,"Sacks":0.0,"SackYards":0,"QuarterbackHits":0,"PassesDefended":0,"FumblesForced":0,"FumblesRecovered":0,"FumbleReturnYards":0,"FumbleReturnTouchdowns":0,"Interceptions":0,"InterceptionReturnYards":0,"InterceptionReturnTouchdowns":0,"BlockedKicks":0,"SpecialTeamsSoloTackles":0,"SpecialTeamsAssistedTackles":0,"MiscSoloTackles":0,"MiscAssistedTackles":0,"Punts":0,"PuntYards":0,"PuntAverage":0,"FieldGoalsAttempted":0,"FieldGoalsMade":0,"FieldGoalsLongestMade":0,"ExtraPointsMade":0,"TwoPointConversionPasses":0,"TwoPointConversionRuns":0,"TwoPointConversionReceptions":0,"FantasyPoints":44.1,"FantasyPointsPPR":44.1,"ReceptionPercentage":0,"ReceivingYardsPerTarget":0,"Tackles":0,"OffensiveTouchdowns":4,"DefensiveTouchdowns":0,"SpecialTeamsTouchdowns":0,"Touchdowns":4,"FantasyPosition":"RB","FieldGoalPercentage":0,"PlayerGameID":12999315,"FumblesOwnRecoveries":0,"FumblesOutOfBounds":0,"KickReturnFairCatches":0,"PuntReturnFairCatches":0,"PuntTouchbacks":0,"PuntInside20":0,"PuntNetAverage":0,"ExtraPointsAttempted":0,"BlockedKickReturnTouchdowns":0,"FieldGoalReturnTouchdowns":0,"Safeties":0,"FieldGoalsHadBlocked":0,"PuntsHadBlocked":0,"ExtraPointsHadBlocked":0,"PuntLong":0,"BlockedKickReturnYards":0,"FieldGoalReturnYards":0,"PuntNetYards":0,"SpecialTeamsFumblesForced":0,"SpecialTeamsFumblesRecovered":0,"MiscFumblesForced":0,"MiscFumblesRecovered":0,"ShortName":"J.Gray","PlayingSurface":"Dome","IsGameOver":true,"SafetiesAllowed":0,"Stadium":"Lucas Oil Stadium","Temperature":31,"Humidity":95,"WindSpeed":4,"FanDuelSalary":5800,"DraftKingsSalary":null,"FantasyDataSalary":5800,"OffensiveSnapsPlayed":57,"DefensiveSnapsPlayed":0,"SpecialTeamsSnapsPlayed":0,"OffensiveTeamSnaps":77,"DefensiveTeamSnaps":57,"SpecialTeamsTeamSnaps":16,"VictivSalary":null},{"CustomD365FantasyPoints":39.9,"ScoringDetails":[{"GameKey":"201411135","SeasonType":1,"PlayerID":16597,"Team":"TB","Season":2014,"Week":11,"ScoringType":"ReceivingTouchdown","Length":36,"ScoringDetailID":411318,"PlayerGameID":12975555},{"GameKey":"201411135","SeasonType":1,"PlayerID":16597,"Team":"TB","Season":2014,"Week":11,"ScoringType":"ReceivingTouchdown","Length":56,"ScoringDetailID":411320,"PlayerGameID":12975555}],"GameKey":"201411135","PlayerID":16597,"SeasonType":1,"Season":2014,"GameDate":"2014-11-16T13:00:00","Week":11,"Team":"TB","Opponent":"WAS","HomeOrAway":"AWAY","Number":13,"Name":"Mike Evans","Position":"WR","PositionCategory":"OFF","Activated":1,"Played":1,"Started":1,"PassingAttempts":0,"PassingCompletions":0,"PassingYards":0,"PassingCompletionPercentage":0,"PassingYardsPerAttempt":0,"PassingYardsPerCompletion":0,"PassingTouchdowns":0,"PassingInterceptions":0,"PassingRating":0,"PassingLong":0,"PassingSacks":0,"PassingSackYards":0,"RushingAttempts":0,"RushingYards":0,"RushingYardsPerAttempt":0,"RushingTouchdowns":0,"RushingLong":0,"ReceivingTargets":9,"Receptions":7,"ReceivingYards":209,"ReceivingYardsPerReception":29.9,"ReceivingTouchdowns":2,"ReceivingLong":56,"Fumbles":0,"FumblesLost":0,"PuntReturns":0,"PuntReturnYards":0,"PuntReturnYardsPerAttempt":0,"PuntReturnTouchdowns":0,"PuntReturnLong":0,"KickReturns":0,"KickReturnYards":0,"KickReturnYardsPerAttempt":0,"KickReturnTouchdowns":0,"KickReturnLong":0,"SoloTackles":0,"AssistedTackles":0,"TacklesForLoss":0,"Sacks":0.0,"SackYards":0,"QuarterbackHits":0,"PassesDefended":0,"FumblesForced":0,"FumblesRecovered":0,"FumbleReturnYards":0,"FumbleReturnTouchdowns":0,"Interceptions":0,"InterceptionReturnYards":0,"InterceptionReturnTouchdowns":0,"BlockedKicks":0,"SpecialTeamsSoloTackles":0,"SpecialTeamsAssistedTackles":0,"MiscSoloTackles":0,"MiscAssistedTackles":0,"Punts":0,"PuntYards":0,"PuntAverage":0,"FieldGoalsAttempted":0,"FieldGoalsMade":0,"FieldGoalsLongestMade":0,"ExtraPointsMade":0,"TwoPointConversionPasses":0,"TwoPointConversionRuns":0,"TwoPointConversionReceptions":0,"FantasyPoints":32.9,"FantasyPointsPPR":39.9,"ReceptionPercentage":77.8,"ReceivingYardsPerTarget":23.2,"Tackles":0,"OffensiveTouchdowns":2,"DefensiveTouchdowns":0,"SpecialTeamsTouchdowns":0,"Touchdowns":2,"FantasyPosition":"WR","FieldGoalPercentage":0,"PlayerGameID":12975555,"FumblesOwnRecoveries":0,"FumblesOutOfBounds":0,"KickReturnFairCatches":0,"PuntReturnFairCatches":0,"PuntTouchbacks":0,"PuntInside20":0,"PuntNetAverage":0,"ExtraPointsAttempted":0,"BlockedKickReturnTouchdowns":0,"FieldGoalReturnTouchdowns":0,"Safeties":0,"FieldGoalsHadBlocked":0,"PuntsHadBlocked":0,"ExtraPointsHadBlocked":0,"PuntLong":0,"BlockedKickReturnYards":0,"FieldGoalReturnYards":0,"PuntNetYards":0,"SpecialTeamsFumblesForced":0,"SpecialTeamsFumblesRecovered":0,"MiscFumblesForced":0,"MiscFumblesRecovered":0,"ShortName":"M.Evans","PlayingSurface":"Grass","IsGameOver":true,"SafetiesAllowed":0,"Stadium":"FedEx Field","Temperature":45,"Humidity":39,"WindSpeed":6,"FanDuelSalary":7500,"DraftKingsSalary":null,"FantasyDataSalary":7500,"OffensiveSnapsPlayed":47,"DefensiveSnapsPlayed":0,"SpecialTeamsSnapsPlayed":0,"OffensiveTeamSnaps":50,"DefensiveTeamSnaps":72,"SpecialTeamsTeamSnaps":18,"VictivSalary":null}]
|
@@ -0,0 +1 @@
|
|
1
|
+
[{"StadiumDetails":null,"GameKey":"201210123","SeasonType":1,"Season":2012,"Week":1,"Date":"2012-09-05T20:30:00","AwayTeam":"DAL","HomeTeam":"NYG","AwayScore":24,"HomeScore":17,"Channel":"NBC","PointSpread":-3.0,"OverUnder":47.0,"Quarter":"F","TimeRemaining":null,"Possession":null,"Down":null,"Distance":null,"YardLine":null,"YardLineTerritory":null,"RedZone":null,"AwayScoreQuarter1":0,"AwayScoreQuarter2":7,"AwayScoreQuarter3":10,"AwayScoreQuarter4":7,"AwayScoreOvertime":0,"HomeScoreQuarter1":0,"HomeScoreQuarter2":3,"HomeScoreQuarter3":7,"HomeScoreQuarter4":7,"HomeScoreOvertime":0,"HasStarted":true,"IsInProgress":false,"IsOver":true,"Has1stQuarterStarted":true,"Has2ndQuarterStarted":true,"Has3rdQuarterStarted":true,"Has4thQuarterStarted":true,"IsOvertime":false,"DownAndDistance":null,"QuarterDescription":"Final","StadiumID":null,"LastUpdated":null},{"StadiumDetails":null,"GameKey":"201210106","SeasonType":1,"Season":2012,"Week":1,"Date":"2012-09-09T13:00:00","AwayTeam":"IND","HomeTeam":"CHI","AwayScore":21,"HomeScore":41,"Channel":"CBS","PointSpread":-9.5,"OverUnder":41.5,"Quarter":"F","TimeRemaining":null,"Possession":null,"Down":null,"Distance":null,"YardLine":null,"YardLineTerritory":null,"RedZone":null,"AwayScoreQuarter1":7,"AwayScoreQuarter2":7,"AwayScoreQuarter3":0,"AwayScoreQuarter4":7,"AwayScoreOvertime":0,"HomeScoreQuarter1":7,"HomeScoreQuarter2":17,"HomeScoreQuarter3":10,"HomeScoreQuarter4":7,"HomeScoreOvertime":0,"HasStarted":true,"IsInProgress":false,"IsOver":true,"Has1stQuarterStarted":true,"Has2ndQuarterStarted":true,"Has3rdQuarterStarted":true,"Has4thQuarterStarted":true,"IsOvertime":false,"DownAndDistance":null,"QuarterDescription":"Final","StadiumID":null,"LastUpdated":null}]
|
@@ -0,0 +1 @@
|
|
1
|
+
[{"StadiumDetails":null,"GameKey":"201211104","SeasonType":1,"Season":2012,"Week":11,"Date":"2012-11-15T20:20:00","AwayTeam":"MIA","HomeTeam":"BUF","AwayScore":14,"HomeScore":19,"Channel":"NFL","PointSpread":-2.5,"OverUnder":46.0,"Quarter":"F","TimeRemaining":null,"Possession":null,"Down":null,"Distance":null,"YardLine":null,"YardLineTerritory":null,"RedZone":null,"AwayScoreQuarter1":7,"AwayScoreQuarter2":0,"AwayScoreQuarter3":0,"AwayScoreQuarter4":7,"AwayScoreOvertime":0,"HomeScoreQuarter1":13,"HomeScoreQuarter2":6,"HomeScoreQuarter3":0,"HomeScoreQuarter4":0,"HomeScoreOvertime":0,"HasStarted":true,"IsInProgress":false,"IsOver":true,"Has1stQuarterStarted":true,"Has2ndQuarterStarted":true,"Has3rdQuarterStarted":true,"Has4thQuarterStarted":true,"IsOvertime":false,"DownAndDistance":null,"QuarterDescription":"Final","StadiumID":null,"LastUpdated":null},{"StadiumDetails":null,"GameKey":"201211102","SeasonType":1,"Season":2012,"Week":11,"Date":"2012-11-18T13:00:00","AwayTeam":"ARI","HomeTeam":"ATL","AwayScore":19,"HomeScore":23,"Channel":"FOX","PointSpread":-9.5,"OverUnder":43.0,"Quarter":"F","TimeRemaining":null,"Possession":null,"Down":null,"Distance":null,"YardLine":null,"YardLineTerritory":null,"RedZone":null,"AwayScoreQuarter1":13,"AwayScoreQuarter2":3,"AwayScoreQuarter3":0,"AwayScoreQuarter4":3,"AwayScoreOvertime":0,"HomeScoreQuarter1":0,"HomeScoreQuarter2":16,"HomeScoreQuarter3":0,"HomeScoreQuarter4":7,"HomeScoreOvertime":0,"HasStarted":true,"IsInProgress":false,"IsOver":true,"Has1stQuarterStarted":true,"Has2ndQuarterStarted":true,"Has3rdQuarterStarted":true,"Has4thQuarterStarted":true,"IsOvertime":false,"DownAndDistance":null,"QuarterDescription":"Final","StadiumID":null,"LastUpdated":null}]
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fantasydata
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ryan Drost
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-08-
|
11
|
+
date: 2015-08-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -59,10 +59,12 @@ files:
|
|
59
59
|
- lib/fantasydata/api/fantasy.rb
|
60
60
|
- lib/fantasydata/api/game.rb
|
61
61
|
- lib/fantasydata/api/injury.rb
|
62
|
+
- lib/fantasydata/api/league_leaders.rb
|
62
63
|
- lib/fantasydata/api/news.rb
|
63
64
|
- lib/fantasydata/api/player_details.rb
|
64
65
|
- lib/fantasydata/api/player_stat.rb
|
65
66
|
- lib/fantasydata/api/schedule.rb
|
67
|
+
- lib/fantasydata/api/score.rb
|
66
68
|
- lib/fantasydata/api/season.rb
|
67
69
|
- lib/fantasydata/api/stadium.rb
|
68
70
|
- lib/fantasydata/api/standings.rb
|
@@ -71,6 +73,17 @@ files:
|
|
71
73
|
- lib/fantasydata/api/utils.rb
|
72
74
|
- lib/fantasydata/api/week.rb
|
73
75
|
- lib/fantasydata/base.rb
|
76
|
+
- lib/fantasydata/box_score.rb
|
77
|
+
- lib/fantasydata/boxscore/kicking_stat.rb
|
78
|
+
- lib/fantasydata/boxscore/passing_stat.rb
|
79
|
+
- lib/fantasydata/boxscore/player_defense_stat.rb
|
80
|
+
- lib/fantasydata/boxscore/punting_stat.rb
|
81
|
+
- lib/fantasydata/boxscore/receiving_stat.rb
|
82
|
+
- lib/fantasydata/boxscore/return_stat.rb
|
83
|
+
- lib/fantasydata/boxscore/rushing_stat.rb
|
84
|
+
- lib/fantasydata/boxscore/score.rb
|
85
|
+
- lib/fantasydata/boxscore/scoring_play.rb
|
86
|
+
- lib/fantasydata/boxscore/team_defense_stat.rb
|
74
87
|
- lib/fantasydata/bye_week.rb
|
75
88
|
- lib/fantasydata/client.rb
|
76
89
|
- lib/fantasydata/configurable.rb
|
@@ -103,6 +116,7 @@ files:
|
|
103
116
|
- lib/fantasydata/response/parse_json.rb
|
104
117
|
- lib/fantasydata/response/raise_error.rb
|
105
118
|
- lib/fantasydata/schedule.rb
|
119
|
+
- lib/fantasydata/score.rb
|
106
120
|
- lib/fantasydata/scoring_detail.rb
|
107
121
|
- lib/fantasydata/stadium.rb
|
108
122
|
- lib/fantasydata/standings.rb
|
@@ -116,10 +130,12 @@ files:
|
|
116
130
|
- spec/fantasydata/api/daily_fantasy_spec.rb
|
117
131
|
- spec/fantasydata/api/game_spec.rb
|
118
132
|
- spec/fantasydata/api/injury_spec.rb
|
133
|
+
- spec/fantasydata/api/league_leaders_spec.rb
|
119
134
|
- spec/fantasydata/api/news_spec.rb
|
120
135
|
- spec/fantasydata/api/player_details_spec.rb
|
121
136
|
- spec/fantasydata/api/player_stat_spec.rb
|
122
137
|
- spec/fantasydata/api/schedule_spec.rb
|
138
|
+
- spec/fantasydata/api/scores_spec.rb
|
123
139
|
- spec/fantasydata/api/season_spec.rb
|
124
140
|
- spec/fantasydata/api/stadium_spec.rb
|
125
141
|
- spec/fantasydata/api/standings_spec.rb
|
@@ -130,6 +146,11 @@ files:
|
|
130
146
|
- spec/fantasydata/client_spec.rb
|
131
147
|
- spec/fantasydata/error_spec.rb
|
132
148
|
- spec/fantasydata_spec.rb
|
149
|
+
- spec/fixtures/box_score/active.json
|
150
|
+
- spec/fixtures/box_score/by_team.json
|
151
|
+
- spec/fixtures/box_score/by_week.json
|
152
|
+
- spec/fixtures/box_score/delta.json
|
153
|
+
- spec/fixtures/box_score/delta_current.json
|
133
154
|
- spec/fixtures/bye_weeks/bye_weeks.json
|
134
155
|
- spec/fixtures/daily_fantasy/adp.json
|
135
156
|
- spec/fixtures/daily_fantasy/daily_defense_game.json
|
@@ -146,6 +167,8 @@ files:
|
|
146
167
|
- spec/fixtures/game/in_progress_true.json
|
147
168
|
- spec/fixtures/injury/by_team.json
|
148
169
|
- spec/fixtures/injury/by_year_and_week.json
|
170
|
+
- spec/fixtures/league_leaders/by_season.json
|
171
|
+
- spec/fixtures/league_leaders/by_week.json
|
149
172
|
- spec/fixtures/news/by_player.json
|
150
173
|
- spec/fixtures/news/by_team.json
|
151
174
|
- spec/fixtures/news/recent.json
|
@@ -165,6 +188,8 @@ files:
|
|
165
188
|
- spec/fixtures/player_stat/stat_by_week_and_team.json
|
166
189
|
- spec/fixtures/player_stat/stat_by_week_and_team_projected.json
|
167
190
|
- spec/fixtures/schedule/for_year.json
|
191
|
+
- spec/fixtures/scores/by_season.json
|
192
|
+
- spec/fixtures/scores/by_week.json
|
168
193
|
- spec/fixtures/season/current.json
|
169
194
|
- spec/fixtures/season/last_completed.json
|
170
195
|
- spec/fixtures/season/upcoming.json
|
@@ -214,10 +239,12 @@ test_files:
|
|
214
239
|
- spec/fantasydata/api/daily_fantasy_spec.rb
|
215
240
|
- spec/fantasydata/api/game_spec.rb
|
216
241
|
- spec/fantasydata/api/injury_spec.rb
|
242
|
+
- spec/fantasydata/api/league_leaders_spec.rb
|
217
243
|
- spec/fantasydata/api/news_spec.rb
|
218
244
|
- spec/fantasydata/api/player_details_spec.rb
|
219
245
|
- spec/fantasydata/api/player_stat_spec.rb
|
220
246
|
- spec/fantasydata/api/schedule_spec.rb
|
247
|
+
- spec/fantasydata/api/scores_spec.rb
|
221
248
|
- spec/fantasydata/api/season_spec.rb
|
222
249
|
- spec/fantasydata/api/stadium_spec.rb
|
223
250
|
- spec/fantasydata/api/standings_spec.rb
|
@@ -228,6 +255,11 @@ test_files:
|
|
228
255
|
- spec/fantasydata/client_spec.rb
|
229
256
|
- spec/fantasydata/error_spec.rb
|
230
257
|
- spec/fantasydata_spec.rb
|
258
|
+
- spec/fixtures/box_score/active.json
|
259
|
+
- spec/fixtures/box_score/by_team.json
|
260
|
+
- spec/fixtures/box_score/by_week.json
|
261
|
+
- spec/fixtures/box_score/delta.json
|
262
|
+
- spec/fixtures/box_score/delta_current.json
|
231
263
|
- spec/fixtures/bye_weeks/bye_weeks.json
|
232
264
|
- spec/fixtures/daily_fantasy/adp.json
|
233
265
|
- spec/fixtures/daily_fantasy/daily_defense_game.json
|
@@ -244,6 +276,8 @@ test_files:
|
|
244
276
|
- spec/fixtures/game/in_progress_true.json
|
245
277
|
- spec/fixtures/injury/by_team.json
|
246
278
|
- spec/fixtures/injury/by_year_and_week.json
|
279
|
+
- spec/fixtures/league_leaders/by_season.json
|
280
|
+
- spec/fixtures/league_leaders/by_week.json
|
247
281
|
- spec/fixtures/news/by_player.json
|
248
282
|
- spec/fixtures/news/by_team.json
|
249
283
|
- spec/fixtures/news/recent.json
|
@@ -263,6 +297,8 @@ test_files:
|
|
263
297
|
- spec/fixtures/player_stat/stat_by_week_and_team.json
|
264
298
|
- spec/fixtures/player_stat/stat_by_week_and_team_projected.json
|
265
299
|
- spec/fixtures/schedule/for_year.json
|
300
|
+
- spec/fixtures/scores/by_season.json
|
301
|
+
- spec/fixtures/scores/by_week.json
|
266
302
|
- spec/fixtures/season/current.json
|
267
303
|
- spec/fixtures/season/last_completed.json
|
268
304
|
- spec/fixtures/season/upcoming.json
|