sports_data_api 0.0.3 → 0.1.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.
Files changed (124) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +7 -0
  3. data/.ruby-gemset +1 -0
  4. data/.ruby-version +1 -0
  5. data/.travis.yml +2 -1
  6. data/Guardfile +1 -1
  7. data/README.md +20 -5
  8. data/lib/sports_data_api/exception.rb +5 -0
  9. data/lib/sports_data_api/mlb/boxscore.rb +36 -0
  10. data/lib/sports_data_api/mlb/broadcast.rb +14 -0
  11. data/lib/sports_data_api/mlb/game.rb +30 -0
  12. data/lib/sports_data_api/mlb/game_stat.rb +26 -0
  13. data/lib/sports_data_api/mlb/game_stats.rb +44 -0
  14. data/lib/sports_data_api/mlb/games.rb +29 -0
  15. data/lib/sports_data_api/mlb/player.rb +17 -0
  16. data/lib/sports_data_api/mlb/players.rb +42 -0
  17. data/lib/sports_data_api/mlb/season.rb +18 -0
  18. data/lib/sports_data_api/mlb/team.rb +35 -0
  19. data/lib/sports_data_api/mlb/teams.rb +42 -0
  20. data/lib/sports_data_api/mlb/venue.rb +15 -0
  21. data/lib/sports_data_api/mlb/venues.rb +37 -0
  22. data/lib/sports_data_api/mlb.rb +82 -0
  23. data/lib/sports_data_api/nba/broadcast.rb +14 -0
  24. data/lib/sports_data_api/nba/game.rb +54 -0
  25. data/lib/sports_data_api/nba/games.rb +26 -0
  26. data/lib/sports_data_api/nba/player.rb +22 -0
  27. data/lib/sports_data_api/nba/season.rb +28 -0
  28. data/lib/sports_data_api/nba/team.rb +40 -0
  29. data/lib/sports_data_api/nba/teams.rb +83 -0
  30. data/lib/sports_data_api/nba/venue.rb +20 -0
  31. data/lib/sports_data_api/nba.rb +71 -0
  32. data/lib/sports_data_api/nfl/broadcast.rb +15 -0
  33. data/lib/sports_data_api/nfl/game.rb +83 -0
  34. data/lib/sports_data_api/nfl/games.rb +29 -0
  35. data/lib/sports_data_api/nfl/injuries.rb +9 -0
  36. data/lib/sports_data_api/nfl/player.rb +15 -0
  37. data/lib/sports_data_api/nfl/player_season_stats.rb +26 -0
  38. data/lib/sports_data_api/nfl/season.rb +27 -0
  39. data/lib/sports_data_api/nfl/team.rb +46 -0
  40. data/lib/sports_data_api/nfl/team_roster.rb +17 -0
  41. data/lib/sports_data_api/nfl/team_season_stats.rb +19 -0
  42. data/lib/sports_data_api/nfl/teams.rb +84 -0
  43. data/lib/sports_data_api/nfl/venue.rb +22 -0
  44. data/lib/sports_data_api/nfl/weather.rb +17 -0
  45. data/lib/sports_data_api/nfl/week.rb +20 -0
  46. data/lib/sports_data_api/nfl.rb +98 -0
  47. data/lib/sports_data_api/stats.rb +13 -0
  48. data/lib/sports_data_api/version.rb +1 -1
  49. data/lib/sports_data_api.rb +37 -12
  50. data/spec/cassettes/sports_data_api_mlb_game.yml +20193 -0
  51. data/spec/cassettes/sports_data_api_mlb_game_boxscore.yml +225 -0
  52. data/spec/cassettes/sports_data_api_mlb_game_stats.yml +657 -0
  53. data/spec/cassettes/sports_data_api_mlb_games.yml +195 -0
  54. data/spec/cassettes/sports_data_api_mlb_player.yml +10891 -0
  55. data/spec/cassettes/sports_data_api_mlb_season.yml +20193 -0
  56. data/spec/cassettes/sports_data_api_mlb_team.yml +182 -0
  57. data/spec/cassettes/sports_data_api_mlb_team_roster.yml +10891 -0
  58. data/spec/cassettes/sports_data_api_mlb_teams.yml +403 -0
  59. data/spec/cassettes/sports_data_api_mlb_venues.yml +343 -0
  60. data/spec/cassettes/sports_data_api_nba.yml +74176 -0
  61. data/spec/cassettes/sports_data_api_nba_broadcast.yml +88 -0
  62. data/spec/cassettes/sports_data_api_nba_game.yml +21202 -0
  63. data/spec/cassettes/sports_data_api_nba_games.yml +128 -0
  64. data/spec/cassettes/sports_data_api_nba_league_hierarchy.yml +545 -0
  65. data/spec/cassettes/sports_data_api_nba_player.yml +244 -0
  66. data/spec/cassettes/sports_data_api_nba_season.yml +18228 -0
  67. data/spec/cassettes/sports_data_api_nba_team.yml +1398 -0
  68. data/spec/cassettes/sports_data_api_nba_team_roster.yml +244 -0
  69. data/spec/cassettes/sports_data_api_nba_venue.yml +88 -0
  70. data/spec/cassettes/sports_data_api_nfl.yml +19105 -0
  71. data/spec/cassettes/sports_data_api_nfl_broadcast.yml +112 -0
  72. data/spec/cassettes/sports_data_api_nfl_game.yml +16139 -0
  73. data/spec/cassettes/sports_data_api_nfl_games.yml +912 -0
  74. data/spec/cassettes/sports_data_api_nfl_player_season_stats.yml +997 -0
  75. data/spec/cassettes/sports_data_api_nfl_season.yml +14100 -0
  76. data/spec/cassettes/sports_data_api_nfl_team.yml +783 -0
  77. data/spec/cassettes/sports_data_api_nfl_team_hierarchy.yml +909 -0
  78. data/spec/cassettes/sports_data_api_nfl_team_roster.yml +618 -0
  79. data/spec/cassettes/sports_data_api_nfl_team_season_stats.yml +981 -0
  80. data/spec/cassettes/sports_data_api_nfl_venue.yml +112 -0
  81. data/spec/cassettes/sports_data_api_nfl_weather.yml +112 -0
  82. data/spec/cassettes/sports_data_api_nfl_week.yml +14100 -0
  83. data/spec/lib/sports_data_api/mlb/boxscore_spec.rb +63 -0
  84. data/spec/lib/sports_data_api/mlb/game_spec.rb +24 -0
  85. data/spec/lib/sports_data_api/mlb/game_stats_spec.rb +25 -0
  86. data/spec/lib/sports_data_api/mlb/games_spec.rb +24 -0
  87. data/spec/lib/sports_data_api/mlb/player_spec.rb +103 -0
  88. data/spec/lib/sports_data_api/mlb/players_spec.rb +17 -0
  89. data/spec/lib/sports_data_api/mlb/season_spec.rb +19 -0
  90. data/spec/lib/sports_data_api/mlb/team_spec.rb +24 -0
  91. data/spec/lib/sports_data_api/mlb/teams_spec.rb +30 -0
  92. data/spec/lib/sports_data_api/mlb/venues_spec.rb +17 -0
  93. data/spec/lib/sports_data_api/nba/broadcast_spec.rb +18 -0
  94. data/spec/lib/sports_data_api/nba/game_spec.rb +87 -0
  95. data/spec/lib/sports_data_api/nba/games_spec.rb +19 -0
  96. data/spec/lib/sports_data_api/nba/player_spec.rb +72 -0
  97. data/spec/lib/sports_data_api/nba/season_spec.rb +41 -0
  98. data/spec/lib/sports_data_api/nba/team_spec.rb +185 -0
  99. data/spec/lib/sports_data_api/nba/teams_spec.rb +76 -0
  100. data/spec/lib/sports_data_api/nba/venue_spec.rb +24 -0
  101. data/spec/lib/sports_data_api/nba_spec.rb +41 -0
  102. data/spec/lib/sports_data_api/nfl/broadcast_spec.rb +19 -0
  103. data/spec/lib/sports_data_api/nfl/game_spec.rb +126 -0
  104. data/spec/lib/sports_data_api/nfl/games_spec.rb +21 -0
  105. data/spec/lib/sports_data_api/nfl/player_season_stats.rb +28 -0
  106. data/spec/lib/sports_data_api/nfl/season_spec.rb +41 -0
  107. data/spec/lib/sports_data_api/nfl/team_roster_spec.rb +28 -0
  108. data/spec/lib/sports_data_api/nfl/team_season_stats.rb +19 -0
  109. data/spec/lib/sports_data_api/nfl/team_spec.rb +52 -0
  110. data/spec/lib/sports_data_api/nfl/teams_spec.rb +77 -0
  111. data/spec/lib/sports_data_api/nfl/venue_spec.rb +26 -0
  112. data/spec/lib/sports_data_api/nfl/weather_spec.rb +21 -0
  113. data/spec/lib/sports_data_api/nfl/week_spec.rb +21 -0
  114. data/spec/lib/sports_data_api/nfl_spec.rb +113 -0
  115. data/spec/lib/sports_data_api_spec.rb +8 -5
  116. data/spec/spec_helper.rb +30 -9
  117. data/sports_data_api.gemspec +19 -15
  118. metadata +267 -76
  119. data/.rvmrc +0 -38
  120. data/lib/nfl.rb +0 -149
  121. data/spec/lib/nfl_spec.rb +0 -125
  122. data/spec/xml/boxscore.xml +0 -93
  123. data/spec/xml/schedule.xml +0 -4067
  124. data/spec/xml/teams.xml +0 -119
@@ -1,4067 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <season xmlns="http://feed.elasticstats.com/schema/nfl/schedule-v1.0.xsd" season="2012" type="REG">
3
- <week week="1">
4
- <game id="8c0bce5a-7ca2-41e5-9838-d1b8c356ddc3" scheduled="2012-09-06T00:30:00+00:00" home_rotation="" away_rotation="" home="NYG" away="DAL" status="closed">
5
- <venue id="5d4c85c7-d84e-4e10-bd6a-8a15ebecca5c" country="US" name="MetLife Stadium" city="East Rutherford" state="NJ" capacity="82500" surface="artificial" type="outdoor" zip="" address=""/>
6
- <weather temperature="" condition="" humidity="">
7
- <wind speed="" direction=""/>
8
- </weather>
9
- <broadcast network="NBC" satellite="" internet="" cable=""/>
10
- <links>
11
- <link rel="statistics" href="/2012/REG/1/DAL/NYG/statistics.xml" type="application/xml"/>
12
- <link rel="summary" href="/2012/REG/1/DAL/NYG/summary.xml" type="application/xml"/>
13
- <link rel="pbp" href="/2012/REG/1/DAL/NYG/pbp.xml" type="application/xml"/>
14
- <link rel="boxscore" href="/2012/REG/1/DAL/NYG/boxscore.xml" type="application/xml"/>
15
- <link rel="roster" href="/2012/REG/1/DAL/NYG/roster.xml" type="application/xml"/>
16
- <link rel="injuries" href="/2012/REG/1/DAL/NYG/injuries.xml" type="application/xml"/>
17
- <link rel="depthchart" href="/2012/REG/1/DAL/NYG/depthchart.xml" type="application/xml"/>
18
- </links>
19
- </game>
20
- <game id="0651e14f-55b0-403f-9ff0-d0f11261490d" scheduled="2012-09-09T17:00:00+00:00" home_rotation="" away_rotation="" home="KC" away="ATL" status="closed">
21
- <venue id="2ec4c411-dac2-403d-b091-6b6aa4a0a914" country="US" name="Arrowhead Stadium" city="Kansas City" state="MO" capacity="79451" surface="turf" type="outdoor" zip="" address=""/>
22
- <weather temperature="" condition="" humidity="">
23
- <wind speed="" direction=""/>
24
- </weather>
25
- <broadcast network="FOX" satellite="706" internet="" cable=""/>
26
- <links>
27
- <link rel="statistics" href="/2012/REG/1/ATL/KC/statistics.xml" type="application/xml"/>
28
- <link rel="summary" href="/2012/REG/1/ATL/KC/summary.xml" type="application/xml"/>
29
- <link rel="pbp" href="/2012/REG/1/ATL/KC/pbp.xml" type="application/xml"/>
30
- <link rel="boxscore" href="/2012/REG/1/ATL/KC/boxscore.xml" type="application/xml"/>
31
- <link rel="roster" href="/2012/REG/1/ATL/KC/roster.xml" type="application/xml"/>
32
- <link rel="injuries" href="/2012/REG/1/ATL/KC/injuries.xml" type="application/xml"/>
33
- <link rel="depthchart" href="/2012/REG/1/ATL/KC/depthchart.xml" type="application/xml"/>
34
- </links>
35
- </game>
36
- <game id="bf9a4d33-9ec9-4349-9f8e-95f1d9c4ab19" scheduled="2012-09-09T17:00:00+00:00" home_rotation="" away_rotation="" home="NO" away="WAS" status="closed">
37
- <venue id="3c85d89a-ec66-4983-acd5-1381d6c8673a" country="US" name="The Mercedes-Benz Superdome" city="New Orleans" state="LA" capacity="72968" surface="artificial" type="dome" zip="" address=""/>
38
- <weather temperature="" condition="" humidity="">
39
- <wind speed="" direction=""/>
40
- </weather>
41
- <broadcast network="FOX" satellite="707" internet="" cable=""/>
42
- <links>
43
- <link rel="statistics" href="/2012/REG/1/WAS/NO/statistics.xml" type="application/xml"/>
44
- <link rel="summary" href="/2012/REG/1/WAS/NO/summary.xml" type="application/xml"/>
45
- <link rel="pbp" href="/2012/REG/1/WAS/NO/pbp.xml" type="application/xml"/>
46
- <link rel="boxscore" href="/2012/REG/1/WAS/NO/boxscore.xml" type="application/xml"/>
47
- <link rel="roster" href="/2012/REG/1/WAS/NO/roster.xml" type="application/xml"/>
48
- <link rel="injuries" href="/2012/REG/1/WAS/NO/injuries.xml" type="application/xml"/>
49
- <link rel="depthchart" href="/2012/REG/1/WAS/NO/depthchart.xml" type="application/xml"/>
50
- </links>
51
- </game>
52
- <game id="61064b59-e31b-40c8-a1e9-f06dbe510636" scheduled="2012-09-09T17:00:00+00:00" home_rotation="" away_rotation="" home="CLE" away="PHI" status="closed">
53
- <venue id="90c38d91-3774-4f5d-82ca-1c806828219f" country="US" name="Cleveland Browns Stadium" city="Cleveland " state="OH" capacity="73200" surface="artificial" type="outdoor" zip="" address=""/>
54
- <weather temperature="" condition="" humidity="">
55
- <wind speed="" direction=""/>
56
- </weather>
57
- <broadcast network="FOX" satellite="704" internet="" cable=""/>
58
- <links>
59
- <link rel="statistics" href="/2012/REG/1/PHI/CLE/statistics.xml" type="application/xml"/>
60
- <link rel="summary" href="/2012/REG/1/PHI/CLE/summary.xml" type="application/xml"/>
61
- <link rel="pbp" href="/2012/REG/1/PHI/CLE/pbp.xml" type="application/xml"/>
62
- <link rel="boxscore" href="/2012/REG/1/PHI/CLE/boxscore.xml" type="application/xml"/>
63
- <link rel="roster" href="/2012/REG/1/PHI/CLE/roster.xml" type="application/xml"/>
64
- <link rel="injuries" href="/2012/REG/1/PHI/CLE/injuries.xml" type="application/xml"/>
65
- <link rel="depthchart" href="/2012/REG/1/PHI/CLE/depthchart.xml" type="application/xml"/>
66
- </links>
67
- </game>
68
- <game id="d5c8a042-7689-4526-bc6f-d902bb283e8d" scheduled="2012-09-09T17:00:00+00:00" home_rotation="" away_rotation="" home="NYJ" away="BUF" status="closed">
69
- <venue id="5d4c85c7-d84e-4e10-bd6a-8a15ebecca5c" country="US" name="MetLife Stadium" city="East Rutherford" state="NJ" capacity="82500" surface="artificial" type="outdoor" zip="" address=""/>
70
- <weather temperature="" condition="" humidity="">
71
- <wind speed="" direction=""/>
72
- </weather>
73
- <broadcast network="CBS" satellite="711" internet="" cable=""/>
74
- <links>
75
- <link rel="statistics" href="/2012/REG/1/BUF/NYJ/statistics.xml" type="application/xml"/>
76
- <link rel="summary" href="/2012/REG/1/BUF/NYJ/summary.xml" type="application/xml"/>
77
- <link rel="pbp" href="/2012/REG/1/BUF/NYJ/pbp.xml" type="application/xml"/>
78
- <link rel="boxscore" href="/2012/REG/1/BUF/NYJ/boxscore.xml" type="application/xml"/>
79
- <link rel="roster" href="/2012/REG/1/BUF/NYJ/roster.xml" type="application/xml"/>
80
- <link rel="injuries" href="/2012/REG/1/BUF/NYJ/injuries.xml" type="application/xml"/>
81
- <link rel="depthchart" href="/2012/REG/1/BUF/NYJ/depthchart.xml" type="application/xml"/>
82
- </links>
83
- </game>
84
- <game id="a980f016-419a-40ef-ad48-957a12481e06" scheduled="2012-09-09T17:00:00+00:00" home_rotation="" away_rotation="" home="HOU" away="MIA" status="closed">
85
- <venue id="6a72e5ca-33d0-40af-8e6b-b32a4d3d9346" country="US" name="Reliant Stadium" city="Houston" state="TX" capacity="71500" surface="turf" type="retractable_dome" zip="" address=""/>
86
- <weather temperature="" condition="" humidity="">
87
- <wind speed="" direction=""/>
88
- </weather>
89
- <broadcast network="CBS" satellite="709" internet="" cable=""/>
90
- <links>
91
- <link rel="statistics" href="/2012/REG/1/MIA/HOU/statistics.xml" type="application/xml"/>
92
- <link rel="summary" href="/2012/REG/1/MIA/HOU/summary.xml" type="application/xml"/>
93
- <link rel="pbp" href="/2012/REG/1/MIA/HOU/pbp.xml" type="application/xml"/>
94
- <link rel="boxscore" href="/2012/REG/1/MIA/HOU/boxscore.xml" type="application/xml"/>
95
- <link rel="roster" href="/2012/REG/1/MIA/HOU/roster.xml" type="application/xml"/>
96
- <link rel="injuries" href="/2012/REG/1/MIA/HOU/injuries.xml" type="application/xml"/>
97
- <link rel="depthchart" href="/2012/REG/1/MIA/HOU/depthchart.xml" type="application/xml"/>
98
- </links>
99
- </game>
100
- <game id="437c79b9-ff27-4fed-9899-07ef79e789da" scheduled="2012-09-09T17:00:00+00:00" home_rotation="" away_rotation="" home="CHI" away="IND" status="closed">
101
- <venue id="d7866605-5ac6-4b3a-90e8-760cc5a26b75" country="US" name="Soldier Field" city="Chicago" state="IL" capacity="61500" surface="turf" type="outdoor" zip="" address=""/>
102
- <weather temperature="" condition="" humidity="">
103
- <wind speed="" direction=""/>
104
- </weather>
105
- <broadcast network="CBS" satellite="708" internet="" cable=""/>
106
- <links>
107
- <link rel="statistics" href="/2012/REG/1/IND/CHI/statistics.xml" type="application/xml"/>
108
- <link rel="summary" href="/2012/REG/1/IND/CHI/summary.xml" type="application/xml"/>
109
- <link rel="pbp" href="/2012/REG/1/IND/CHI/pbp.xml" type="application/xml"/>
110
- <link rel="boxscore" href="/2012/REG/1/IND/CHI/boxscore.xml" type="application/xml"/>
111
- <link rel="roster" href="/2012/REG/1/IND/CHI/roster.xml" type="application/xml"/>
112
- <link rel="injuries" href="/2012/REG/1/IND/CHI/injuries.xml" type="application/xml"/>
113
- <link rel="depthchart" href="/2012/REG/1/IND/CHI/depthchart.xml" type="application/xml"/>
114
- </links>
115
- </game>
116
- <game id="6ea85017-196f-410d-92db-66799b110c7a" scheduled="2012-09-09T17:00:00+00:00" home_rotation="" away_rotation="" home="DET" away="STL" status="closed">
117
- <venue id="6e3bcf22-277d-4c06-b019-62aded51654f" country="US" name="Ford Field" city="Detroit" state="MI" capacity="65000" surface="artificial" type="dome" zip="" address=""/>
118
- <weather temperature="" condition="" humidity="">
119
- <wind speed="" direction=""/>
120
- </weather>
121
- <broadcast network="FOX" satellite="705" internet="" cable=""/>
122
- <links>
123
- <link rel="statistics" href="/2012/REG/1/STL/DET/statistics.xml" type="application/xml"/>
124
- <link rel="summary" href="/2012/REG/1/STL/DET/summary.xml" type="application/xml"/>
125
- <link rel="pbp" href="/2012/REG/1/STL/DET/pbp.xml" type="application/xml"/>
126
- <link rel="boxscore" href="/2012/REG/1/STL/DET/boxscore.xml" type="application/xml"/>
127
- <link rel="roster" href="/2012/REG/1/STL/DET/roster.xml" type="application/xml"/>
128
- <link rel="injuries" href="/2012/REG/1/STL/DET/injuries.xml" type="application/xml"/>
129
- <link rel="depthchart" href="/2012/REG/1/STL/DET/depthchart.xml" type="application/xml"/>
130
- </links>
131
- </game>
132
- <game id="ac73c14d-a974-4721-933e-d90d437b12fd" scheduled="2012-09-09T17:00:00+00:00" home_rotation="" away_rotation="" home="TEN" away="NE" status="closed">
133
- <venue id="5295c1b7-c85c-49cb-9569-1707c65324e5" country="US" name="LP Field" city="Nashville" state="TN" capacity="68798" surface="turf" type="outdoor" zip="" address=""/>
134
- <weather temperature="" condition="" humidity="">
135
- <wind speed="" direction=""/>
136
- </weather>
137
- <broadcast network="CBS" satellite="712" internet="" cable=""/>
138
- <links>
139
- <link rel="statistics" href="/2012/REG/1/NE/TEN/statistics.xml" type="application/xml"/>
140
- <link rel="summary" href="/2012/REG/1/NE/TEN/summary.xml" type="application/xml"/>
141
- <link rel="pbp" href="/2012/REG/1/NE/TEN/pbp.xml" type="application/xml"/>
142
- <link rel="boxscore" href="/2012/REG/1/NE/TEN/boxscore.xml" type="application/xml"/>
143
- <link rel="roster" href="/2012/REG/1/NE/TEN/roster.xml" type="application/xml"/>
144
- <link rel="injuries" href="/2012/REG/1/NE/TEN/injuries.xml" type="application/xml"/>
145
- <link rel="depthchart" href="/2012/REG/1/NE/TEN/depthchart.xml" type="application/xml"/>
146
- </links>
147
- </game>
148
- <game id="548315c0-cd08-4715-b6a2-cb093b6da797" scheduled="2012-09-09T17:00:00+00:00" home_rotation="" away_rotation="" home="MIN" away="JAC" status="closed">
149
- <venue id="1fede74c-50a2-4036-a1c0-b4d1e53ca98c" country="US" name="Mall of America Field" city="Minneapolis" state="MN" capacity="64111" surface="artificial" type="dome" zip="" address=""/>
150
- <weather temperature="" condition="" humidity="">
151
- <wind speed="" direction=""/>
152
- </weather>
153
- <broadcast network="CBS" satellite="710" internet="" cable=""/>
154
- <links>
155
- <link rel="statistics" href="/2012/REG/1/JAC/MIN/statistics.xml" type="application/xml"/>
156
- <link rel="summary" href="/2012/REG/1/JAC/MIN/summary.xml" type="application/xml"/>
157
- <link rel="pbp" href="/2012/REG/1/JAC/MIN/pbp.xml" type="application/xml"/>
158
- <link rel="boxscore" href="/2012/REG/1/JAC/MIN/boxscore.xml" type="application/xml"/>
159
- <link rel="roster" href="/2012/REG/1/JAC/MIN/roster.xml" type="application/xml"/>
160
- <link rel="injuries" href="/2012/REG/1/JAC/MIN/injuries.xml" type="application/xml"/>
161
- <link rel="depthchart" href="/2012/REG/1/JAC/MIN/depthchart.xml" type="application/xml"/>
162
- </links>
163
- </game>
164
- <game id="a9d5654c-7ec2-4865-ad4a-01d16186dfe0" scheduled="2012-09-09T20:15:00+00:00" home_rotation="" away_rotation="" home="TB" away="CAR" status="closed">
165
- <venue id="6fccc39c-80bc-4c81-83d9-2d5a848c8c09" country="US" name="Raymond James Stadium" city="Tampa Bay" state="FL" capacity="65657" surface="turf" type="outdoor" zip="" address=""/>
166
- <weather temperature="" condition="" humidity="">
167
- <wind speed="" direction=""/>
168
- </weather>
169
- <broadcast network="FOX" satellite="715" internet="" cable=""/>
170
- <links>
171
- <link rel="statistics" href="/2012/REG/1/CAR/TB/statistics.xml" type="application/xml"/>
172
- <link rel="summary" href="/2012/REG/1/CAR/TB/summary.xml" type="application/xml"/>
173
- <link rel="pbp" href="/2012/REG/1/CAR/TB/pbp.xml" type="application/xml"/>
174
- <link rel="boxscore" href="/2012/REG/1/CAR/TB/boxscore.xml" type="application/xml"/>
175
- <link rel="roster" href="/2012/REG/1/CAR/TB/roster.xml" type="application/xml"/>
176
- <link rel="injuries" href="/2012/REG/1/CAR/TB/injuries.xml" type="application/xml"/>
177
- <link rel="depthchart" href="/2012/REG/1/CAR/TB/depthchart.xml" type="application/xml"/>
178
- </links>
179
- </game>
180
- <game id="1c5b1b11-4f35-4c35-9952-f7ba1267dd23" scheduled="2012-09-09T20:15:00+00:00" home_rotation="" away_rotation="" home="GB" away="SF" status="closed">
181
- <venue id="5a60dd3a-302c-41c6-ab0f-dd335c1103c2" country="US" name="Lambeau Field" city="Green Bay" state="WI" capacity="72992" surface="turf" type="outdoor" zip="" address=""/>
182
- <weather temperature="" condition="" humidity="">
183
- <wind speed="" direction=""/>
184
- </weather>
185
- <broadcast network="FOX" satellite="714" internet="" cable=""/>
186
- <links>
187
- <link rel="statistics" href="/2012/REG/1/SF/GB/statistics.xml" type="application/xml"/>
188
- <link rel="summary" href="/2012/REG/1/SF/GB/summary.xml" type="application/xml"/>
189
- <link rel="pbp" href="/2012/REG/1/SF/GB/pbp.xml" type="application/xml"/>
190
- <link rel="boxscore" href="/2012/REG/1/SF/GB/boxscore.xml" type="application/xml"/>
191
- <link rel="roster" href="/2012/REG/1/SF/GB/roster.xml" type="application/xml"/>
192
- <link rel="injuries" href="/2012/REG/1/SF/GB/injuries.xml" type="application/xml"/>
193
- <link rel="depthchart" href="/2012/REG/1/SF/GB/depthchart.xml" type="application/xml"/>
194
- </links>
195
- </game>
196
- <game id="9baf8d67-424b-46dd-b47e-d1f975f6d80d" scheduled="2012-09-09T20:15:00+00:00" home_rotation="" away_rotation="" home="ARI" away="SEA" status="closed">
197
- <venue id="f8e4d2ab-53f9-4e9f-8c4a-9bc278094a84" country="US" name="University of Phoenix Stadium" city="Glendale" state="AZ" capacity="63400" surface="turf" type="retractable_dome" zip="" address=""/>
198
- <weather temperature="" condition="" humidity="">
199
- <wind speed="" direction=""/>
200
- </weather>
201
- <broadcast network="FOX" satellite="713" internet="" cable=""/>
202
- <links>
203
- <link rel="statistics" href="/2012/REG/1/SEA/ARI/statistics.xml" type="application/xml"/>
204
- <link rel="summary" href="/2012/REG/1/SEA/ARI/summary.xml" type="application/xml"/>
205
- <link rel="pbp" href="/2012/REG/1/SEA/ARI/pbp.xml" type="application/xml"/>
206
- <link rel="boxscore" href="/2012/REG/1/SEA/ARI/boxscore.xml" type="application/xml"/>
207
- <link rel="roster" href="/2012/REG/1/SEA/ARI/roster.xml" type="application/xml"/>
208
- <link rel="injuries" href="/2012/REG/1/SEA/ARI/injuries.xml" type="application/xml"/>
209
- <link rel="depthchart" href="/2012/REG/1/SEA/ARI/depthchart.xml" type="application/xml"/>
210
- </links>
211
- </game>
212
- <game id="2b736f4f-6608-41ed-80e9-a7eabd5b5b9c" scheduled="2012-09-10T00:20:00+00:00" home_rotation="" away_rotation="" home="DEN" away="PIT" status="closed">
213
- <venue id="6589e61d-ef1e-4e30-91b5-9acd2072b8a0" country="US" name="Sports Authority Field at Mile High" city="Denver " state="CO" capacity="76125" surface="turf" type="outdoor" zip="" address=""/>
214
- <weather temperature="" condition="" humidity="">
215
- <wind speed="" direction=""/>
216
- </weather>
217
- <broadcast network="NBC" satellite="" internet="" cable=""/>
218
- <links>
219
- <link rel="statistics" href="/2012/REG/1/PIT/DEN/statistics.xml" type="application/xml"/>
220
- <link rel="summary" href="/2012/REG/1/PIT/DEN/summary.xml" type="application/xml"/>
221
- <link rel="pbp" href="/2012/REG/1/PIT/DEN/pbp.xml" type="application/xml"/>
222
- <link rel="boxscore" href="/2012/REG/1/PIT/DEN/boxscore.xml" type="application/xml"/>
223
- <link rel="roster" href="/2012/REG/1/PIT/DEN/roster.xml" type="application/xml"/>
224
- <link rel="injuries" href="/2012/REG/1/PIT/DEN/injuries.xml" type="application/xml"/>
225
- <link rel="depthchart" href="/2012/REG/1/PIT/DEN/depthchart.xml" type="application/xml"/>
226
- </links>
227
- </game>
228
- <game id="a24be3cb-3993-46b0-98a5-dedf278ba7f7" scheduled="2012-09-10T23:00:00+00:00" home_rotation="" away_rotation="" home="BAL" away="CIN" status="closed">
229
- <venue id="d54faae0-0314-484f-8604-9d8dd08e1149" country="US" name="M&amp;T Bank Stadium" city="Baltimore" state="MD" capacity="71008" surface="artificial" type="outdoor" zip="" address=""/>
230
- <weather temperature="" condition="" humidity="">
231
- <wind speed="" direction=""/>
232
- </weather>
233
- <broadcast network="ESPN" satellite="206" internet="" cable=""/>
234
- <links>
235
- <link rel="statistics" href="/2012/REG/1/CIN/BAL/statistics.xml" type="application/xml"/>
236
- <link rel="summary" href="/2012/REG/1/CIN/BAL/summary.xml" type="application/xml"/>
237
- <link rel="pbp" href="/2012/REG/1/CIN/BAL/pbp.xml" type="application/xml"/>
238
- <link rel="boxscore" href="/2012/REG/1/CIN/BAL/boxscore.xml" type="application/xml"/>
239
- <link rel="roster" href="/2012/REG/1/CIN/BAL/roster.xml" type="application/xml"/>
240
- <link rel="injuries" href="/2012/REG/1/CIN/BAL/injuries.xml" type="application/xml"/>
241
- <link rel="depthchart" href="/2012/REG/1/CIN/BAL/depthchart.xml" type="application/xml"/>
242
- </links>
243
- </game>
244
- <game id="fadd283f-66b2-4cfe-89d9-ad1036d864f8" scheduled="2012-09-11T02:15:00+00:00" home_rotation="" away_rotation="" home="OAK" away="SD" status="closed">
245
- <venue id="ba1ad00f-9130-462c-93f9-5612a0015117" country="US" name="Oakland-Alameda County Coliseum" city="Oakland" state="CA" capacity="63026" surface="turf" type="outdoor" zip="" address=""/>
246
- <weather temperature="" condition="" humidity="">
247
- <wind speed="" direction=""/>
248
- </weather>
249
- <broadcast network="ESPN" satellite="206" internet="" cable=""/>
250
- <links>
251
- <link rel="statistics" href="/2012/REG/1/SD/OAK/statistics.xml" type="application/xml"/>
252
- <link rel="summary" href="/2012/REG/1/SD/OAK/summary.xml" type="application/xml"/>
253
- <link rel="pbp" href="/2012/REG/1/SD/OAK/pbp.xml" type="application/xml"/>
254
- <link rel="boxscore" href="/2012/REG/1/SD/OAK/boxscore.xml" type="application/xml"/>
255
- <link rel="roster" href="/2012/REG/1/SD/OAK/roster.xml" type="application/xml"/>
256
- <link rel="injuries" href="/2012/REG/1/SD/OAK/injuries.xml" type="application/xml"/>
257
- <link rel="depthchart" href="/2012/REG/1/SD/OAK/depthchart.xml" type="application/xml"/>
258
- </links>
259
- </game>
260
- </week>
261
- <week week="2">
262
- <game id="624f53e3-c31c-4439-ad2b-6269907c49bd" scheduled="2012-09-14T00:20:00+00:00" home_rotation="" away_rotation="" home="GB" away="CHI" status="closed">
263
- <venue id="5a60dd3a-302c-41c6-ab0f-dd335c1103c2" country="US" name="Lambeau Field" city="Green Bay" state="WI" capacity="72992" surface="turf" type="outdoor" zip="" address=""/>
264
- <weather temperature="" condition="" humidity="">
265
- <wind speed="" direction=""/>
266
- </weather>
267
- <broadcast network="NFL" satellite="212" internet="" cable=""/>
268
- <links>
269
- <link rel="statistics" href="/2012/REG/2/CHI/GB/statistics.xml" type="application/xml"/>
270
- <link rel="summary" href="/2012/REG/2/CHI/GB/summary.xml" type="application/xml"/>
271
- <link rel="pbp" href="/2012/REG/2/CHI/GB/pbp.xml" type="application/xml"/>
272
- <link rel="boxscore" href="/2012/REG/2/CHI/GB/boxscore.xml" type="application/xml"/>
273
- <link rel="roster" href="/2012/REG/2/CHI/GB/roster.xml" type="application/xml"/>
274
- <link rel="injuries" href="/2012/REG/2/CHI/GB/injuries.xml" type="application/xml"/>
275
- <link rel="depthchart" href="/2012/REG/2/CHI/GB/depthchart.xml" type="application/xml"/>
276
- </links>
277
- </game>
278
- <game id="05ba0eb5-cc0c-4999-aee8-1ddd197a66a1" scheduled="2012-09-16T17:00:00+00:00" home_rotation="" away_rotation="" home="NE" away="ARI" status="closed">
279
- <venue id="e43310b1-cb82-4df9-8be5-e9b39637031b" country="US" name="Gillette Stadium" city="Foxborough" state="MA" capacity="68756" surface="turf" type="outdoor" zip="" address=""/>
280
- <weather temperature="" condition="" humidity="">
281
- <wind speed="" direction=""/>
282
- </weather>
283
- <broadcast network="FOX" satellite="706" internet="" cable=""/>
284
- <links>
285
- <link rel="statistics" href="/2012/REG/2/ARI/NE/statistics.xml" type="application/xml"/>
286
- <link rel="summary" href="/2012/REG/2/ARI/NE/summary.xml" type="application/xml"/>
287
- <link rel="pbp" href="/2012/REG/2/ARI/NE/pbp.xml" type="application/xml"/>
288
- <link rel="boxscore" href="/2012/REG/2/ARI/NE/boxscore.xml" type="application/xml"/>
289
- <link rel="roster" href="/2012/REG/2/ARI/NE/roster.xml" type="application/xml"/>
290
- <link rel="injuries" href="/2012/REG/2/ARI/NE/injuries.xml" type="application/xml"/>
291
- <link rel="depthchart" href="/2012/REG/2/ARI/NE/depthchart.xml" type="application/xml"/>
292
- </links>
293
- </game>
294
- <game id="b098946b-24cd-4756-b15e-f150709b4a87" scheduled="2012-09-16T17:00:00+00:00" home_rotation="" away_rotation="" home="NYG" away="TB" status="closed">
295
- <venue id="5d4c85c7-d84e-4e10-bd6a-8a15ebecca5c" country="US" name="MetLife Stadium" city="East Rutherford" state="NJ" capacity="82500" surface="artificial" type="outdoor" zip="" address=""/>
296
- <weather temperature="" condition="" humidity="">
297
- <wind speed="" direction=""/>
298
- </weather>
299
- <broadcast network="FOX" satellite="707" internet="" cable=""/>
300
- <links>
301
- <link rel="statistics" href="/2012/REG/2/TB/NYG/statistics.xml" type="application/xml"/>
302
- <link rel="summary" href="/2012/REG/2/TB/NYG/summary.xml" type="application/xml"/>
303
- <link rel="pbp" href="/2012/REG/2/TB/NYG/pbp.xml" type="application/xml"/>
304
- <link rel="boxscore" href="/2012/REG/2/TB/NYG/boxscore.xml" type="application/xml"/>
305
- <link rel="roster" href="/2012/REG/2/TB/NYG/roster.xml" type="application/xml"/>
306
- <link rel="injuries" href="/2012/REG/2/TB/NYG/injuries.xml" type="application/xml"/>
307
- <link rel="depthchart" href="/2012/REG/2/TB/NYG/depthchart.xml" type="application/xml"/>
308
- </links>
309
- </game>
310
- <game id="a18a77d3-651a-45ec-9c29-2c6f70454ad4" scheduled="2012-09-16T17:00:00+00:00" home_rotation="" away_rotation="" home="CIN" away="CLE" status="closed">
311
- <venue id="b87a1595-d3c8-48ea-8a53-0aab6378a64a" country="US" name="Paul Brown Stadium" city="Cincinnati" state="OH" capacity="65535" surface="artificial" type="outdoor" zip="" address=""/>
312
- <weather temperature="" condition="" humidity="">
313
- <wind speed="" direction=""/>
314
- </weather>
315
- <broadcast network="CBS" satellite="709" internet="" cable=""/>
316
- <links>
317
- <link rel="statistics" href="/2012/REG/2/CLE/CIN/statistics.xml" type="application/xml"/>
318
- <link rel="summary" href="/2012/REG/2/CLE/CIN/summary.xml" type="application/xml"/>
319
- <link rel="pbp" href="/2012/REG/2/CLE/CIN/pbp.xml" type="application/xml"/>
320
- <link rel="boxscore" href="/2012/REG/2/CLE/CIN/boxscore.xml" type="application/xml"/>
321
- <link rel="roster" href="/2012/REG/2/CLE/CIN/roster.xml" type="application/xml"/>
322
- <link rel="injuries" href="/2012/REG/2/CLE/CIN/injuries.xml" type="application/xml"/>
323
- <link rel="depthchart" href="/2012/REG/2/CLE/CIN/depthchart.xml" type="application/xml"/>
324
- </links>
325
- </game>
326
- <game id="004d3292-821f-4093-a1ef-4a10927eaec7" scheduled="2012-09-16T17:00:00+00:00" home_rotation="" away_rotation="" home="PHI" away="BAL" status="closed">
327
- <venue id="4fa8c29c-6626-464c-8540-314ed7535e1b" country="US" name="Lincoln Financial Field" city="Philadelphia" state="PA" capacity="68532" surface="turf" type="outdoor" zip="" address=""/>
328
- <weather temperature="" condition="" humidity="">
329
- <wind speed="" direction=""/>
330
- </weather>
331
- <broadcast network="CBS" satellite="712" internet="" cable=""/>
332
- <links>
333
- <link rel="statistics" href="/2012/REG/2/BAL/PHI/statistics.xml" type="application/xml"/>
334
- <link rel="summary" href="/2012/REG/2/BAL/PHI/summary.xml" type="application/xml"/>
335
- <link rel="pbp" href="/2012/REG/2/BAL/PHI/pbp.xml" type="application/xml"/>
336
- <link rel="boxscore" href="/2012/REG/2/BAL/PHI/boxscore.xml" type="application/xml"/>
337
- <link rel="roster" href="/2012/REG/2/BAL/PHI/roster.xml" type="application/xml"/>
338
- <link rel="injuries" href="/2012/REG/2/BAL/PHI/injuries.xml" type="application/xml"/>
339
- <link rel="depthchart" href="/2012/REG/2/BAL/PHI/depthchart.xml" type="application/xml"/>
340
- </links>
341
- </game>
342
- <game id="2061b908-2cef-4392-98e7-28be8e581c24" scheduled="2012-09-16T17:00:00+00:00" home_rotation="" away_rotation="" home="JAC" away="HOU" status="closed">
343
- <venue id="4c5c036d-dd3d-4183-b595-71a43a97560f" country="US" name="EverBank Field" city="Jacksonville" state="FL" capacity="76877" surface="artificial" type="outdoor" zip="" address=""/>
344
- <weather temperature="" condition="" humidity="">
345
- <wind speed="" direction=""/>
346
- </weather>
347
- <broadcast network="CBS" satellite="710" internet="" cable=""/>
348
- <links>
349
- <link rel="statistics" href="/2012/REG/2/HOU/JAC/statistics.xml" type="application/xml"/>
350
- <link rel="summary" href="/2012/REG/2/HOU/JAC/summary.xml" type="application/xml"/>
351
- <link rel="pbp" href="/2012/REG/2/HOU/JAC/pbp.xml" type="application/xml"/>
352
- <link rel="boxscore" href="/2012/REG/2/HOU/JAC/boxscore.xml" type="application/xml"/>
353
- <link rel="roster" href="/2012/REG/2/HOU/JAC/roster.xml" type="application/xml"/>
354
- <link rel="injuries" href="/2012/REG/2/HOU/JAC/injuries.xml" type="application/xml"/>
355
- <link rel="depthchart" href="/2012/REG/2/HOU/JAC/depthchart.xml" type="application/xml"/>
356
- </links>
357
- </game>
358
- <game id="37796d82-3be5-4084-83c6-4cf4b2361191" scheduled="2012-09-16T17:00:00+00:00" home_rotation="" away_rotation="" home="CAR" away="NO" status="closed">
359
- <venue id="39be9ed4-3292-49ac-8699-a381de3a4969" country="US" name="Bank of America Stadium" city="Charlotte" state="NC" capacity="73778" surface="turf" type="outdoor" zip="" address=""/>
360
- <weather temperature="" condition="" humidity="">
361
- <wind speed="" direction=""/>
362
- </weather>
363
- <broadcast network="FOX" satellite="704" internet="" cable=""/>
364
- <links>
365
- <link rel="statistics" href="/2012/REG/2/NO/CAR/statistics.xml" type="application/xml"/>
366
- <link rel="summary" href="/2012/REG/2/NO/CAR/summary.xml" type="application/xml"/>
367
- <link rel="pbp" href="/2012/REG/2/NO/CAR/pbp.xml" type="application/xml"/>
368
- <link rel="boxscore" href="/2012/REG/2/NO/CAR/boxscore.xml" type="application/xml"/>
369
- <link rel="roster" href="/2012/REG/2/NO/CAR/roster.xml" type="application/xml"/>
370
- <link rel="injuries" href="/2012/REG/2/NO/CAR/injuries.xml" type="application/xml"/>
371
- <link rel="depthchart" href="/2012/REG/2/NO/CAR/depthchart.xml" type="application/xml"/>
372
- </links>
373
- </game>
374
- <game id="eac82e72-f11d-4e2c-97c7-5c243da77687" scheduled="2012-09-16T17:00:00+00:00" home_rotation="" away_rotation="" home="MIA" away="OAK" status="closed">
375
- <venue id="50a5c833-1570-4c38-abc7-7914cf87dbde" country="US" name="Sun Life Stadium" city="Miami Garden" state="FL" capacity="75235" surface="turf" type="outdoor" zip="" address=""/>
376
- <weather temperature="" condition="" humidity="">
377
- <wind speed="" direction=""/>
378
- </weather>
379
- <broadcast network="CBS" satellite="711" internet="" cable=""/>
380
- <links>
381
- <link rel="statistics" href="/2012/REG/2/OAK/MIA/statistics.xml" type="application/xml"/>
382
- <link rel="summary" href="/2012/REG/2/OAK/MIA/summary.xml" type="application/xml"/>
383
- <link rel="pbp" href="/2012/REG/2/OAK/MIA/pbp.xml" type="application/xml"/>
384
- <link rel="boxscore" href="/2012/REG/2/OAK/MIA/boxscore.xml" type="application/xml"/>
385
- <link rel="roster" href="/2012/REG/2/OAK/MIA/roster.xml" type="application/xml"/>
386
- <link rel="injuries" href="/2012/REG/2/OAK/MIA/injuries.xml" type="application/xml"/>
387
- <link rel="depthchart" href="/2012/REG/2/OAK/MIA/depthchart.xml" type="application/xml"/>
388
- </links>
389
- </game>
390
- <game id="925d1052-00d5-4799-bfee-970c3c5f6ea6" scheduled="2012-09-16T17:00:00+00:00" home_rotation="" away_rotation="" home="IND" away="MIN" status="closed">
391
- <venue id="6ed18563-53e0-46c2-a91d-12d73a16456d" country="US" name="Lucas Oil Stadium" city="Indianapolis" state="IN" capacity="67000" surface="artificial" type="retractable_dome" zip="46225" address="500 S. Capitol Avenue"/>
392
- <weather temperature="" condition="" humidity="">
393
- <wind speed="" direction=""/>
394
- </weather>
395
- <broadcast network="FOX" satellite="705" internet="" cable=""/>
396
- <links>
397
- <link rel="statistics" href="/2012/REG/2/MIN/IND/statistics.xml" type="application/xml"/>
398
- <link rel="summary" href="/2012/REG/2/MIN/IND/summary.xml" type="application/xml"/>
399
- <link rel="pbp" href="/2012/REG/2/MIN/IND/pbp.xml" type="application/xml"/>
400
- <link rel="boxscore" href="/2012/REG/2/MIN/IND/boxscore.xml" type="application/xml"/>
401
- <link rel="roster" href="/2012/REG/2/MIN/IND/roster.xml" type="application/xml"/>
402
- <link rel="injuries" href="/2012/REG/2/MIN/IND/injuries.xml" type="application/xml"/>
403
- <link rel="depthchart" href="/2012/REG/2/MIN/IND/depthchart.xml" type="application/xml"/>
404
- </links>
405
- </game>
406
- <game id="c8ed1cc0-e8cd-452d-9921-bde312ec2248" scheduled="2012-09-16T17:00:00+00:00" home_rotation="" away_rotation="" home="BUF" away="KC" status="closed">
407
- <venue id="e9e0828e-37fc-4238-a317-49037577dd55" country="US" name="Ralph Wilson Stadium" city="Orchard Park" state="NY" capacity="73967" surface="artificial" type="outdoor" zip="" address=""/>
408
- <weather temperature="" condition="" humidity="">
409
- <wind speed="" direction=""/>
410
- </weather>
411
- <broadcast network="CBS" satellite="708" internet="" cable=""/>
412
- <links>
413
- <link rel="statistics" href="/2012/REG/2/KC/BUF/statistics.xml" type="application/xml"/>
414
- <link rel="summary" href="/2012/REG/2/KC/BUF/summary.xml" type="application/xml"/>
415
- <link rel="pbp" href="/2012/REG/2/KC/BUF/pbp.xml" type="application/xml"/>
416
- <link rel="boxscore" href="/2012/REG/2/KC/BUF/boxscore.xml" type="application/xml"/>
417
- <link rel="roster" href="/2012/REG/2/KC/BUF/roster.xml" type="application/xml"/>
418
- <link rel="injuries" href="/2012/REG/2/KC/BUF/injuries.xml" type="application/xml"/>
419
- <link rel="depthchart" href="/2012/REG/2/KC/BUF/depthchart.xml" type="application/xml"/>
420
- </links>
421
- </game>
422
- <game id="d35e05ff-b548-4544-8e1a-be2dbc0015fc" scheduled="2012-09-16T20:05:00+00:00" home_rotation="" away_rotation="" home="STL" away="WAS" status="closed">
423
- <venue id="e86a743f-ee77-490f-acfb-3187b7a9633e" country="US" name="Edward Jones Dome" city="St. Louis" state="MO" capacity="65321" surface="artificial" type="dome" zip="" address=""/>
424
- <weather temperature="" condition="" humidity="">
425
- <wind speed="" direction=""/>
426
- </weather>
427
- <broadcast network="FOX" satellite="713" internet="" cable=""/>
428
- <links>
429
- <link rel="statistics" href="/2012/REG/2/WAS/STL/statistics.xml" type="application/xml"/>
430
- <link rel="summary" href="/2012/REG/2/WAS/STL/summary.xml" type="application/xml"/>
431
- <link rel="pbp" href="/2012/REG/2/WAS/STL/pbp.xml" type="application/xml"/>
432
- <link rel="boxscore" href="/2012/REG/2/WAS/STL/boxscore.xml" type="application/xml"/>
433
- <link rel="roster" href="/2012/REG/2/WAS/STL/roster.xml" type="application/xml"/>
434
- <link rel="injuries" href="/2012/REG/2/WAS/STL/injuries.xml" type="application/xml"/>
435
- <link rel="depthchart" href="/2012/REG/2/WAS/STL/depthchart.xml" type="application/xml"/>
436
- </links>
437
- </game>
438
- <game id="f17a6bd7-35d0-4f21-aca9-bf59261ed818" scheduled="2012-09-16T20:05:00+00:00" home_rotation="" away_rotation="" home="SEA" away="DAL" status="closed">
439
- <venue id="c6b9e5df-c9e4-434c-b3e6-83928f11cbda" country="US" name="Qwest Field" city="Seattle" state="WA" capacity="67000" surface="artificial" type="outdoor" zip="" address=""/>
440
- <weather temperature="" condition="" humidity="">
441
- <wind speed="" direction=""/>
442
- </weather>
443
- <broadcast network="FOX" satellite="714" internet="" cable=""/>
444
- <links>
445
- <link rel="statistics" href="/2012/REG/2/DAL/SEA/statistics.xml" type="application/xml"/>
446
- <link rel="summary" href="/2012/REG/2/DAL/SEA/summary.xml" type="application/xml"/>
447
- <link rel="pbp" href="/2012/REG/2/DAL/SEA/pbp.xml" type="application/xml"/>
448
- <link rel="boxscore" href="/2012/REG/2/DAL/SEA/boxscore.xml" type="application/xml"/>
449
- <link rel="roster" href="/2012/REG/2/DAL/SEA/roster.xml" type="application/xml"/>
450
- <link rel="injuries" href="/2012/REG/2/DAL/SEA/injuries.xml" type="application/xml"/>
451
- <link rel="depthchart" href="/2012/REG/2/DAL/SEA/depthchart.xml" type="application/xml"/>
452
- </links>
453
- </game>
454
- <game id="b39f914b-cdbc-44f8-bdf2-725dc5122c55" scheduled="2012-09-16T20:15:00+00:00" home_rotation="" away_rotation="" home="PIT" away="NYJ" status="closed">
455
- <venue id="7349a2e6-0ac9-410b-8bd2-ca58c9f7aa34" country="US" name="Heinz Field" city="Pittsburgh" state="PA" capacity="65050" surface="turf" type="outdoor" zip="" address=""/>
456
- <weather temperature="" condition="" humidity="">
457
- <wind speed="" direction=""/>
458
- </weather>
459
- <broadcast network="CBS" satellite="715" internet="" cable=""/>
460
- <links>
461
- <link rel="statistics" href="/2012/REG/2/NYJ/PIT/statistics.xml" type="application/xml"/>
462
- <link rel="summary" href="/2012/REG/2/NYJ/PIT/summary.xml" type="application/xml"/>
463
- <link rel="pbp" href="/2012/REG/2/NYJ/PIT/pbp.xml" type="application/xml"/>
464
- <link rel="boxscore" href="/2012/REG/2/NYJ/PIT/boxscore.xml" type="application/xml"/>
465
- <link rel="roster" href="/2012/REG/2/NYJ/PIT/roster.xml" type="application/xml"/>
466
- <link rel="injuries" href="/2012/REG/2/NYJ/PIT/injuries.xml" type="application/xml"/>
467
- <link rel="depthchart" href="/2012/REG/2/NYJ/PIT/depthchart.xml" type="application/xml"/>
468
- </links>
469
- </game>
470
- <game id="3cfb5ab2-c319-49f5-8ce5-8b4da14144f6" scheduled="2012-09-16T20:15:00+00:00" home_rotation="" away_rotation="" home="SD" away="TEN" status="closed">
471
- <venue id="7ca47702-8951-45be-a4f5-3e7d78f8f399" country="US" name="Qualcomm Stadium" city="San Diego" state="CA" capacity="71294" surface="turf" type="outdoor" zip="" address=""/>
472
- <weather temperature="" condition="" humidity="">
473
- <wind speed="" direction=""/>
474
- </weather>
475
- <broadcast network="CBS" satellite="716" internet="" cable=""/>
476
- <links>
477
- <link rel="statistics" href="/2012/REG/2/TEN/SD/statistics.xml" type="application/xml"/>
478
- <link rel="summary" href="/2012/REG/2/TEN/SD/summary.xml" type="application/xml"/>
479
- <link rel="pbp" href="/2012/REG/2/TEN/SD/pbp.xml" type="application/xml"/>
480
- <link rel="boxscore" href="/2012/REG/2/TEN/SD/boxscore.xml" type="application/xml"/>
481
- <link rel="roster" href="/2012/REG/2/TEN/SD/roster.xml" type="application/xml"/>
482
- <link rel="injuries" href="/2012/REG/2/TEN/SD/injuries.xml" type="application/xml"/>
483
- <link rel="depthchart" href="/2012/REG/2/TEN/SD/depthchart.xml" type="application/xml"/>
484
- </links>
485
- </game>
486
- <game id="69202002-f224-4c87-a499-ada8775aa19e" scheduled="2012-09-17T00:20:00+00:00" home_rotation="" away_rotation="" home="SF" away="DET" status="closed">
487
- <venue id="6701808c-c329-482b-9834-2d29cb3185ff" country="US" name="Candlestick Park" city="San Francisco" state="CA" capacity="70207" surface="turf" type="outdoor" zip="" address=""/>
488
- <weather temperature="" condition="" humidity="">
489
- <wind speed="" direction=""/>
490
- </weather>
491
- <broadcast network="NBC" satellite="11" internet="" cable=""/>
492
- <links>
493
- <link rel="statistics" href="/2012/REG/2/DET/SF/statistics.xml" type="application/xml"/>
494
- <link rel="summary" href="/2012/REG/2/DET/SF/summary.xml" type="application/xml"/>
495
- <link rel="pbp" href="/2012/REG/2/DET/SF/pbp.xml" type="application/xml"/>
496
- <link rel="boxscore" href="/2012/REG/2/DET/SF/boxscore.xml" type="application/xml"/>
497
- <link rel="roster" href="/2012/REG/2/DET/SF/roster.xml" type="application/xml"/>
498
- <link rel="injuries" href="/2012/REG/2/DET/SF/injuries.xml" type="application/xml"/>
499
- <link rel="depthchart" href="/2012/REG/2/DET/SF/depthchart.xml" type="application/xml"/>
500
- </links>
501
- </game>
502
- <game id="8e72d0de-954a-423e-a17e-be35d6d147cf" scheduled="2012-09-18T00:30:00+00:00" home_rotation="" away_rotation="" home="ATL" away="DEN" status="closed">
503
- <venue id="216de6bf-bce0-409a-a9e7-90db8df1f7b9" country="US" name="Georgia Dome" city="Atlanta" state="GA" capacity="71250" surface="artificial" type="dome" zip="" address=""/>
504
- <weather temperature="" condition="" humidity="">
505
- <wind speed="" direction=""/>
506
- </weather>
507
- <broadcast network="ESPN" satellite="206" internet="" cable=""/>
508
- <links>
509
- <link rel="statistics" href="/2012/REG/2/DEN/ATL/statistics.xml" type="application/xml"/>
510
- <link rel="summary" href="/2012/REG/2/DEN/ATL/summary.xml" type="application/xml"/>
511
- <link rel="pbp" href="/2012/REG/2/DEN/ATL/pbp.xml" type="application/xml"/>
512
- <link rel="boxscore" href="/2012/REG/2/DEN/ATL/boxscore.xml" type="application/xml"/>
513
- <link rel="roster" href="/2012/REG/2/DEN/ATL/roster.xml" type="application/xml"/>
514
- <link rel="injuries" href="/2012/REG/2/DEN/ATL/injuries.xml" type="application/xml"/>
515
- <link rel="depthchart" href="/2012/REG/2/DEN/ATL/depthchart.xml" type="application/xml"/>
516
- </links>
517
- </game>
518
- </week>
519
- <week week="3">
520
- <game id="de0470aa-f3fa-47d6-a4d2-62f738527d87" scheduled="2012-09-21T00:20:00+00:00" home_rotation="" away_rotation="" home="CAR" away="NYG" status="closed">
521
- <venue id="39be9ed4-3292-49ac-8699-a381de3a4969" country="US" name="Bank of America Stadium" city="Charlotte" state="NC" capacity="73778" surface="turf" type="outdoor" zip="" address=""/>
522
- <weather temperature="" condition="" humidity="">
523
- <wind speed="" direction=""/>
524
- </weather>
525
- <broadcast network="NFL" satellite="212" internet="" cable=""/>
526
- <links>
527
- <link rel="statistics" href="/2012/REG/3/NYG/CAR/statistics.xml" type="application/xml"/>
528
- <link rel="summary" href="/2012/REG/3/NYG/CAR/summary.xml" type="application/xml"/>
529
- <link rel="pbp" href="/2012/REG/3/NYG/CAR/pbp.xml" type="application/xml"/>
530
- <link rel="boxscore" href="/2012/REG/3/NYG/CAR/boxscore.xml" type="application/xml"/>
531
- <link rel="roster" href="/2012/REG/3/NYG/CAR/roster.xml" type="application/xml"/>
532
- <link rel="injuries" href="/2012/REG/3/NYG/CAR/injuries.xml" type="application/xml"/>
533
- <link rel="depthchart" href="/2012/REG/3/NYG/CAR/depthchart.xml" type="application/xml"/>
534
- </links>
535
- </game>
536
- <game id="34a343ce-97e9-4c65-9560-87681886ec1b" scheduled="2012-09-23T17:00:00+00:00" home_rotation="" away_rotation="" home="MIN" away="SF" status="closed">
537
- <venue id="1fede74c-50a2-4036-a1c0-b4d1e53ca98c" country="US" name="Mall of America Field" city="Minneapolis" state="MN" capacity="64111" surface="artificial" type="dome" zip="" address=""/>
538
- <weather temperature="" condition="" humidity="">
539
- <wind speed="" direction=""/>
540
- </weather>
541
- <broadcast network="FOX" satellite="706" internet="" cable=""/>
542
- <links>
543
- <link rel="statistics" href="/2012/REG/3/SF/MIN/statistics.xml" type="application/xml"/>
544
- <link rel="summary" href="/2012/REG/3/SF/MIN/summary.xml" type="application/xml"/>
545
- <link rel="pbp" href="/2012/REG/3/SF/MIN/pbp.xml" type="application/xml"/>
546
- <link rel="boxscore" href="/2012/REG/3/SF/MIN/boxscore.xml" type="application/xml"/>
547
- <link rel="roster" href="/2012/REG/3/SF/MIN/roster.xml" type="application/xml"/>
548
- <link rel="injuries" href="/2012/REG/3/SF/MIN/injuries.xml" type="application/xml"/>
549
- <link rel="depthchart" href="/2012/REG/3/SF/MIN/depthchart.xml" type="application/xml"/>
550
- </links>
551
- </game>
552
- <game id="c85fe28f-fe13-4f0e-8458-ff780e8b2489" scheduled="2012-09-23T17:00:00+00:00" home_rotation="" away_rotation="" home="NO" away="KC" status="closed">
553
- <venue id="3c85d89a-ec66-4983-acd5-1381d6c8673a" country="US" name="The Mercedes-Benz Superdome" city="New Orleans" state="LA" capacity="72968" surface="artificial" type="dome" zip="" address=""/>
554
- <weather temperature="" condition="" humidity="">
555
- <wind speed="" direction=""/>
556
- </weather>
557
- <broadcast network="CBS" satellite="711" internet="" cable=""/>
558
- <links>
559
- <link rel="statistics" href="/2012/REG/3/KC/NO/statistics.xml" type="application/xml"/>
560
- <link rel="summary" href="/2012/REG/3/KC/NO/summary.xml" type="application/xml"/>
561
- <link rel="pbp" href="/2012/REG/3/KC/NO/pbp.xml" type="application/xml"/>
562
- <link rel="boxscore" href="/2012/REG/3/KC/NO/boxscore.xml" type="application/xml"/>
563
- <link rel="roster" href="/2012/REG/3/KC/NO/roster.xml" type="application/xml"/>
564
- <link rel="injuries" href="/2012/REG/3/KC/NO/injuries.xml" type="application/xml"/>
565
- <link rel="depthchart" href="/2012/REG/3/KC/NO/depthchart.xml" type="application/xml"/>
566
- </links>
567
- </game>
568
- <game id="842c8697-299c-46f0-b60f-2a0c81f65fbf" scheduled="2012-09-23T17:00:00+00:00" home_rotation="" away_rotation="" home="TEN" away="DET" status="closed">
569
- <venue id="5295c1b7-c85c-49cb-9569-1707c65324e5" country="US" name="LP Field" city="Nashville" state="TN" capacity="68798" surface="turf" type="outdoor" zip="" address=""/>
570
- <weather temperature="" condition="" humidity="">
571
- <wind speed="" direction=""/>
572
- </weather>
573
- <broadcast network="FOX" satellite="707" internet="" cable=""/>
574
- <links>
575
- <link rel="statistics" href="/2012/REG/3/DET/TEN/statistics.xml" type="application/xml"/>
576
- <link rel="summary" href="/2012/REG/3/DET/TEN/summary.xml" type="application/xml"/>
577
- <link rel="pbp" href="/2012/REG/3/DET/TEN/pbp.xml" type="application/xml"/>
578
- <link rel="boxscore" href="/2012/REG/3/DET/TEN/boxscore.xml" type="application/xml"/>
579
- <link rel="roster" href="/2012/REG/3/DET/TEN/roster.xml" type="application/xml"/>
580
- <link rel="injuries" href="/2012/REG/3/DET/TEN/injuries.xml" type="application/xml"/>
581
- <link rel="depthchart" href="/2012/REG/3/DET/TEN/depthchart.xml" type="application/xml"/>
582
- </links>
583
- </game>
584
- <game id="0710508f-241b-4eb1-a39e-91a7dd97e2f6" scheduled="2012-09-23T17:00:00+00:00" home_rotation="" away_rotation="" home="IND" away="JAC" status="closed">
585
- <venue id="6ed18563-53e0-46c2-a91d-12d73a16456d" country="US" name="Lucas Oil Stadium" city="Indianapolis" state="IN" capacity="67000" surface="artificial" type="retractable_dome" zip="46225" address="500 S. Capitol Avenue"/>
586
- <weather temperature="" condition="" humidity="">
587
- <wind speed="" direction=""/>
588
- </weather>
589
- <broadcast network="CBS" satellite="709" internet="" cable=""/>
590
- <links>
591
- <link rel="statistics" href="/2012/REG/3/JAC/IND/statistics.xml" type="application/xml"/>
592
- <link rel="summary" href="/2012/REG/3/JAC/IND/summary.xml" type="application/xml"/>
593
- <link rel="pbp" href="/2012/REG/3/JAC/IND/pbp.xml" type="application/xml"/>
594
- <link rel="boxscore" href="/2012/REG/3/JAC/IND/boxscore.xml" type="application/xml"/>
595
- <link rel="roster" href="/2012/REG/3/JAC/IND/roster.xml" type="application/xml"/>
596
- <link rel="injuries" href="/2012/REG/3/JAC/IND/injuries.xml" type="application/xml"/>
597
- <link rel="depthchart" href="/2012/REG/3/JAC/IND/depthchart.xml" type="application/xml"/>
598
- </links>
599
- </game>
600
- <game id="dc04122b-0031-464b-b396-f91c8b38cffe" scheduled="2012-09-23T17:00:00+00:00" home_rotation="" away_rotation="" home="WAS" away="CIN" status="closed">
601
- <venue id="7c11bb2d-4a53-4842-b842-0f1c63ed78e9" country="US" name="FedEx Field" city="Hyattsville" state="MD" capacity="91704" surface="turf" type="outdoor" zip="" address=""/>
602
- <weather temperature="" condition="" humidity="">
603
- <wind speed="" direction=""/>
604
- </weather>
605
- <broadcast network="CBS" satellite="712" internet="" cable=""/>
606
- <links>
607
- <link rel="statistics" href="/2012/REG/3/CIN/WAS/statistics.xml" type="application/xml"/>
608
- <link rel="summary" href="/2012/REG/3/CIN/WAS/summary.xml" type="application/xml"/>
609
- <link rel="pbp" href="/2012/REG/3/CIN/WAS/pbp.xml" type="application/xml"/>
610
- <link rel="boxscore" href="/2012/REG/3/CIN/WAS/boxscore.xml" type="application/xml"/>
611
- <link rel="roster" href="/2012/REG/3/CIN/WAS/roster.xml" type="application/xml"/>
612
- <link rel="injuries" href="/2012/REG/3/CIN/WAS/injuries.xml" type="application/xml"/>
613
- <link rel="depthchart" href="/2012/REG/3/CIN/WAS/depthchart.xml" type="application/xml"/>
614
- </links>
615
- </game>
616
- <game id="1a33d801-3ed7-4dfe-9627-b79655818716" scheduled="2012-09-23T17:00:00+00:00" home_rotation="" away_rotation="" home="DAL" away="TB" status="closed">
617
- <venue id="1e84213a-ff1f-4c9d-a003-8ee782b25a40" country="US" name="Cowboys Stadium" city="Arlington" state="TX" capacity="80000" surface="artificial" type="retractable_dome" zip="" address=""/>
618
- <weather temperature="" condition="" humidity="">
619
- <wind speed="" direction=""/>
620
- </weather>
621
- <broadcast network="FOX" satellite="705" internet="" cable=""/>
622
- <links>
623
- <link rel="statistics" href="/2012/REG/3/TB/DAL/statistics.xml" type="application/xml"/>
624
- <link rel="summary" href="/2012/REG/3/TB/DAL/summary.xml" type="application/xml"/>
625
- <link rel="pbp" href="/2012/REG/3/TB/DAL/pbp.xml" type="application/xml"/>
626
- <link rel="boxscore" href="/2012/REG/3/TB/DAL/boxscore.xml" type="application/xml"/>
627
- <link rel="roster" href="/2012/REG/3/TB/DAL/roster.xml" type="application/xml"/>
628
- <link rel="injuries" href="/2012/REG/3/TB/DAL/injuries.xml" type="application/xml"/>
629
- <link rel="depthchart" href="/2012/REG/3/TB/DAL/depthchart.xml" type="application/xml"/>
630
- </links>
631
- </game>
632
- <game id="9a97b81e-7748-48f1-aa90-a311b34ee44b" scheduled="2012-09-23T17:00:00+00:00" home_rotation="" away_rotation="" home="CHI" away="STL" status="closed">
633
- <venue id="d7866605-5ac6-4b3a-90e8-760cc5a26b75" country="US" name="Soldier Field" city="Chicago" state="IL" capacity="61500" surface="turf" type="outdoor" zip="" address=""/>
634
- <weather temperature="" condition="" humidity="">
635
- <wind speed="" direction=""/>
636
- </weather>
637
- <broadcast network="FOX" satellite="704" internet="" cable=""/>
638
- <links>
639
- <link rel="statistics" href="/2012/REG/3/STL/CHI/statistics.xml" type="application/xml"/>
640
- <link rel="summary" href="/2012/REG/3/STL/CHI/summary.xml" type="application/xml"/>
641
- <link rel="pbp" href="/2012/REG/3/STL/CHI/pbp.xml" type="application/xml"/>
642
- <link rel="boxscore" href="/2012/REG/3/STL/CHI/boxscore.xml" type="application/xml"/>
643
- <link rel="roster" href="/2012/REG/3/STL/CHI/roster.xml" type="application/xml"/>
644
- <link rel="injuries" href="/2012/REG/3/STL/CHI/injuries.xml" type="application/xml"/>
645
- <link rel="depthchart" href="/2012/REG/3/STL/CHI/depthchart.xml" type="application/xml"/>
646
- </links>
647
- </game>
648
- <game id="b6dd5fc1-4d02-4b2a-8a8f-d7ae60c34113" scheduled="2012-09-23T17:00:00+00:00" home_rotation="" away_rotation="" home="CLE" away="BUF" status="closed">
649
- <venue id="90c38d91-3774-4f5d-82ca-1c806828219f" country="US" name="Cleveland Browns Stadium" city="Cleveland " state="OH" capacity="73200" surface="artificial" type="outdoor" zip="" address=""/>
650
- <weather temperature="" condition="" humidity="">
651
- <wind speed="" direction=""/>
652
- </weather>
653
- <broadcast network="CBS" satellite="708" internet="" cable=""/>
654
- <links>
655
- <link rel="statistics" href="/2012/REG/3/BUF/CLE/statistics.xml" type="application/xml"/>
656
- <link rel="summary" href="/2012/REG/3/BUF/CLE/summary.xml" type="application/xml"/>
657
- <link rel="pbp" href="/2012/REG/3/BUF/CLE/pbp.xml" type="application/xml"/>
658
- <link rel="boxscore" href="/2012/REG/3/BUF/CLE/boxscore.xml" type="application/xml"/>
659
- <link rel="roster" href="/2012/REG/3/BUF/CLE/roster.xml" type="application/xml"/>
660
- <link rel="injuries" href="/2012/REG/3/BUF/CLE/injuries.xml" type="application/xml"/>
661
- <link rel="depthchart" href="/2012/REG/3/BUF/CLE/depthchart.xml" type="application/xml"/>
662
- </links>
663
- </game>
664
- <game id="9e39ac0c-a4b6-4b7c-92eb-6c502842c49d" scheduled="2012-09-23T17:00:00+00:00" home_rotation="" away_rotation="" home="MIA" away="NYJ" status="closed">
665
- <venue id="50a5c833-1570-4c38-abc7-7914cf87dbde" country="US" name="Sun Life Stadium" city="Miami Garden" state="FL" capacity="75235" surface="turf" type="outdoor" zip="" address=""/>
666
- <weather temperature="" condition="" humidity="">
667
- <wind speed="" direction=""/>
668
- </weather>
669
- <broadcast network="CBS" satellite="710" internet="" cable=""/>
670
- <links>
671
- <link rel="statistics" href="/2012/REG/3/NYJ/MIA/statistics.xml" type="application/xml"/>
672
- <link rel="summary" href="/2012/REG/3/NYJ/MIA/summary.xml" type="application/xml"/>
673
- <link rel="pbp" href="/2012/REG/3/NYJ/MIA/pbp.xml" type="application/xml"/>
674
- <link rel="boxscore" href="/2012/REG/3/NYJ/MIA/boxscore.xml" type="application/xml"/>
675
- <link rel="roster" href="/2012/REG/3/NYJ/MIA/roster.xml" type="application/xml"/>
676
- <link rel="injuries" href="/2012/REG/3/NYJ/MIA/injuries.xml" type="application/xml"/>
677
- <link rel="depthchart" href="/2012/REG/3/NYJ/MIA/depthchart.xml" type="application/xml"/>
678
- </links>
679
- </game>
680
- <game id="f242f82a-0cc0-47e6-915f-fb2857072cea" scheduled="2012-09-23T20:05:00+00:00" home_rotation="" away_rotation="" home="ARI" away="PHI" status="closed">
681
- <venue id="f8e4d2ab-53f9-4e9f-8c4a-9bc278094a84" country="US" name="University of Phoenix Stadium" city="Glendale" state="AZ" capacity="63400" surface="turf" type="retractable_dome" zip="" address=""/>
682
- <weather temperature="" condition="" humidity="">
683
- <wind speed="" direction=""/>
684
- </weather>
685
- <broadcast network="FOX" satellite="713" internet="" cable=""/>
686
- <links>
687
- <link rel="statistics" href="/2012/REG/3/PHI/ARI/statistics.xml" type="application/xml"/>
688
- <link rel="summary" href="/2012/REG/3/PHI/ARI/summary.xml" type="application/xml"/>
689
- <link rel="pbp" href="/2012/REG/3/PHI/ARI/pbp.xml" type="application/xml"/>
690
- <link rel="boxscore" href="/2012/REG/3/PHI/ARI/boxscore.xml" type="application/xml"/>
691
- <link rel="roster" href="/2012/REG/3/PHI/ARI/roster.xml" type="application/xml"/>
692
- <link rel="injuries" href="/2012/REG/3/PHI/ARI/injuries.xml" type="application/xml"/>
693
- <link rel="depthchart" href="/2012/REG/3/PHI/ARI/depthchart.xml" type="application/xml"/>
694
- </links>
695
- </game>
696
- <game id="55240ff2-7bc0-4a12-a11f-b98f7b455d7d" scheduled="2012-09-23T20:05:00+00:00" home_rotation="" away_rotation="" home="SD" away="ATL" status="closed">
697
- <venue id="7ca47702-8951-45be-a4f5-3e7d78f8f399" country="US" name="Qualcomm Stadium" city="San Diego" state="CA" capacity="71294" surface="turf" type="outdoor" zip="" address=""/>
698
- <weather temperature="" condition="" humidity="">
699
- <wind speed="" direction=""/>
700
- </weather>
701
- <broadcast network="FOX" satellite="714" internet="" cable=""/>
702
- <links>
703
- <link rel="statistics" href="/2012/REG/3/ATL/SD/statistics.xml" type="application/xml"/>
704
- <link rel="summary" href="/2012/REG/3/ATL/SD/summary.xml" type="application/xml"/>
705
- <link rel="pbp" href="/2012/REG/3/ATL/SD/pbp.xml" type="application/xml"/>
706
- <link rel="boxscore" href="/2012/REG/3/ATL/SD/boxscore.xml" type="application/xml"/>
707
- <link rel="roster" href="/2012/REG/3/ATL/SD/roster.xml" type="application/xml"/>
708
- <link rel="injuries" href="/2012/REG/3/ATL/SD/injuries.xml" type="application/xml"/>
709
- <link rel="depthchart" href="/2012/REG/3/ATL/SD/depthchart.xml" type="application/xml"/>
710
- </links>
711
- </game>
712
- <game id="ae346165-4704-474c-a74f-3a017704d5e1" scheduled="2012-09-23T20:25:00+00:00" home_rotation="" away_rotation="" home="DEN" away="HOU" status="closed">
713
- <venue id="6589e61d-ef1e-4e30-91b5-9acd2072b8a0" country="US" name="Sports Authority Field at Mile High" city="Denver " state="CO" capacity="76125" surface="turf" type="outdoor" zip="" address=""/>
714
- <weather temperature="" condition="" humidity="">
715
- <wind speed="" direction=""/>
716
- </weather>
717
- <broadcast network="CBS" satellite="715" internet="" cable=""/>
718
- <links>
719
- <link rel="statistics" href="/2012/REG/3/HOU/DEN/statistics.xml" type="application/xml"/>
720
- <link rel="summary" href="/2012/REG/3/HOU/DEN/summary.xml" type="application/xml"/>
721
- <link rel="pbp" href="/2012/REG/3/HOU/DEN/pbp.xml" type="application/xml"/>
722
- <link rel="boxscore" href="/2012/REG/3/HOU/DEN/boxscore.xml" type="application/xml"/>
723
- <link rel="roster" href="/2012/REG/3/HOU/DEN/roster.xml" type="application/xml"/>
724
- <link rel="injuries" href="/2012/REG/3/HOU/DEN/injuries.xml" type="application/xml"/>
725
- <link rel="depthchart" href="/2012/REG/3/HOU/DEN/depthchart.xml" type="application/xml"/>
726
- </links>
727
- </game>
728
- <game id="25b0855d-c3db-4aab-ac8c-3668fc21cc59" scheduled="2012-09-23T20:25:00+00:00" home_rotation="" away_rotation="" home="OAK" away="PIT" status="closed">
729
- <venue id="ba1ad00f-9130-462c-93f9-5612a0015117" country="US" name="Oakland-Alameda County Coliseum" city="Oakland" state="CA" capacity="63026" surface="turf" type="outdoor" zip="" address=""/>
730
- <weather temperature="" condition="" humidity="">
731
- <wind speed="" direction=""/>
732
- </weather>
733
- <broadcast network="CBS" satellite="716" internet="" cable=""/>
734
- <links>
735
- <link rel="statistics" href="/2012/REG/3/PIT/OAK/statistics.xml" type="application/xml"/>
736
- <link rel="summary" href="/2012/REG/3/PIT/OAK/summary.xml" type="application/xml"/>
737
- <link rel="pbp" href="/2012/REG/3/PIT/OAK/pbp.xml" type="application/xml"/>
738
- <link rel="boxscore" href="/2012/REG/3/PIT/OAK/boxscore.xml" type="application/xml"/>
739
- <link rel="roster" href="/2012/REG/3/PIT/OAK/roster.xml" type="application/xml"/>
740
- <link rel="injuries" href="/2012/REG/3/PIT/OAK/injuries.xml" type="application/xml"/>
741
- <link rel="depthchart" href="/2012/REG/3/PIT/OAK/depthchart.xml" type="application/xml"/>
742
- </links>
743
- </game>
744
- <game id="86f3c1d8-362d-4a78-b904-3d8175642d0e" scheduled="2012-09-24T00:20:00+00:00" home_rotation="" away_rotation="" home="BAL" away="NE" status="closed">
745
- <venue id="d54faae0-0314-484f-8604-9d8dd08e1149" country="US" name="M&amp;T Bank Stadium" city="Baltimore" state="MD" capacity="71008" surface="artificial" type="outdoor" zip="" address=""/>
746
- <weather temperature="" condition="" humidity="">
747
- <wind speed="" direction=""/>
748
- </weather>
749
- <broadcast network="NBC" satellite="" internet="" cable=""/>
750
- <links>
751
- <link rel="statistics" href="/2012/REG/3/NE/BAL/statistics.xml" type="application/xml"/>
752
- <link rel="summary" href="/2012/REG/3/NE/BAL/summary.xml" type="application/xml"/>
753
- <link rel="pbp" href="/2012/REG/3/NE/BAL/pbp.xml" type="application/xml"/>
754
- <link rel="boxscore" href="/2012/REG/3/NE/BAL/boxscore.xml" type="application/xml"/>
755
- <link rel="roster" href="/2012/REG/3/NE/BAL/roster.xml" type="application/xml"/>
756
- <link rel="injuries" href="/2012/REG/3/NE/BAL/injuries.xml" type="application/xml"/>
757
- <link rel="depthchart" href="/2012/REG/3/NE/BAL/depthchart.xml" type="application/xml"/>
758
- </links>
759
- </game>
760
- <game id="4b7a2283-42e4-4ea5-8eb8-58e69b3d8fa0" scheduled="2012-09-25T00:30:00+00:00" home_rotation="" away_rotation="" home="SEA" away="GB" status="closed">
761
- <venue id="c6b9e5df-c9e4-434c-b3e6-83928f11cbda" country="US" name="Qwest Field" city="Seattle" state="WA" capacity="67000" surface="artificial" type="outdoor" zip="" address=""/>
762
- <weather temperature="" condition="" humidity="">
763
- <wind speed="" direction=""/>
764
- </weather>
765
- <broadcast network="ESPN" satellite="206" internet="" cable=""/>
766
- <links>
767
- <link rel="statistics" href="/2012/REG/3/GB/SEA/statistics.xml" type="application/xml"/>
768
- <link rel="summary" href="/2012/REG/3/GB/SEA/summary.xml" type="application/xml"/>
769
- <link rel="pbp" href="/2012/REG/3/GB/SEA/pbp.xml" type="application/xml"/>
770
- <link rel="boxscore" href="/2012/REG/3/GB/SEA/boxscore.xml" type="application/xml"/>
771
- <link rel="roster" href="/2012/REG/3/GB/SEA/roster.xml" type="application/xml"/>
772
- <link rel="injuries" href="/2012/REG/3/GB/SEA/injuries.xml" type="application/xml"/>
773
- <link rel="depthchart" href="/2012/REG/3/GB/SEA/depthchart.xml" type="application/xml"/>
774
- </links>
775
- </game>
776
- </week>
777
- <week week="4">
778
- <game id="61f1f5bd-8034-4f18-b1ff-a67baadbde43" scheduled="2012-09-28T00:20:00+00:00" home_rotation="" away_rotation="" home="BAL" away="CLE" status="closed">
779
- <venue id="d54faae0-0314-484f-8604-9d8dd08e1149" country="US" name="M&amp;T Bank Stadium" city="Baltimore" state="MD" capacity="71008" surface="artificial" type="outdoor" zip="" address=""/>
780
- <weather temperature="" condition="" humidity="">
781
- <wind speed="" direction=""/>
782
- </weather>
783
- <broadcast network="NFL" satellite="212" internet="" cable=""/>
784
- <links>
785
- <link rel="statistics" href="/2012/REG/4/CLE/BAL/statistics.xml" type="application/xml"/>
786
- <link rel="summary" href="/2012/REG/4/CLE/BAL/summary.xml" type="application/xml"/>
787
- <link rel="pbp" href="/2012/REG/4/CLE/BAL/pbp.xml" type="application/xml"/>
788
- <link rel="boxscore" href="/2012/REG/4/CLE/BAL/boxscore.xml" type="application/xml"/>
789
- <link rel="roster" href="/2012/REG/4/CLE/BAL/roster.xml" type="application/xml"/>
790
- <link rel="injuries" href="/2012/REG/4/CLE/BAL/injuries.xml" type="application/xml"/>
791
- <link rel="depthchart" href="/2012/REG/4/CLE/BAL/depthchart.xml" type="application/xml"/>
792
- </links>
793
- </game>
794
- <game id="edf56db0-6070-419c-9658-e2447a31e634" scheduled="2012-09-30T17:00:00+00:00" home_rotation="" away_rotation="" home="KC" away="SD" status="closed">
795
- <venue id="2ec4c411-dac2-403d-b091-6b6aa4a0a914" country="US" name="Arrowhead Stadium" city="Kansas City" state="MO" capacity="79451" surface="turf" type="outdoor" zip="" address=""/>
796
- <weather temperature="" condition="" humidity="">
797
- <wind speed="" direction=""/>
798
- </weather>
799
- <broadcast network="CBS" satellite="710" internet="" cable=""/>
800
- <links>
801
- <link rel="statistics" href="/2012/REG/4/SD/KC/statistics.xml" type="application/xml"/>
802
- <link rel="summary" href="/2012/REG/4/SD/KC/summary.xml" type="application/xml"/>
803
- <link rel="pbp" href="/2012/REG/4/SD/KC/pbp.xml" type="application/xml"/>
804
- <link rel="boxscore" href="/2012/REG/4/SD/KC/boxscore.xml" type="application/xml"/>
805
- <link rel="roster" href="/2012/REG/4/SD/KC/roster.xml" type="application/xml"/>
806
- <link rel="injuries" href="/2012/REG/4/SD/KC/injuries.xml" type="application/xml"/>
807
- <link rel="depthchart" href="/2012/REG/4/SD/KC/depthchart.xml" type="application/xml"/>
808
- </links>
809
- </game>
810
- <game id="f6a58cd9-a044-4575-b976-6a2e64e153b0" scheduled="2012-09-30T17:00:00+00:00" home_rotation="" away_rotation="" home="HOU" away="TEN" status="closed">
811
- <venue id="6a72e5ca-33d0-40af-8e6b-b32a4d3d9346" country="US" name="Reliant Stadium" city="Houston" state="TX" capacity="71500" surface="turf" type="retractable_dome" zip="" address=""/>
812
- <weather temperature="" condition="" humidity="">
813
- <wind speed="" direction=""/>
814
- </weather>
815
- <broadcast network="CBS" satellite="709" internet="" cable=""/>
816
- <links>
817
- <link rel="statistics" href="/2012/REG/4/TEN/HOU/statistics.xml" type="application/xml"/>
818
- <link rel="summary" href="/2012/REG/4/TEN/HOU/summary.xml" type="application/xml"/>
819
- <link rel="pbp" href="/2012/REG/4/TEN/HOU/pbp.xml" type="application/xml"/>
820
- <link rel="boxscore" href="/2012/REG/4/TEN/HOU/boxscore.xml" type="application/xml"/>
821
- <link rel="roster" href="/2012/REG/4/TEN/HOU/roster.xml" type="application/xml"/>
822
- <link rel="injuries" href="/2012/REG/4/TEN/HOU/injuries.xml" type="application/xml"/>
823
- <link rel="depthchart" href="/2012/REG/4/TEN/HOU/depthchart.xml" type="application/xml"/>
824
- </links>
825
- </game>
826
- <game id="f6dc5787-8148-41b7-a457-783ded83b4be" scheduled="2012-09-30T17:00:00+00:00" home_rotation="" away_rotation="" home="STL" away="SEA" status="closed">
827
- <venue id="e86a743f-ee77-490f-acfb-3187b7a9633e" country="US" name="Edward Jones Dome" city="St. Louis" state="MO" capacity="65321" surface="artificial" type="dome" zip="" address=""/>
828
- <weather temperature="" condition="" humidity="">
829
- <wind speed="" direction=""/>
830
- </weather>
831
- <broadcast network="FOX" satellite="707" internet="" cable=""/>
832
- <links>
833
- <link rel="statistics" href="/2012/REG/4/SEA/STL/statistics.xml" type="application/xml"/>
834
- <link rel="summary" href="/2012/REG/4/SEA/STL/summary.xml" type="application/xml"/>
835
- <link rel="pbp" href="/2012/REG/4/SEA/STL/pbp.xml" type="application/xml"/>
836
- <link rel="boxscore" href="/2012/REG/4/SEA/STL/boxscore.xml" type="application/xml"/>
837
- <link rel="roster" href="/2012/REG/4/SEA/STL/roster.xml" type="application/xml"/>
838
- <link rel="injuries" href="/2012/REG/4/SEA/STL/injuries.xml" type="application/xml"/>
839
- <link rel="depthchart" href="/2012/REG/4/SEA/STL/depthchart.xml" type="application/xml"/>
840
- </links>
841
- </game>
842
- <game id="8cd22449-12c5-4b39-a417-c94457b8c031" scheduled="2012-09-30T17:00:00+00:00" home_rotation="" away_rotation="" home="ATL" away="CAR" status="closed">
843
- <venue id="216de6bf-bce0-409a-a9e7-90db8df1f7b9" country="US" name="Georgia Dome" city="Atlanta" state="GA" capacity="71250" surface="artificial" type="dome" zip="" address=""/>
844
- <weather temperature="" condition="" humidity="">
845
- <wind speed="" direction=""/>
846
- </weather>
847
- <broadcast network="FOX" satellite="704" internet="" cable=""/>
848
- <links>
849
- <link rel="statistics" href="/2012/REG/4/CAR/ATL/statistics.xml" type="application/xml"/>
850
- <link rel="summary" href="/2012/REG/4/CAR/ATL/summary.xml" type="application/xml"/>
851
- <link rel="pbp" href="/2012/REG/4/CAR/ATL/pbp.xml" type="application/xml"/>
852
- <link rel="boxscore" href="/2012/REG/4/CAR/ATL/boxscore.xml" type="application/xml"/>
853
- <link rel="roster" href="/2012/REG/4/CAR/ATL/roster.xml" type="application/xml"/>
854
- <link rel="injuries" href="/2012/REG/4/CAR/ATL/injuries.xml" type="application/xml"/>
855
- <link rel="depthchart" href="/2012/REG/4/CAR/ATL/depthchart.xml" type="application/xml"/>
856
- </links>
857
- </game>
858
- <game id="a0e65956-1116-4928-a8a6-a1f1b9cd049b" scheduled="2012-09-30T17:00:00+00:00" home_rotation="" away_rotation="" home="NYJ" away="SF" status="closed">
859
- <venue id="5d4c85c7-d84e-4e10-bd6a-8a15ebecca5c" country="US" name="MetLife Stadium" city="East Rutherford" state="NJ" capacity="82500" surface="artificial" type="outdoor" zip="" address=""/>
860
- <weather temperature="" condition="" humidity="">
861
- <wind speed="" direction=""/>
862
- </weather>
863
- <broadcast network="FOX" satellite="706" internet="" cable=""/>
864
- <links>
865
- <link rel="statistics" href="/2012/REG/4/SF/NYJ/statistics.xml" type="application/xml"/>
866
- <link rel="summary" href="/2012/REG/4/SF/NYJ/summary.xml" type="application/xml"/>
867
- <link rel="pbp" href="/2012/REG/4/SF/NYJ/pbp.xml" type="application/xml"/>
868
- <link rel="boxscore" href="/2012/REG/4/SF/NYJ/boxscore.xml" type="application/xml"/>
869
- <link rel="roster" href="/2012/REG/4/SF/NYJ/roster.xml" type="application/xml"/>
870
- <link rel="injuries" href="/2012/REG/4/SF/NYJ/injuries.xml" type="application/xml"/>
871
- <link rel="depthchart" href="/2012/REG/4/SF/NYJ/depthchart.xml" type="application/xml"/>
872
- </links>
873
- </game>
874
- <game id="71621efb-9ee5-4ade-8c8b-16f2a70d8868" scheduled="2012-09-30T17:00:00+00:00" home_rotation="" away_rotation="" home="BUF" away="NE" status="closed">
875
- <venue id="e9e0828e-37fc-4238-a317-49037577dd55" country="US" name="Ralph Wilson Stadium" city="Orchard Park" state="NY" capacity="73967" surface="artificial" type="outdoor" zip="" address=""/>
876
- <weather temperature="" condition="" humidity="">
877
- <wind speed="" direction=""/>
878
- </weather>
879
- <broadcast network="CBS" satellite="708" internet="" cable=""/>
880
- <links>
881
- <link rel="statistics" href="/2012/REG/4/NE/BUF/statistics.xml" type="application/xml"/>
882
- <link rel="summary" href="/2012/REG/4/NE/BUF/summary.xml" type="application/xml"/>
883
- <link rel="pbp" href="/2012/REG/4/NE/BUF/pbp.xml" type="application/xml"/>
884
- <link rel="boxscore" href="/2012/REG/4/NE/BUF/boxscore.xml" type="application/xml"/>
885
- <link rel="roster" href="/2012/REG/4/NE/BUF/roster.xml" type="application/xml"/>
886
- <link rel="injuries" href="/2012/REG/4/NE/BUF/injuries.xml" type="application/xml"/>
887
- <link rel="depthchart" href="/2012/REG/4/NE/BUF/depthchart.xml" type="application/xml"/>
888
- </links>
889
- </game>
890
- <game id="66d3a390-c140-4b30-9ec9-ab2bce20c811" scheduled="2012-09-30T17:00:00+00:00" home_rotation="" away_rotation="" home="DET" away="MIN" status="closed">
891
- <venue id="6e3bcf22-277d-4c06-b019-62aded51654f" country="US" name="Ford Field" city="Detroit" state="MI" capacity="65000" surface="artificial" type="dome" zip="" address=""/>
892
- <weather temperature="" condition="" humidity="">
893
- <wind speed="" direction=""/>
894
- </weather>
895
- <broadcast network="FOX" satellite="705" internet="" cable=""/>
896
- <links>
897
- <link rel="statistics" href="/2012/REG/4/MIN/DET/statistics.xml" type="application/xml"/>
898
- <link rel="summary" href="/2012/REG/4/MIN/DET/summary.xml" type="application/xml"/>
899
- <link rel="pbp" href="/2012/REG/4/MIN/DET/pbp.xml" type="application/xml"/>
900
- <link rel="boxscore" href="/2012/REG/4/MIN/DET/boxscore.xml" type="application/xml"/>
901
- <link rel="roster" href="/2012/REG/4/MIN/DET/roster.xml" type="application/xml"/>
902
- <link rel="injuries" href="/2012/REG/4/MIN/DET/injuries.xml" type="application/xml"/>
903
- <link rel="depthchart" href="/2012/REG/4/MIN/DET/depthchart.xml" type="application/xml"/>
904
- </links>
905
- </game>
906
- <game id="8e488985-b4b1-49eb-9a63-8336de33cac6" scheduled="2012-09-30T20:05:00+00:00" home_rotation="" away_rotation="" home="DEN" away="OAK" status="closed">
907
- <venue id="6589e61d-ef1e-4e30-91b5-9acd2072b8a0" country="US" name="Sports Authority Field at Mile High" city="Denver " state="CO" capacity="76125" surface="turf" type="outdoor" zip="" address=""/>
908
- <weather temperature="" condition="" humidity="">
909
- <wind speed="" direction=""/>
910
- </weather>
911
- <broadcast network="CBS" satellite="713" internet="" cable=""/>
912
- <links>
913
- <link rel="statistics" href="/2012/REG/4/OAK/DEN/statistics.xml" type="application/xml"/>
914
- <link rel="summary" href="/2012/REG/4/OAK/DEN/summary.xml" type="application/xml"/>
915
- <link rel="pbp" href="/2012/REG/4/OAK/DEN/pbp.xml" type="application/xml"/>
916
- <link rel="boxscore" href="/2012/REG/4/OAK/DEN/boxscore.xml" type="application/xml"/>
917
- <link rel="roster" href="/2012/REG/4/OAK/DEN/roster.xml" type="application/xml"/>
918
- <link rel="injuries" href="/2012/REG/4/OAK/DEN/injuries.xml" type="application/xml"/>
919
- <link rel="depthchart" href="/2012/REG/4/OAK/DEN/depthchart.xml" type="application/xml"/>
920
- </links>
921
- </game>
922
- <game id="a17f7a8f-9a01-421a-aa73-fdd8eeb19a95" scheduled="2012-09-30T20:05:00+00:00" home_rotation="" away_rotation="" home="JAC" away="CIN" status="closed">
923
- <venue id="4c5c036d-dd3d-4183-b595-71a43a97560f" country="US" name="EverBank Field" city="Jacksonville" state="FL" capacity="76877" surface="artificial" type="outdoor" zip="" address=""/>
924
- <weather temperature="" condition="" humidity="">
925
- <wind speed="" direction=""/>
926
- </weather>
927
- <broadcast network="CBS" satellite="712" internet="" cable=""/>
928
- <links>
929
- <link rel="statistics" href="/2012/REG/4/CIN/JAC/statistics.xml" type="application/xml"/>
930
- <link rel="summary" href="/2012/REG/4/CIN/JAC/summary.xml" type="application/xml"/>
931
- <link rel="pbp" href="/2012/REG/4/CIN/JAC/pbp.xml" type="application/xml"/>
932
- <link rel="boxscore" href="/2012/REG/4/CIN/JAC/boxscore.xml" type="application/xml"/>
933
- <link rel="roster" href="/2012/REG/4/CIN/JAC/roster.xml" type="application/xml"/>
934
- <link rel="injuries" href="/2012/REG/4/CIN/JAC/injuries.xml" type="application/xml"/>
935
- <link rel="depthchart" href="/2012/REG/4/CIN/JAC/depthchart.xml" type="application/xml"/>
936
- </links>
937
- </game>
938
- <game id="ea8cc558-82c5-4a72-ae79-b0029751aab8" scheduled="2012-09-30T20:05:00+00:00" home_rotation="" away_rotation="" home="ARI" away="MIA" status="closed">
939
- <venue id="f8e4d2ab-53f9-4e9f-8c4a-9bc278094a84" country="US" name="University of Phoenix Stadium" city="Glendale" state="AZ" capacity="63400" surface="turf" type="retractable_dome" zip="" address=""/>
940
- <weather temperature="" condition="" humidity="">
941
- <wind speed="" direction=""/>
942
- </weather>
943
- <broadcast network="CBS" satellite="711" internet="" cable=""/>
944
- <links>
945
- <link rel="statistics" href="/2012/REG/4/MIA/ARI/statistics.xml" type="application/xml"/>
946
- <link rel="summary" href="/2012/REG/4/MIA/ARI/summary.xml" type="application/xml"/>
947
- <link rel="pbp" href="/2012/REG/4/MIA/ARI/pbp.xml" type="application/xml"/>
948
- <link rel="boxscore" href="/2012/REG/4/MIA/ARI/boxscore.xml" type="application/xml"/>
949
- <link rel="roster" href="/2012/REG/4/MIA/ARI/roster.xml" type="application/xml"/>
950
- <link rel="injuries" href="/2012/REG/4/MIA/ARI/injuries.xml" type="application/xml"/>
951
- <link rel="depthchart" href="/2012/REG/4/MIA/ARI/depthchart.xml" type="application/xml"/>
952
- </links>
953
- </game>
954
- <game id="53dcb17e-7a6e-4447-80ac-a3705c4e1cce" scheduled="2012-09-30T20:25:00+00:00" home_rotation="" away_rotation="" home="GB" away="NO" status="closed">
955
- <venue id="5a60dd3a-302c-41c6-ab0f-dd335c1103c2" country="US" name="Lambeau Field" city="Green Bay" state="WI" capacity="72992" surface="turf" type="outdoor" zip="" address=""/>
956
- <weather temperature="" condition="" humidity="">
957
- <wind speed="" direction=""/>
958
- </weather>
959
- <broadcast network="FOX" satellite="714" internet="" cable=""/>
960
- <links>
961
- <link rel="statistics" href="/2012/REG/4/NO/GB/statistics.xml" type="application/xml"/>
962
- <link rel="summary" href="/2012/REG/4/NO/GB/summary.xml" type="application/xml"/>
963
- <link rel="pbp" href="/2012/REG/4/NO/GB/pbp.xml" type="application/xml"/>
964
- <link rel="boxscore" href="/2012/REG/4/NO/GB/boxscore.xml" type="application/xml"/>
965
- <link rel="roster" href="/2012/REG/4/NO/GB/roster.xml" type="application/xml"/>
966
- <link rel="injuries" href="/2012/REG/4/NO/GB/injuries.xml" type="application/xml"/>
967
- <link rel="depthchart" href="/2012/REG/4/NO/GB/depthchart.xml" type="application/xml"/>
968
- </links>
969
- </game>
970
- <game id="55fd913d-6c41-4aa3-a93f-436121a2fd50" scheduled="2012-09-30T20:25:00+00:00" home_rotation="" away_rotation="" home="TB" away="WAS" status="closed">
971
- <venue id="6fccc39c-80bc-4c81-83d9-2d5a848c8c09" country="US" name="Raymond James Stadium" city="Tampa Bay" state="FL" capacity="65657" surface="turf" type="outdoor" zip="" address=""/>
972
- <weather temperature="" condition="" humidity="">
973
- <wind speed="" direction=""/>
974
- </weather>
975
- <broadcast network="FOX" satellite="715" internet="" cable=""/>
976
- <links>
977
- <link rel="statistics" href="/2012/REG/4/WAS/TB/statistics.xml" type="application/xml"/>
978
- <link rel="summary" href="/2012/REG/4/WAS/TB/summary.xml" type="application/xml"/>
979
- <link rel="pbp" href="/2012/REG/4/WAS/TB/pbp.xml" type="application/xml"/>
980
- <link rel="boxscore" href="/2012/REG/4/WAS/TB/boxscore.xml" type="application/xml"/>
981
- <link rel="roster" href="/2012/REG/4/WAS/TB/roster.xml" type="application/xml"/>
982
- <link rel="injuries" href="/2012/REG/4/WAS/TB/injuries.xml" type="application/xml"/>
983
- <link rel="depthchart" href="/2012/REG/4/WAS/TB/depthchart.xml" type="application/xml"/>
984
- </links>
985
- </game>
986
- <game id="c0c56eeb-4b96-497e-9e93-68e3f4c94dac" scheduled="2012-10-01T00:20:00+00:00" home_rotation="" away_rotation="" home="PHI" away="NYG" status="closed">
987
- <venue id="4fa8c29c-6626-464c-8540-314ed7535e1b" country="US" name="Lincoln Financial Field" city="Philadelphia" state="PA" capacity="68532" surface="turf" type="outdoor" zip="" address=""/>
988
- <weather temperature="" condition="" humidity="">
989
- <wind speed="" direction=""/>
990
- </weather>
991
- <broadcast network="NBC" satellite="" internet="" cable=""/>
992
- <links>
993
- <link rel="statistics" href="/2012/REG/4/NYG/PHI/statistics.xml" type="application/xml"/>
994
- <link rel="summary" href="/2012/REG/4/NYG/PHI/summary.xml" type="application/xml"/>
995
- <link rel="pbp" href="/2012/REG/4/NYG/PHI/pbp.xml" type="application/xml"/>
996
- <link rel="boxscore" href="/2012/REG/4/NYG/PHI/boxscore.xml" type="application/xml"/>
997
- <link rel="roster" href="/2012/REG/4/NYG/PHI/roster.xml" type="application/xml"/>
998
- <link rel="injuries" href="/2012/REG/4/NYG/PHI/injuries.xml" type="application/xml"/>
999
- <link rel="depthchart" href="/2012/REG/4/NYG/PHI/depthchart.xml" type="application/xml"/>
1000
- </links>
1001
- </game>
1002
- <game id="6185b90a-a2d7-42d5-bd21-c1f5700a88f7" scheduled="2012-10-02T00:30:00+00:00" home_rotation="" away_rotation="" home="DAL" away="CHI" status="closed">
1003
- <venue id="1e84213a-ff1f-4c9d-a003-8ee782b25a40" country="US" name="Cowboys Stadium" city="Arlington" state="TX" capacity="80000" surface="artificial" type="retractable_dome" zip="" address=""/>
1004
- <weather temperature="" condition="" humidity="">
1005
- <wind speed="" direction=""/>
1006
- </weather>
1007
- <broadcast network="ESPN" satellite="206" internet="" cable=""/>
1008
- <links>
1009
- <link rel="statistics" href="/2012/REG/4/CHI/DAL/statistics.xml" type="application/xml"/>
1010
- <link rel="summary" href="/2012/REG/4/CHI/DAL/summary.xml" type="application/xml"/>
1011
- <link rel="pbp" href="/2012/REG/4/CHI/DAL/pbp.xml" type="application/xml"/>
1012
- <link rel="boxscore" href="/2012/REG/4/CHI/DAL/boxscore.xml" type="application/xml"/>
1013
- <link rel="roster" href="/2012/REG/4/CHI/DAL/roster.xml" type="application/xml"/>
1014
- <link rel="injuries" href="/2012/REG/4/CHI/DAL/injuries.xml" type="application/xml"/>
1015
- <link rel="depthchart" href="/2012/REG/4/CHI/DAL/depthchart.xml" type="application/xml"/>
1016
- </links>
1017
- </game>
1018
- <bye_week>
1019
- <team id="IND"/>
1020
- <team id="PIT"/>
1021
- </bye_week>
1022
- </week>
1023
- <week week="5">
1024
- <game id="0eab80ab-67d6-41a9-8cdb-7567fcd40e6e" scheduled="2012-10-05T00:20:00+00:00" home_rotation="" away_rotation="" home="STL" away="ARI" status="closed">
1025
- <venue id="e86a743f-ee77-490f-acfb-3187b7a9633e" country="US" name="Edward Jones Dome" city="St. Louis" state="MO" capacity="65321" surface="artificial" type="dome" zip="" address=""/>
1026
- <weather temperature="" condition="" humidity="">
1027
- <wind speed="" direction=""/>
1028
- </weather>
1029
- <broadcast network="NFL" satellite="212" internet="" cable=""/>
1030
- <links>
1031
- <link rel="statistics" href="/2012/REG/5/ARI/STL/statistics.xml" type="application/xml"/>
1032
- <link rel="summary" href="/2012/REG/5/ARI/STL/summary.xml" type="application/xml"/>
1033
- <link rel="pbp" href="/2012/REG/5/ARI/STL/pbp.xml" type="application/xml"/>
1034
- <link rel="boxscore" href="/2012/REG/5/ARI/STL/boxscore.xml" type="application/xml"/>
1035
- <link rel="roster" href="/2012/REG/5/ARI/STL/roster.xml" type="application/xml"/>
1036
- <link rel="injuries" href="/2012/REG/5/ARI/STL/injuries.xml" type="application/xml"/>
1037
- <link rel="depthchart" href="/2012/REG/5/ARI/STL/depthchart.xml" type="application/xml"/>
1038
- </links>
1039
- </game>
1040
- <game id="3ec50774-1757-42c7-b579-836e7cae0f5e" scheduled="2012-10-07T17:00:00+00:00" home_rotation="" away_rotation="" home="WAS" away="ATL" status="closed">
1041
- <venue id="7c11bb2d-4a53-4842-b842-0f1c63ed78e9" country="US" name="FedEx Field" city="Hyattsville" state="MD" capacity="91704" surface="turf" type="outdoor" zip="" address=""/>
1042
- <weather temperature="" condition="" humidity="">
1043
- <wind speed="" direction=""/>
1044
- </weather>
1045
- <broadcast network="FOX" satellite="706" internet="" cable=""/>
1046
- <links>
1047
- <link rel="statistics" href="/2012/REG/5/ATL/WAS/statistics.xml" type="application/xml"/>
1048
- <link rel="summary" href="/2012/REG/5/ATL/WAS/summary.xml" type="application/xml"/>
1049
- <link rel="pbp" href="/2012/REG/5/ATL/WAS/pbp.xml" type="application/xml"/>
1050
- <link rel="boxscore" href="/2012/REG/5/ATL/WAS/boxscore.xml" type="application/xml"/>
1051
- <link rel="roster" href="/2012/REG/5/ATL/WAS/roster.xml" type="application/xml"/>
1052
- <link rel="injuries" href="/2012/REG/5/ATL/WAS/injuries.xml" type="application/xml"/>
1053
- <link rel="depthchart" href="/2012/REG/5/ATL/WAS/depthchart.xml" type="application/xml"/>
1054
- </links>
1055
- </game>
1056
- <game id="631868a2-53fa-4ec7-afa7-1f516affcded" scheduled="2012-10-07T17:00:00+00:00" home_rotation="" away_rotation="" home="PIT" away="PHI" status="closed">
1057
- <venue id="7349a2e6-0ac9-410b-8bd2-ca58c9f7aa34" country="US" name="Heinz Field" city="Pittsburgh" state="PA" capacity="65050" surface="turf" type="outdoor" zip="" address=""/>
1058
- <weather temperature="" condition="" humidity="">
1059
- <wind speed="" direction=""/>
1060
- </weather>
1061
- <broadcast network="FOX" satellite="705" internet="" cable=""/>
1062
- <links>
1063
- <link rel="statistics" href="/2012/REG/5/PHI/PIT/statistics.xml" type="application/xml"/>
1064
- <link rel="summary" href="/2012/REG/5/PHI/PIT/summary.xml" type="application/xml"/>
1065
- <link rel="pbp" href="/2012/REG/5/PHI/PIT/pbp.xml" type="application/xml"/>
1066
- <link rel="boxscore" href="/2012/REG/5/PHI/PIT/boxscore.xml" type="application/xml"/>
1067
- <link rel="roster" href="/2012/REG/5/PHI/PIT/roster.xml" type="application/xml"/>
1068
- <link rel="injuries" href="/2012/REG/5/PHI/PIT/injuries.xml" type="application/xml"/>
1069
- <link rel="depthchart" href="/2012/REG/5/PHI/PIT/depthchart.xml" type="application/xml"/>
1070
- </links>
1071
- </game>
1072
- <game id="745e6643-5191-4244-acef-1f8f968579ca" scheduled="2012-10-07T17:00:00+00:00" home_rotation="" away_rotation="" home="IND" away="GB" status="closed">
1073
- <venue id="6ed18563-53e0-46c2-a91d-12d73a16456d" country="US" name="Lucas Oil Stadium" city="Indianapolis" state="IN" capacity="67000" surface="artificial" type="retractable_dome" zip="46225" address="500 S. Capitol Avenue"/>
1074
- <weather temperature="" condition="" humidity="">
1075
- <wind speed="" direction=""/>
1076
- </weather>
1077
- <broadcast network="FOX" satellite="704" internet="" cable=""/>
1078
- <links>
1079
- <link rel="statistics" href="/2012/REG/5/GB/IND/statistics.xml" type="application/xml"/>
1080
- <link rel="summary" href="/2012/REG/5/GB/IND/summary.xml" type="application/xml"/>
1081
- <link rel="pbp" href="/2012/REG/5/GB/IND/pbp.xml" type="application/xml"/>
1082
- <link rel="boxscore" href="/2012/REG/5/GB/IND/boxscore.xml" type="application/xml"/>
1083
- <link rel="roster" href="/2012/REG/5/GB/IND/roster.xml" type="application/xml"/>
1084
- <link rel="injuries" href="/2012/REG/5/GB/IND/injuries.xml" type="application/xml"/>
1085
- <link rel="depthchart" href="/2012/REG/5/GB/IND/depthchart.xml" type="application/xml"/>
1086
- </links>
1087
- </game>
1088
- <game id="8d625a89-7cc9-45cd-b1d5-ec725ae19f39" scheduled="2012-10-07T17:00:00+00:00" home_rotation="" away_rotation="" home="KC" away="BAL" status="closed">
1089
- <venue id="2ec4c411-dac2-403d-b091-6b6aa4a0a914" country="US" name="Arrowhead Stadium" city="Kansas City" state="MO" capacity="79451" surface="turf" type="outdoor" zip="" address=""/>
1090
- <weather temperature="" condition="" humidity="">
1091
- <wind speed="" direction=""/>
1092
- </weather>
1093
- <broadcast network="CBS" satellite="708" internet="" cable=""/>
1094
- <links>
1095
- <link rel="statistics" href="/2012/REG/5/BAL/KC/statistics.xml" type="application/xml"/>
1096
- <link rel="summary" href="/2012/REG/5/BAL/KC/summary.xml" type="application/xml"/>
1097
- <link rel="pbp" href="/2012/REG/5/BAL/KC/pbp.xml" type="application/xml"/>
1098
- <link rel="boxscore" href="/2012/REG/5/BAL/KC/boxscore.xml" type="application/xml"/>
1099
- <link rel="roster" href="/2012/REG/5/BAL/KC/roster.xml" type="application/xml"/>
1100
- <link rel="injuries" href="/2012/REG/5/BAL/KC/injuries.xml" type="application/xml"/>
1101
- <link rel="depthchart" href="/2012/REG/5/BAL/KC/depthchart.xml" type="application/xml"/>
1102
- </links>
1103
- </game>
1104
- <game id="a94d5be7-b5b5-471f-ad47-fa9c53976fec" scheduled="2012-10-07T17:00:00+00:00" home_rotation="" away_rotation="" home="NYG" away="CLE" status="closed">
1105
- <venue id="5d4c85c7-d84e-4e10-bd6a-8a15ebecca5c" country="US" name="MetLife Stadium" city="East Rutherford" state="NJ" capacity="82500" surface="artificial" type="outdoor" zip="" address=""/>
1106
- <weather temperature="" condition="" humidity="">
1107
- <wind speed="" direction=""/>
1108
- </weather>
1109
- <broadcast network="CBS" satellite="709" internet="" cable=""/>
1110
- <links>
1111
- <link rel="statistics" href="/2012/REG/5/CLE/NYG/statistics.xml" type="application/xml"/>
1112
- <link rel="summary" href="/2012/REG/5/CLE/NYG/summary.xml" type="application/xml"/>
1113
- <link rel="pbp" href="/2012/REG/5/CLE/NYG/pbp.xml" type="application/xml"/>
1114
- <link rel="boxscore" href="/2012/REG/5/CLE/NYG/boxscore.xml" type="application/xml"/>
1115
- <link rel="roster" href="/2012/REG/5/CLE/NYG/roster.xml" type="application/xml"/>
1116
- <link rel="injuries" href="/2012/REG/5/CLE/NYG/injuries.xml" type="application/xml"/>
1117
- <link rel="depthchart" href="/2012/REG/5/CLE/NYG/depthchart.xml" type="application/xml"/>
1118
- </links>
1119
- </game>
1120
- <game id="e39a59f4-e605-4670-9c81-29c65876e737" scheduled="2012-10-07T17:00:00+00:00" home_rotation="" away_rotation="" home="CIN" away="MIA" status="closed">
1121
- <venue id="b87a1595-d3c8-48ea-8a53-0aab6378a64a" country="US" name="Paul Brown Stadium" city="Cincinnati" state="OH" capacity="65535" surface="artificial" type="outdoor" zip="" address=""/>
1122
- <weather temperature="" condition="" humidity="">
1123
- <wind speed="" direction=""/>
1124
- </weather>
1125
- <broadcast network="CBS" satellite="707" internet="" cable=""/>
1126
- <links>
1127
- <link rel="statistics" href="/2012/REG/5/MIA/CIN/statistics.xml" type="application/xml"/>
1128
- <link rel="summary" href="/2012/REG/5/MIA/CIN/summary.xml" type="application/xml"/>
1129
- <link rel="pbp" href="/2012/REG/5/MIA/CIN/pbp.xml" type="application/xml"/>
1130
- <link rel="boxscore" href="/2012/REG/5/MIA/CIN/boxscore.xml" type="application/xml"/>
1131
- <link rel="roster" href="/2012/REG/5/MIA/CIN/roster.xml" type="application/xml"/>
1132
- <link rel="injuries" href="/2012/REG/5/MIA/CIN/injuries.xml" type="application/xml"/>
1133
- <link rel="depthchart" href="/2012/REG/5/MIA/CIN/depthchart.xml" type="application/xml"/>
1134
- </links>
1135
- </game>
1136
- <game id="ada0f50f-6256-456d-aaec-408c12a99a02" scheduled="2012-10-07T20:05:00+00:00" home_rotation="" away_rotation="" home="JAC" away="CHI" status="closed">
1137
- <venue id="4c5c036d-dd3d-4183-b595-71a43a97560f" country="US" name="EverBank Field" city="Jacksonville" state="FL" capacity="76877" surface="artificial" type="outdoor" zip="" address=""/>
1138
- <weather temperature="" condition="" humidity="">
1139
- <wind speed="" direction=""/>
1140
- </weather>
1141
- <broadcast network="FOX" satellite="711" internet="" cable=""/>
1142
- <links>
1143
- <link rel="statistics" href="/2012/REG/5/CHI/JAC/statistics.xml" type="application/xml"/>
1144
- <link rel="summary" href="/2012/REG/5/CHI/JAC/summary.xml" type="application/xml"/>
1145
- <link rel="pbp" href="/2012/REG/5/CHI/JAC/pbp.xml" type="application/xml"/>
1146
- <link rel="boxscore" href="/2012/REG/5/CHI/JAC/boxscore.xml" type="application/xml"/>
1147
- <link rel="roster" href="/2012/REG/5/CHI/JAC/roster.xml" type="application/xml"/>
1148
- <link rel="injuries" href="/2012/REG/5/CHI/JAC/injuries.xml" type="application/xml"/>
1149
- <link rel="depthchart" href="/2012/REG/5/CHI/JAC/depthchart.xml" type="application/xml"/>
1150
- </links>
1151
- </game>
1152
- <game id="603ec3c7-5298-4e58-82ee-b7091a1a3db3" scheduled="2012-10-07T20:05:00+00:00" home_rotation="" away_rotation="" home="CAR" away="SEA" status="closed">
1153
- <venue id="39be9ed4-3292-49ac-8699-a381de3a4969" country="US" name="Bank of America Stadium" city="Charlotte" state="NC" capacity="73778" surface="turf" type="outdoor" zip="" address=""/>
1154
- <weather temperature="" condition="" humidity="">
1155
- <wind speed="" direction=""/>
1156
- </weather>
1157
- <broadcast network="FOX" satellite="710" internet="" cable=""/>
1158
- <links>
1159
- <link rel="statistics" href="/2012/REG/5/SEA/CAR/statistics.xml" type="application/xml"/>
1160
- <link rel="summary" href="/2012/REG/5/SEA/CAR/summary.xml" type="application/xml"/>
1161
- <link rel="pbp" href="/2012/REG/5/SEA/CAR/pbp.xml" type="application/xml"/>
1162
- <link rel="boxscore" href="/2012/REG/5/SEA/CAR/boxscore.xml" type="application/xml"/>
1163
- <link rel="roster" href="/2012/REG/5/SEA/CAR/roster.xml" type="application/xml"/>
1164
- <link rel="injuries" href="/2012/REG/5/SEA/CAR/injuries.xml" type="application/xml"/>
1165
- <link rel="depthchart" href="/2012/REG/5/SEA/CAR/depthchart.xml" type="application/xml"/>
1166
- </links>
1167
- </game>
1168
- <game id="edded3ae-8ed6-417b-8b46-4862e903255d" scheduled="2012-10-07T20:25:00+00:00" home_rotation="" away_rotation="" home="MIN" away="TEN" status="closed">
1169
- <venue id="1fede74c-50a2-4036-a1c0-b4d1e53ca98c" country="US" name="Mall of America Field" city="Minneapolis" state="MN" capacity="64111" surface="artificial" type="dome" zip="" address=""/>
1170
- <weather temperature="" condition="" humidity="">
1171
- <wind speed="" direction=""/>
1172
- </weather>
1173
- <broadcast network="CBS" satellite="712" internet="" cable=""/>
1174
- <links>
1175
- <link rel="statistics" href="/2012/REG/5/TEN/MIN/statistics.xml" type="application/xml"/>
1176
- <link rel="summary" href="/2012/REG/5/TEN/MIN/summary.xml" type="application/xml"/>
1177
- <link rel="pbp" href="/2012/REG/5/TEN/MIN/pbp.xml" type="application/xml"/>
1178
- <link rel="boxscore" href="/2012/REG/5/TEN/MIN/boxscore.xml" type="application/xml"/>
1179
- <link rel="roster" href="/2012/REG/5/TEN/MIN/roster.xml" type="application/xml"/>
1180
- <link rel="injuries" href="/2012/REG/5/TEN/MIN/injuries.xml" type="application/xml"/>
1181
- <link rel="depthchart" href="/2012/REG/5/TEN/MIN/depthchart.xml" type="application/xml"/>
1182
- </links>
1183
- </game>
1184
- <game id="52918071-f70a-43f5-ba6e-b3c88d62db94" scheduled="2012-10-07T20:25:00+00:00" home_rotation="" away_rotation="" home="NE" away="DEN" status="closed">
1185
- <venue id="e43310b1-cb82-4df9-8be5-e9b39637031b" country="US" name="Gillette Stadium" city="Foxborough" state="MA" capacity="68756" surface="turf" type="outdoor" zip="" address=""/>
1186
- <weather temperature="" condition="" humidity="">
1187
- <wind speed="" direction=""/>
1188
- </weather>
1189
- <broadcast network="CBS" satellite="713" internet="" cable=""/>
1190
- <links>
1191
- <link rel="statistics" href="/2012/REG/5/DEN/NE/statistics.xml" type="application/xml"/>
1192
- <link rel="summary" href="/2012/REG/5/DEN/NE/summary.xml" type="application/xml"/>
1193
- <link rel="pbp" href="/2012/REG/5/DEN/NE/pbp.xml" type="application/xml"/>
1194
- <link rel="boxscore" href="/2012/REG/5/DEN/NE/boxscore.xml" type="application/xml"/>
1195
- <link rel="roster" href="/2012/REG/5/DEN/NE/roster.xml" type="application/xml"/>
1196
- <link rel="injuries" href="/2012/REG/5/DEN/NE/injuries.xml" type="application/xml"/>
1197
- <link rel="depthchart" href="/2012/REG/5/DEN/NE/depthchart.xml" type="application/xml"/>
1198
- </links>
1199
- </game>
1200
- <game id="0a01969c-8b35-4a8d-b410-fc557fcfaeb6" scheduled="2012-10-07T20:25:00+00:00" home_rotation="" away_rotation="" home="SF" away="BUF" status="closed">
1201
- <venue id="6701808c-c329-482b-9834-2d29cb3185ff" country="US" name="Candlestick Park" city="San Francisco" state="CA" capacity="70207" surface="turf" type="outdoor" zip="" address=""/>
1202
- <weather temperature="" condition="" humidity="">
1203
- <wind speed="" direction=""/>
1204
- </weather>
1205
- <broadcast network="CBS" satellite="714" internet="" cable=""/>
1206
- <links>
1207
- <link rel="statistics" href="/2012/REG/5/BUF/SF/statistics.xml" type="application/xml"/>
1208
- <link rel="summary" href="/2012/REG/5/BUF/SF/summary.xml" type="application/xml"/>
1209
- <link rel="pbp" href="/2012/REG/5/BUF/SF/pbp.xml" type="application/xml"/>
1210
- <link rel="boxscore" href="/2012/REG/5/BUF/SF/boxscore.xml" type="application/xml"/>
1211
- <link rel="roster" href="/2012/REG/5/BUF/SF/roster.xml" type="application/xml"/>
1212
- <link rel="injuries" href="/2012/REG/5/BUF/SF/injuries.xml" type="application/xml"/>
1213
- <link rel="depthchart" href="/2012/REG/5/BUF/SF/depthchart.xml" type="application/xml"/>
1214
- </links>
1215
- </game>
1216
- <game id="5f86eee3-293e-484a-9da6-d4bcbcecfe73" scheduled="2012-10-08T00:20:00+00:00" home_rotation="" away_rotation="" home="NO" away="SD" status="closed">
1217
- <venue id="3c85d89a-ec66-4983-acd5-1381d6c8673a" country="US" name="The Mercedes-Benz Superdome" city="New Orleans" state="LA" capacity="72968" surface="artificial" type="dome" zip="" address=""/>
1218
- <weather temperature="" condition="" humidity="">
1219
- <wind speed="" direction=""/>
1220
- </weather>
1221
- <broadcast network="NBC" satellite="" internet="" cable=""/>
1222
- <links>
1223
- <link rel="statistics" href="/2012/REG/5/SD/NO/statistics.xml" type="application/xml"/>
1224
- <link rel="summary" href="/2012/REG/5/SD/NO/summary.xml" type="application/xml"/>
1225
- <link rel="pbp" href="/2012/REG/5/SD/NO/pbp.xml" type="application/xml"/>
1226
- <link rel="boxscore" href="/2012/REG/5/SD/NO/boxscore.xml" type="application/xml"/>
1227
- <link rel="roster" href="/2012/REG/5/SD/NO/roster.xml" type="application/xml"/>
1228
- <link rel="injuries" href="/2012/REG/5/SD/NO/injuries.xml" type="application/xml"/>
1229
- <link rel="depthchart" href="/2012/REG/5/SD/NO/depthchart.xml" type="application/xml"/>
1230
- </links>
1231
- </game>
1232
- <game id="e5f9ae78-c14c-4752-b08f-c2fc9f1f099c" scheduled="2012-10-09T00:30:00+00:00" home_rotation="" away_rotation="" home="NYJ" away="HOU" status="closed">
1233
- <venue id="5d4c85c7-d84e-4e10-bd6a-8a15ebecca5c" country="US" name="MetLife Stadium" city="East Rutherford" state="NJ" capacity="82500" surface="artificial" type="outdoor" zip="" address=""/>
1234
- <weather temperature="" condition="" humidity="">
1235
- <wind speed="" direction=""/>
1236
- </weather>
1237
- <broadcast network="ESPN" satellite="206" internet="" cable=""/>
1238
- <links>
1239
- <link rel="statistics" href="/2012/REG/5/HOU/NYJ/statistics.xml" type="application/xml"/>
1240
- <link rel="summary" href="/2012/REG/5/HOU/NYJ/summary.xml" type="application/xml"/>
1241
- <link rel="pbp" href="/2012/REG/5/HOU/NYJ/pbp.xml" type="application/xml"/>
1242
- <link rel="boxscore" href="/2012/REG/5/HOU/NYJ/boxscore.xml" type="application/xml"/>
1243
- <link rel="roster" href="/2012/REG/5/HOU/NYJ/roster.xml" type="application/xml"/>
1244
- <link rel="injuries" href="/2012/REG/5/HOU/NYJ/injuries.xml" type="application/xml"/>
1245
- <link rel="depthchart" href="/2012/REG/5/HOU/NYJ/depthchart.xml" type="application/xml"/>
1246
- </links>
1247
- </game>
1248
- <bye_week>
1249
- <team id="DAL"/>
1250
- <team id="DET"/>
1251
- <team id="OAK"/>
1252
- <team id="TB"/>
1253
- </bye_week>
1254
- </week>
1255
- <week week="6">
1256
- <game id="d6bb6e75-0041-4fed-ac20-8ee8c80a4000" scheduled="2012-10-12T00:20:00+00:00" home_rotation="" away_rotation="" home="TEN" away="PIT" status="closed">
1257
- <venue id="5295c1b7-c85c-49cb-9569-1707c65324e5" country="US" name="LP Field" city="Nashville" state="TN" capacity="68798" surface="turf" type="outdoor" zip="" address=""/>
1258
- <weather temperature="" condition="" humidity="">
1259
- <wind speed="" direction=""/>
1260
- </weather>
1261
- <broadcast network="NFL" satellite="212" internet="" cable=""/>
1262
- <links>
1263
- <link rel="statistics" href="/2012/REG/6/PIT/TEN/statistics.xml" type="application/xml"/>
1264
- <link rel="summary" href="/2012/REG/6/PIT/TEN/summary.xml" type="application/xml"/>
1265
- <link rel="pbp" href="/2012/REG/6/PIT/TEN/pbp.xml" type="application/xml"/>
1266
- <link rel="boxscore" href="/2012/REG/6/PIT/TEN/boxscore.xml" type="application/xml"/>
1267
- <link rel="roster" href="/2012/REG/6/PIT/TEN/roster.xml" type="application/xml"/>
1268
- <link rel="injuries" href="/2012/REG/6/PIT/TEN/injuries.xml" type="application/xml"/>
1269
- <link rel="depthchart" href="/2012/REG/6/PIT/TEN/depthchart.xml" type="application/xml"/>
1270
- </links>
1271
- </game>
1272
- <game id="7d3eef90-f40f-44f1-91f3-d4bc0b77e32d" scheduled="2012-10-14T17:00:00+00:00" home_rotation="" away_rotation="" home="MIA" away="STL" status="closed">
1273
- <venue id="50a5c833-1570-4c38-abc7-7914cf87dbde" country="US" name="Sun Life Stadium" city="Miami Garden" state="FL" capacity="75235" surface="turf" type="outdoor" zip="" address=""/>
1274
- <weather temperature="" condition="" humidity="">
1275
- <wind speed="" direction=""/>
1276
- </weather>
1277
- <broadcast network="FOX" satellite="705" internet="" cable=""/>
1278
- <links>
1279
- <link rel="statistics" href="/2012/REG/6/STL/MIA/statistics.xml" type="application/xml"/>
1280
- <link rel="summary" href="/2012/REG/6/STL/MIA/summary.xml" type="application/xml"/>
1281
- <link rel="pbp" href="/2012/REG/6/STL/MIA/pbp.xml" type="application/xml"/>
1282
- <link rel="boxscore" href="/2012/REG/6/STL/MIA/boxscore.xml" type="application/xml"/>
1283
- <link rel="roster" href="/2012/REG/6/STL/MIA/roster.xml" type="application/xml"/>
1284
- <link rel="injuries" href="/2012/REG/6/STL/MIA/injuries.xml" type="application/xml"/>
1285
- <link rel="depthchart" href="/2012/REG/6/STL/MIA/depthchart.xml" type="application/xml"/>
1286
- </links>
1287
- </game>
1288
- <game id="4665b393-f6d7-45be-bad5-1ac29d6de44f" scheduled="2012-10-14T17:00:00+00:00" home_rotation="" away_rotation="" home="TB" away="KC" status="closed">
1289
- <venue id="6fccc39c-80bc-4c81-83d9-2d5a848c8c09" country="US" name="Raymond James Stadium" city="Tampa Bay" state="FL" capacity="65657" surface="turf" type="outdoor" zip="" address=""/>
1290
- <weather temperature="" condition="" humidity="">
1291
- <wind speed="" direction=""/>
1292
- </weather>
1293
- <broadcast network="CBS" satellite="710" internet="" cable=""/>
1294
- <links>
1295
- <link rel="statistics" href="/2012/REG/6/KC/TB/statistics.xml" type="application/xml"/>
1296
- <link rel="summary" href="/2012/REG/6/KC/TB/summary.xml" type="application/xml"/>
1297
- <link rel="pbp" href="/2012/REG/6/KC/TB/pbp.xml" type="application/xml"/>
1298
- <link rel="boxscore" href="/2012/REG/6/KC/TB/boxscore.xml" type="application/xml"/>
1299
- <link rel="roster" href="/2012/REG/6/KC/TB/roster.xml" type="application/xml"/>
1300
- <link rel="injuries" href="/2012/REG/6/KC/TB/injuries.xml" type="application/xml"/>
1301
- <link rel="depthchart" href="/2012/REG/6/KC/TB/depthchart.xml" type="application/xml"/>
1302
- </links>
1303
- </game>
1304
- <game id="4dea8474-b52f-4f39-9a51-3e4078c95771" scheduled="2012-10-14T17:00:00+00:00" home_rotation="" away_rotation="" home="NYJ" away="IND" status="closed">
1305
- <venue id="5d4c85c7-d84e-4e10-bd6a-8a15ebecca5c" country="US" name="MetLife Stadium" city="East Rutherford" state="NJ" capacity="82500" surface="artificial" type="outdoor" zip="" address=""/>
1306
- <weather temperature="" condition="" humidity="">
1307
- <wind speed="" direction=""/>
1308
- </weather>
1309
- <broadcast network="CBS" satellite="709" internet="" cable=""/>
1310
- <links>
1311
- <link rel="statistics" href="/2012/REG/6/IND/NYJ/statistics.xml" type="application/xml"/>
1312
- <link rel="summary" href="/2012/REG/6/IND/NYJ/summary.xml" type="application/xml"/>
1313
- <link rel="pbp" href="/2012/REG/6/IND/NYJ/pbp.xml" type="application/xml"/>
1314
- <link rel="boxscore" href="/2012/REG/6/IND/NYJ/boxscore.xml" type="application/xml"/>
1315
- <link rel="roster" href="/2012/REG/6/IND/NYJ/roster.xml" type="application/xml"/>
1316
- <link rel="injuries" href="/2012/REG/6/IND/NYJ/injuries.xml" type="application/xml"/>
1317
- <link rel="depthchart" href="/2012/REG/6/IND/NYJ/depthchart.xml" type="application/xml"/>
1318
- </links>
1319
- </game>
1320
- <game id="8b021915-33b7-4d74-9d08-a35484371aeb" scheduled="2012-10-14T17:00:00+00:00" home_rotation="" away_rotation="" home="BAL" away="DAL" status="closed">
1321
- <venue id="d54faae0-0314-484f-8604-9d8dd08e1149" country="US" name="M&amp;T Bank Stadium" city="Baltimore" state="MD" capacity="71008" surface="artificial" type="outdoor" zip="" address=""/>
1322
- <weather temperature="" condition="" humidity="">
1323
- <wind speed="" direction=""/>
1324
- </weather>
1325
- <broadcast network="FOX" satellite="704" internet="" cable=""/>
1326
- <links>
1327
- <link rel="statistics" href="/2012/REG/6/DAL/BAL/statistics.xml" type="application/xml"/>
1328
- <link rel="summary" href="/2012/REG/6/DAL/BAL/summary.xml" type="application/xml"/>
1329
- <link rel="pbp" href="/2012/REG/6/DAL/BAL/pbp.xml" type="application/xml"/>
1330
- <link rel="boxscore" href="/2012/REG/6/DAL/BAL/boxscore.xml" type="application/xml"/>
1331
- <link rel="roster" href="/2012/REG/6/DAL/BAL/roster.xml" type="application/xml"/>
1332
- <link rel="injuries" href="/2012/REG/6/DAL/BAL/injuries.xml" type="application/xml"/>
1333
- <link rel="depthchart" href="/2012/REG/6/DAL/BAL/depthchart.xml" type="application/xml"/>
1334
- </links>
1335
- </game>
1336
- <game id="79235c95-5451-46ad-bf37-17a0136182b9" scheduled="2012-10-14T17:00:00+00:00" home_rotation="" away_rotation="" home="CLE" away="CIN" status="closed">
1337
- <venue id="90c38d91-3774-4f5d-82ca-1c806828219f" country="US" name="Cleveland Browns Stadium" city="Cleveland " state="OH" capacity="73200" surface="artificial" type="outdoor" zip="" address=""/>
1338
- <weather temperature="" condition="" humidity="">
1339
- <wind speed="" direction=""/>
1340
- </weather>
1341
- <broadcast network="CBS" satellite="708" internet="" cable=""/>
1342
- <links>
1343
- <link rel="statistics" href="/2012/REG/6/CIN/CLE/statistics.xml" type="application/xml"/>
1344
- <link rel="summary" href="/2012/REG/6/CIN/CLE/summary.xml" type="application/xml"/>
1345
- <link rel="pbp" href="/2012/REG/6/CIN/CLE/pbp.xml" type="application/xml"/>
1346
- <link rel="boxscore" href="/2012/REG/6/CIN/CLE/boxscore.xml" type="application/xml"/>
1347
- <link rel="roster" href="/2012/REG/6/CIN/CLE/roster.xml" type="application/xml"/>
1348
- <link rel="injuries" href="/2012/REG/6/CIN/CLE/injuries.xml" type="application/xml"/>
1349
- <link rel="depthchart" href="/2012/REG/6/CIN/CLE/depthchart.xml" type="application/xml"/>
1350
- </links>
1351
- </game>
1352
- <game id="476019b6-4227-40a5-a6ee-1e2add4aadb2" scheduled="2012-10-14T17:00:00+00:00" home_rotation="" away_rotation="" home="PHI" away="DET" status="closed">
1353
- <venue id="4fa8c29c-6626-464c-8540-314ed7535e1b" country="US" name="Lincoln Financial Field" city="Philadelphia" state="PA" capacity="68532" surface="turf" type="outdoor" zip="" address=""/>
1354
- <weather temperature="" condition="" humidity="">
1355
- <wind speed="" direction=""/>
1356
- </weather>
1357
- <broadcast network="FOX" satellite="706" internet="" cable=""/>
1358
- <links>
1359
- <link rel="statistics" href="/2012/REG/6/DET/PHI/statistics.xml" type="application/xml"/>
1360
- <link rel="summary" href="/2012/REG/6/DET/PHI/summary.xml" type="application/xml"/>
1361
- <link rel="pbp" href="/2012/REG/6/DET/PHI/pbp.xml" type="application/xml"/>
1362
- <link rel="boxscore" href="/2012/REG/6/DET/PHI/boxscore.xml" type="application/xml"/>
1363
- <link rel="roster" href="/2012/REG/6/DET/PHI/roster.xml" type="application/xml"/>
1364
- <link rel="injuries" href="/2012/REG/6/DET/PHI/injuries.xml" type="application/xml"/>
1365
- <link rel="depthchart" href="/2012/REG/6/DET/PHI/depthchart.xml" type="application/xml"/>
1366
- </links>
1367
- </game>
1368
- <game id="cd72fefe-4c33-42ca-9dc3-e44e56bc5a2c" scheduled="2012-10-14T17:00:00+00:00" home_rotation="" away_rotation="" home="ATL" away="OAK" status="closed">
1369
- <venue id="216de6bf-bce0-409a-a9e7-90db8df1f7b9" country="US" name="Georgia Dome" city="Atlanta" state="GA" capacity="71250" surface="artificial" type="dome" zip="" address=""/>
1370
- <weather temperature="" condition="" humidity="">
1371
- <wind speed="" direction=""/>
1372
- </weather>
1373
- <broadcast network="CBS" satellite="707" internet="" cable=""/>
1374
- <links>
1375
- <link rel="statistics" href="/2012/REG/6/OAK/ATL/statistics.xml" type="application/xml"/>
1376
- <link rel="summary" href="/2012/REG/6/OAK/ATL/summary.xml" type="application/xml"/>
1377
- <link rel="pbp" href="/2012/REG/6/OAK/ATL/pbp.xml" type="application/xml"/>
1378
- <link rel="boxscore" href="/2012/REG/6/OAK/ATL/boxscore.xml" type="application/xml"/>
1379
- <link rel="roster" href="/2012/REG/6/OAK/ATL/roster.xml" type="application/xml"/>
1380
- <link rel="injuries" href="/2012/REG/6/OAK/ATL/injuries.xml" type="application/xml"/>
1381
- <link rel="depthchart" href="/2012/REG/6/OAK/ATL/depthchart.xml" type="application/xml"/>
1382
- </links>
1383
- </game>
1384
- <game id="6641c92e-0b1c-4b7c-87ff-f4c7127fddbe" scheduled="2012-10-14T20:05:00+00:00" home_rotation="" away_rotation="" home="ARI" away="BUF" status="closed">
1385
- <venue id="f8e4d2ab-53f9-4e9f-8c4a-9bc278094a84" country="US" name="University of Phoenix Stadium" city="Glendale" state="AZ" capacity="63400" surface="turf" type="retractable_dome" zip="" address=""/>
1386
- <weather temperature="" condition="" humidity="">
1387
- <wind speed="" direction=""/>
1388
- </weather>
1389
- <broadcast network="CBS" satellite="711" internet="" cable=""/>
1390
- <links>
1391
- <link rel="statistics" href="/2012/REG/6/BUF/ARI/statistics.xml" type="application/xml"/>
1392
- <link rel="summary" href="/2012/REG/6/BUF/ARI/summary.xml" type="application/xml"/>
1393
- <link rel="pbp" href="/2012/REG/6/BUF/ARI/pbp.xml" type="application/xml"/>
1394
- <link rel="boxscore" href="/2012/REG/6/BUF/ARI/boxscore.xml" type="application/xml"/>
1395
- <link rel="roster" href="/2012/REG/6/BUF/ARI/roster.xml" type="application/xml"/>
1396
- <link rel="injuries" href="/2012/REG/6/BUF/ARI/injuries.xml" type="application/xml"/>
1397
- <link rel="depthchart" href="/2012/REG/6/BUF/ARI/depthchart.xml" type="application/xml"/>
1398
- </links>
1399
- </game>
1400
- <game id="9b812e6c-4a2f-4b44-a9ae-ad2e99229913" scheduled="2012-10-14T20:05:00+00:00" home_rotation="" away_rotation="" home="SEA" away="NE" status="closed">
1401
- <venue id="c6b9e5df-c9e4-434c-b3e6-83928f11cbda" country="US" name="Qwest Field" city="Seattle" state="WA" capacity="67000" surface="artificial" type="outdoor" zip="" address=""/>
1402
- <weather temperature="" condition="" humidity="">
1403
- <wind speed="" direction=""/>
1404
- </weather>
1405
- <broadcast network="CBS" satellite="712" internet="" cable=""/>
1406
- <links>
1407
- <link rel="statistics" href="/2012/REG/6/NE/SEA/statistics.xml" type="application/xml"/>
1408
- <link rel="summary" href="/2012/REG/6/NE/SEA/summary.xml" type="application/xml"/>
1409
- <link rel="pbp" href="/2012/REG/6/NE/SEA/pbp.xml" type="application/xml"/>
1410
- <link rel="boxscore" href="/2012/REG/6/NE/SEA/boxscore.xml" type="application/xml"/>
1411
- <link rel="roster" href="/2012/REG/6/NE/SEA/roster.xml" type="application/xml"/>
1412
- <link rel="injuries" href="/2012/REG/6/NE/SEA/injuries.xml" type="application/xml"/>
1413
- <link rel="depthchart" href="/2012/REG/6/NE/SEA/depthchart.xml" type="application/xml"/>
1414
- </links>
1415
- </game>
1416
- <game id="6f3162e8-f3ce-4670-8895-3c4552e4fb93" scheduled="2012-10-14T20:25:00+00:00" home_rotation="" away_rotation="" home="SF" away="NYG" status="closed">
1417
- <venue id="6701808c-c329-482b-9834-2d29cb3185ff" country="US" name="Candlestick Park" city="San Francisco" state="CA" capacity="70207" surface="turf" type="outdoor" zip="" address=""/>
1418
- <weather temperature="" condition="" humidity="">
1419
- <wind speed="" direction=""/>
1420
- </weather>
1421
- <broadcast network="FOX" satellite="713" internet="" cable=""/>
1422
- <links>
1423
- <link rel="statistics" href="/2012/REG/6/NYG/SF/statistics.xml" type="application/xml"/>
1424
- <link rel="summary" href="/2012/REG/6/NYG/SF/summary.xml" type="application/xml"/>
1425
- <link rel="pbp" href="/2012/REG/6/NYG/SF/pbp.xml" type="application/xml"/>
1426
- <link rel="boxscore" href="/2012/REG/6/NYG/SF/boxscore.xml" type="application/xml"/>
1427
- <link rel="roster" href="/2012/REG/6/NYG/SF/roster.xml" type="application/xml"/>
1428
- <link rel="injuries" href="/2012/REG/6/NYG/SF/injuries.xml" type="application/xml"/>
1429
- <link rel="depthchart" href="/2012/REG/6/NYG/SF/depthchart.xml" type="application/xml"/>
1430
- </links>
1431
- </game>
1432
- <game id="6f15d24f-4135-4e62-814e-0d13269dab08" scheduled="2012-10-14T20:25:00+00:00" home_rotation="" away_rotation="" home="WAS" away="MIN" status="closed">
1433
- <venue id="7c11bb2d-4a53-4842-b842-0f1c63ed78e9" country="US" name="FedEx Field" city="Hyattsville" state="MD" capacity="91704" surface="turf" type="outdoor" zip="" address=""/>
1434
- <weather temperature="" condition="" humidity="">
1435
- <wind speed="" direction=""/>
1436
- </weather>
1437
- <broadcast network="FOX" satellite="714" internet="" cable=""/>
1438
- <links>
1439
- <link rel="statistics" href="/2012/REG/6/MIN/WAS/statistics.xml" type="application/xml"/>
1440
- <link rel="summary" href="/2012/REG/6/MIN/WAS/summary.xml" type="application/xml"/>
1441
- <link rel="pbp" href="/2012/REG/6/MIN/WAS/pbp.xml" type="application/xml"/>
1442
- <link rel="boxscore" href="/2012/REG/6/MIN/WAS/boxscore.xml" type="application/xml"/>
1443
- <link rel="roster" href="/2012/REG/6/MIN/WAS/roster.xml" type="application/xml"/>
1444
- <link rel="injuries" href="/2012/REG/6/MIN/WAS/injuries.xml" type="application/xml"/>
1445
- <link rel="depthchart" href="/2012/REG/6/MIN/WAS/depthchart.xml" type="application/xml"/>
1446
- </links>
1447
- </game>
1448
- <game id="bc40b1b8-1504-48a6-a6b5-08d5d60a383c" scheduled="2012-10-15T00:20:00+00:00" home_rotation="" away_rotation="" home="HOU" away="GB" status="closed">
1449
- <venue id="6a72e5ca-33d0-40af-8e6b-b32a4d3d9346" country="US" name="Reliant Stadium" city="Houston" state="TX" capacity="71500" surface="turf" type="retractable_dome" zip="" address=""/>
1450
- <weather temperature="" condition="" humidity="">
1451
- <wind speed="" direction=""/>
1452
- </weather>
1453
- <broadcast network="NBC" satellite="" internet="" cable=""/>
1454
- <links>
1455
- <link rel="statistics" href="/2012/REG/6/GB/HOU/statistics.xml" type="application/xml"/>
1456
- <link rel="summary" href="/2012/REG/6/GB/HOU/summary.xml" type="application/xml"/>
1457
- <link rel="pbp" href="/2012/REG/6/GB/HOU/pbp.xml" type="application/xml"/>
1458
- <link rel="boxscore" href="/2012/REG/6/GB/HOU/boxscore.xml" type="application/xml"/>
1459
- <link rel="roster" href="/2012/REG/6/GB/HOU/roster.xml" type="application/xml"/>
1460
- <link rel="injuries" href="/2012/REG/6/GB/HOU/injuries.xml" type="application/xml"/>
1461
- <link rel="depthchart" href="/2012/REG/6/GB/HOU/depthchart.xml" type="application/xml"/>
1462
- </links>
1463
- </game>
1464
- <game id="68a14c56-9902-4740-be6d-147f6e90cb1a" scheduled="2012-10-16T00:30:00+00:00" home_rotation="" away_rotation="" home="SD" away="DEN" status="closed">
1465
- <venue id="7ca47702-8951-45be-a4f5-3e7d78f8f399" country="US" name="Qualcomm Stadium" city="San Diego" state="CA" capacity="71294" surface="turf" type="outdoor" zip="" address=""/>
1466
- <weather temperature="" condition="" humidity="">
1467
- <wind speed="" direction=""/>
1468
- </weather>
1469
- <broadcast network="ESPN" satellite="206" internet="" cable=""/>
1470
- <links>
1471
- <link rel="statistics" href="/2012/REG/6/DEN/SD/statistics.xml" type="application/xml"/>
1472
- <link rel="summary" href="/2012/REG/6/DEN/SD/summary.xml" type="application/xml"/>
1473
- <link rel="pbp" href="/2012/REG/6/DEN/SD/pbp.xml" type="application/xml"/>
1474
- <link rel="boxscore" href="/2012/REG/6/DEN/SD/boxscore.xml" type="application/xml"/>
1475
- <link rel="roster" href="/2012/REG/6/DEN/SD/roster.xml" type="application/xml"/>
1476
- <link rel="injuries" href="/2012/REG/6/DEN/SD/injuries.xml" type="application/xml"/>
1477
- <link rel="depthchart" href="/2012/REG/6/DEN/SD/depthchart.xml" type="application/xml"/>
1478
- </links>
1479
- </game>
1480
- <bye_week>
1481
- <team id="CAR"/>
1482
- <team id="CHI"/>
1483
- <team id="JAC"/>
1484
- <team id="NO"/>
1485
- </bye_week>
1486
- </week>
1487
- <week week="7">
1488
- <game id="4ec7505c-cc8e-4729-8ff2-a410d7e0195c" scheduled="2012-10-19T00:20:00+00:00" home_rotation="" away_rotation="" home="SF" away="SEA" status="closed">
1489
- <venue id="6701808c-c329-482b-9834-2d29cb3185ff" country="US" name="Candlestick Park" city="San Francisco" state="CA" capacity="70207" surface="turf" type="outdoor" zip="" address=""/>
1490
- <weather temperature="" condition="" humidity="">
1491
- <wind speed="" direction=""/>
1492
- </weather>
1493
- <broadcast network="NFL" satellite="212" internet="" cable=""/>
1494
- <links>
1495
- <link rel="statistics" href="/2012/REG/7/SEA/SF/statistics.xml" type="application/xml"/>
1496
- <link rel="summary" href="/2012/REG/7/SEA/SF/summary.xml" type="application/xml"/>
1497
- <link rel="pbp" href="/2012/REG/7/SEA/SF/pbp.xml" type="application/xml"/>
1498
- <link rel="boxscore" href="/2012/REG/7/SEA/SF/boxscore.xml" type="application/xml"/>
1499
- <link rel="roster" href="/2012/REG/7/SEA/SF/roster.xml" type="application/xml"/>
1500
- <link rel="injuries" href="/2012/REG/7/SEA/SF/injuries.xml" type="application/xml"/>
1501
- <link rel="depthchart" href="/2012/REG/7/SEA/SF/depthchart.xml" type="application/xml"/>
1502
- </links>
1503
- </game>
1504
- <game id="4f9faa74-3cd4-4e6a-a727-6fae0030cc83" scheduled="2012-10-21T17:00:00+00:00" home_rotation="" away_rotation="" home="STL" away="GB" status="closed">
1505
- <venue id="e86a743f-ee77-490f-acfb-3187b7a9633e" country="US" name="Edward Jones Dome" city="St. Louis" state="MO" capacity="65321" surface="artificial" type="dome" zip="" address=""/>
1506
- <weather temperature="" condition="" humidity="">
1507
- <wind speed="" direction=""/>
1508
- </weather>
1509
- <broadcast network="FOX" satellite="707" internet="" cable=""/>
1510
- <links>
1511
- <link rel="statistics" href="/2012/REG/7/GB/STL/statistics.xml" type="application/xml"/>
1512
- <link rel="summary" href="/2012/REG/7/GB/STL/summary.xml" type="application/xml"/>
1513
- <link rel="pbp" href="/2012/REG/7/GB/STL/pbp.xml" type="application/xml"/>
1514
- <link rel="boxscore" href="/2012/REG/7/GB/STL/boxscore.xml" type="application/xml"/>
1515
- <link rel="roster" href="/2012/REG/7/GB/STL/roster.xml" type="application/xml"/>
1516
- <link rel="injuries" href="/2012/REG/7/GB/STL/injuries.xml" type="application/xml"/>
1517
- <link rel="depthchart" href="/2012/REG/7/GB/STL/depthchart.xml" type="application/xml"/>
1518
- </links>
1519
- </game>
1520
- <game id="2a00184e-2a06-4e3b-b2c7-a8d389511d94" scheduled="2012-10-21T17:00:00+00:00" home_rotation="" away_rotation="" home="IND" away="CLE" status="closed">
1521
- <venue id="6ed18563-53e0-46c2-a91d-12d73a16456d" country="US" name="Lucas Oil Stadium" city="Indianapolis" state="IN" capacity="67000" surface="artificial" type="retractable_dome" zip="46225" address="500 S. Capitol Avenue"/>
1522
- <weather temperature="" condition="" humidity="">
1523
- <wind speed="" direction=""/>
1524
- </weather>
1525
- <broadcast network="CBS" satellite="711" internet="" cable=""/>
1526
- <links>
1527
- <link rel="statistics" href="/2012/REG/7/CLE/IND/statistics.xml" type="application/xml"/>
1528
- <link rel="summary" href="/2012/REG/7/CLE/IND/summary.xml" type="application/xml"/>
1529
- <link rel="pbp" href="/2012/REG/7/CLE/IND/pbp.xml" type="application/xml"/>
1530
- <link rel="boxscore" href="/2012/REG/7/CLE/IND/boxscore.xml" type="application/xml"/>
1531
- <link rel="roster" href="/2012/REG/7/CLE/IND/roster.xml" type="application/xml"/>
1532
- <link rel="injuries" href="/2012/REG/7/CLE/IND/injuries.xml" type="application/xml"/>
1533
- <link rel="depthchart" href="/2012/REG/7/CLE/IND/depthchart.xml" type="application/xml"/>
1534
- </links>
1535
- </game>
1536
- <game id="7d1a7ad2-c7ea-4050-8d97-9257e9d96b13" scheduled="2012-10-21T17:00:00+00:00" home_rotation="" away_rotation="" home="HOU" away="BAL" status="closed">
1537
- <venue id="6a72e5ca-33d0-40af-8e6b-b32a4d3d9346" country="US" name="Reliant Stadium" city="Houston" state="TX" capacity="71500" surface="turf" type="retractable_dome" zip="" address=""/>
1538
- <weather temperature="" condition="" humidity="">
1539
- <wind speed="" direction=""/>
1540
- </weather>
1541
- <broadcast network="CBS" satellite="710" internet="" cable=""/>
1542
- <links>
1543
- <link rel="statistics" href="/2012/REG/7/BAL/HOU/statistics.xml" type="application/xml"/>
1544
- <link rel="summary" href="/2012/REG/7/BAL/HOU/summary.xml" type="application/xml"/>
1545
- <link rel="pbp" href="/2012/REG/7/BAL/HOU/pbp.xml" type="application/xml"/>
1546
- <link rel="boxscore" href="/2012/REG/7/BAL/HOU/boxscore.xml" type="application/xml"/>
1547
- <link rel="roster" href="/2012/REG/7/BAL/HOU/roster.xml" type="application/xml"/>
1548
- <link rel="injuries" href="/2012/REG/7/BAL/HOU/injuries.xml" type="application/xml"/>
1549
- <link rel="depthchart" href="/2012/REG/7/BAL/HOU/depthchart.xml" type="application/xml"/>
1550
- </links>
1551
- </game>
1552
- <game id="af793107-1d27-406d-b887-a6d5ccf42ecb" scheduled="2012-10-21T17:00:00+00:00" home_rotation="" away_rotation="" home="MIN" away="ARI" status="closed">
1553
- <venue id="1fede74c-50a2-4036-a1c0-b4d1e53ca98c" country="US" name="Mall of America Field" city="Minneapolis" state="MN" capacity="64111" surface="artificial" type="dome" zip="" address=""/>
1554
- <weather temperature="" condition="" humidity="">
1555
- <wind speed="" direction=""/>
1556
- </weather>
1557
- <broadcast network="FOX" satellite="705" internet="" cable=""/>
1558
- <links>
1559
- <link rel="statistics" href="/2012/REG/7/ARI/MIN/statistics.xml" type="application/xml"/>
1560
- <link rel="summary" href="/2012/REG/7/ARI/MIN/summary.xml" type="application/xml"/>
1561
- <link rel="pbp" href="/2012/REG/7/ARI/MIN/pbp.xml" type="application/xml"/>
1562
- <link rel="boxscore" href="/2012/REG/7/ARI/MIN/boxscore.xml" type="application/xml"/>
1563
- <link rel="roster" href="/2012/REG/7/ARI/MIN/roster.xml" type="application/xml"/>
1564
- <link rel="injuries" href="/2012/REG/7/ARI/MIN/injuries.xml" type="application/xml"/>
1565
- <link rel="depthchart" href="/2012/REG/7/ARI/MIN/depthchart.xml" type="application/xml"/>
1566
- </links>
1567
- </game>
1568
- <game id="d1d6d910-5544-43e3-86ff-09e1c6b390cf" scheduled="2012-10-21T17:00:00+00:00" home_rotation="" away_rotation="" home="CAR" away="DAL" status="closed">
1569
- <venue id="39be9ed4-3292-49ac-8699-a381de3a4969" country="US" name="Bank of America Stadium" city="Charlotte" state="NC" capacity="73778" surface="turf" type="outdoor" zip="" address=""/>
1570
- <weather temperature="" condition="" humidity="">
1571
- <wind speed="" direction=""/>
1572
- </weather>
1573
- <broadcast network="FOX" satellite="704" internet="" cable=""/>
1574
- <links>
1575
- <link rel="statistics" href="/2012/REG/7/DAL/CAR/statistics.xml" type="application/xml"/>
1576
- <link rel="summary" href="/2012/REG/7/DAL/CAR/summary.xml" type="application/xml"/>
1577
- <link rel="pbp" href="/2012/REG/7/DAL/CAR/pbp.xml" type="application/xml"/>
1578
- <link rel="boxscore" href="/2012/REG/7/DAL/CAR/boxscore.xml" type="application/xml"/>
1579
- <link rel="roster" href="/2012/REG/7/DAL/CAR/roster.xml" type="application/xml"/>
1580
- <link rel="injuries" href="/2012/REG/7/DAL/CAR/injuries.xml" type="application/xml"/>
1581
- <link rel="depthchart" href="/2012/REG/7/DAL/CAR/depthchart.xml" type="application/xml"/>
1582
- </links>
1583
- </game>
1584
- <game id="6bf05fc1-8e11-44e0-bbb9-91efe06decf7" scheduled="2012-10-21T17:00:00+00:00" home_rotation="" away_rotation="" home="TB" away="NO" status="closed">
1585
- <venue id="6fccc39c-80bc-4c81-83d9-2d5a848c8c09" country="US" name="Raymond James Stadium" city="Tampa Bay" state="FL" capacity="65657" surface="turf" type="outdoor" zip="" address=""/>
1586
- <weather temperature="" condition="" humidity="">
1587
- <wind speed="" direction=""/>
1588
- </weather>
1589
- <broadcast network="FOX" satellite="708" internet="" cable=""/>
1590
- <links>
1591
- <link rel="statistics" href="/2012/REG/7/NO/TB/statistics.xml" type="application/xml"/>
1592
- <link rel="summary" href="/2012/REG/7/NO/TB/summary.xml" type="application/xml"/>
1593
- <link rel="pbp" href="/2012/REG/7/NO/TB/pbp.xml" type="application/xml"/>
1594
- <link rel="boxscore" href="/2012/REG/7/NO/TB/boxscore.xml" type="application/xml"/>
1595
- <link rel="roster" href="/2012/REG/7/NO/TB/roster.xml" type="application/xml"/>
1596
- <link rel="injuries" href="/2012/REG/7/NO/TB/injuries.xml" type="application/xml"/>
1597
- <link rel="depthchart" href="/2012/REG/7/NO/TB/depthchart.xml" type="application/xml"/>
1598
- </links>
1599
- </game>
1600
- <game id="f02b63c4-d5b5-42de-a8b1-2ce86e3d754a" scheduled="2012-10-21T17:00:00+00:00" home_rotation="" away_rotation="" home="NYG" away="WAS" status="closed">
1601
- <venue id="5d4c85c7-d84e-4e10-bd6a-8a15ebecca5c" country="US" name="MetLife Stadium" city="East Rutherford" state="NJ" capacity="82500" surface="artificial" type="outdoor" zip="" address=""/>
1602
- <weather temperature="" condition="" humidity="">
1603
- <wind speed="" direction=""/>
1604
- </weather>
1605
- <broadcast network="FOX" satellite="706" internet="" cable=""/>
1606
- <links>
1607
- <link rel="statistics" href="/2012/REG/7/WAS/NYG/statistics.xml" type="application/xml"/>
1608
- <link rel="summary" href="/2012/REG/7/WAS/NYG/summary.xml" type="application/xml"/>
1609
- <link rel="pbp" href="/2012/REG/7/WAS/NYG/pbp.xml" type="application/xml"/>
1610
- <link rel="boxscore" href="/2012/REG/7/WAS/NYG/boxscore.xml" type="application/xml"/>
1611
- <link rel="roster" href="/2012/REG/7/WAS/NYG/roster.xml" type="application/xml"/>
1612
- <link rel="injuries" href="/2012/REG/7/WAS/NYG/injuries.xml" type="application/xml"/>
1613
- <link rel="depthchart" href="/2012/REG/7/WAS/NYG/depthchart.xml" type="application/xml"/>
1614
- </links>
1615
- </game>
1616
- <game id="9a38d9e9-aa16-4865-bac8-68854f978513" scheduled="2012-10-21T17:00:00+00:00" home_rotation="" away_rotation="" home="BUF" away="TEN" status="closed">
1617
- <venue id="e9e0828e-37fc-4238-a317-49037577dd55" country="US" name="Ralph Wilson Stadium" city="Orchard Park" state="NY" capacity="73967" surface="artificial" type="outdoor" zip="" address=""/>
1618
- <weather temperature="" condition="" humidity="">
1619
- <wind speed="" direction=""/>
1620
- </weather>
1621
- <broadcast network="CBS" satellite="709" internet="" cable=""/>
1622
- <links>
1623
- <link rel="statistics" href="/2012/REG/7/TEN/BUF/statistics.xml" type="application/xml"/>
1624
- <link rel="summary" href="/2012/REG/7/TEN/BUF/summary.xml" type="application/xml"/>
1625
- <link rel="pbp" href="/2012/REG/7/TEN/BUF/pbp.xml" type="application/xml"/>
1626
- <link rel="boxscore" href="/2012/REG/7/TEN/BUF/boxscore.xml" type="application/xml"/>
1627
- <link rel="roster" href="/2012/REG/7/TEN/BUF/roster.xml" type="application/xml"/>
1628
- <link rel="injuries" href="/2012/REG/7/TEN/BUF/injuries.xml" type="application/xml"/>
1629
- <link rel="depthchart" href="/2012/REG/7/TEN/BUF/depthchart.xml" type="application/xml"/>
1630
- </links>
1631
- </game>
1632
- <game id="bb39815c-2223-4a0a-b278-9cb7bb91e3c4" scheduled="2012-10-21T20:25:00+00:00" home_rotation="" away_rotation="" home="OAK" away="JAC" status="closed">
1633
- <venue id="ba1ad00f-9130-462c-93f9-5612a0015117" country="US" name="Oakland-Alameda County Coliseum" city="Oakland" state="CA" capacity="63026" surface="turf" type="outdoor" zip="" address=""/>
1634
- <weather temperature="" condition="" humidity="">
1635
- <wind speed="" direction=""/>
1636
- </weather>
1637
- <broadcast network="CBS" satellite="713" internet="" cable=""/>
1638
- <links>
1639
- <link rel="statistics" href="/2012/REG/7/JAC/OAK/statistics.xml" type="application/xml"/>
1640
- <link rel="summary" href="/2012/REG/7/JAC/OAK/summary.xml" type="application/xml"/>
1641
- <link rel="pbp" href="/2012/REG/7/JAC/OAK/pbp.xml" type="application/xml"/>
1642
- <link rel="boxscore" href="/2012/REG/7/JAC/OAK/boxscore.xml" type="application/xml"/>
1643
- <link rel="roster" href="/2012/REG/7/JAC/OAK/roster.xml" type="application/xml"/>
1644
- <link rel="injuries" href="/2012/REG/7/JAC/OAK/injuries.xml" type="application/xml"/>
1645
- <link rel="depthchart" href="/2012/REG/7/JAC/OAK/depthchart.xml" type="application/xml"/>
1646
- </links>
1647
- </game>
1648
- <game id="97fffa25-3c4f-45f4-9918-4710fc45b9c9" scheduled="2012-10-21T20:25:00+00:00" home_rotation="" away_rotation="" home="NE" away="NYJ" status="closed">
1649
- <venue id="e43310b1-cb82-4df9-8be5-e9b39637031b" country="US" name="Gillette Stadium" city="Foxborough" state="MA" capacity="68756" surface="turf" type="outdoor" zip="" address=""/>
1650
- <weather temperature="" condition="" humidity="">
1651
- <wind speed="" direction=""/>
1652
- </weather>
1653
- <broadcast network="CBS" satellite="712" internet="" cable=""/>
1654
- <links>
1655
- <link rel="statistics" href="/2012/REG/7/NYJ/NE/statistics.xml" type="application/xml"/>
1656
- <link rel="summary" href="/2012/REG/7/NYJ/NE/summary.xml" type="application/xml"/>
1657
- <link rel="pbp" href="/2012/REG/7/NYJ/NE/pbp.xml" type="application/xml"/>
1658
- <link rel="boxscore" href="/2012/REG/7/NYJ/NE/boxscore.xml" type="application/xml"/>
1659
- <link rel="roster" href="/2012/REG/7/NYJ/NE/roster.xml" type="application/xml"/>
1660
- <link rel="injuries" href="/2012/REG/7/NYJ/NE/injuries.xml" type="application/xml"/>
1661
- <link rel="depthchart" href="/2012/REG/7/NYJ/NE/depthchart.xml" type="application/xml"/>
1662
- </links>
1663
- </game>
1664
- <game id="0f221e25-97c3-485b-8566-dc29de153a71" scheduled="2012-10-22T00:20:00+00:00" home_rotation="" away_rotation="" home="CIN" away="PIT" status="closed">
1665
- <venue id="b87a1595-d3c8-48ea-8a53-0aab6378a64a" country="US" name="Paul Brown Stadium" city="Cincinnati" state="OH" capacity="65535" surface="artificial" type="outdoor" zip="" address=""/>
1666
- <weather temperature="" condition="" humidity="">
1667
- <wind speed="" direction=""/>
1668
- </weather>
1669
- <broadcast network="NBC" satellite="" internet="" cable=""/>
1670
- <links>
1671
- <link rel="statistics" href="/2012/REG/7/PIT/CIN/statistics.xml" type="application/xml"/>
1672
- <link rel="summary" href="/2012/REG/7/PIT/CIN/summary.xml" type="application/xml"/>
1673
- <link rel="pbp" href="/2012/REG/7/PIT/CIN/pbp.xml" type="application/xml"/>
1674
- <link rel="boxscore" href="/2012/REG/7/PIT/CIN/boxscore.xml" type="application/xml"/>
1675
- <link rel="roster" href="/2012/REG/7/PIT/CIN/roster.xml" type="application/xml"/>
1676
- <link rel="injuries" href="/2012/REG/7/PIT/CIN/injuries.xml" type="application/xml"/>
1677
- <link rel="depthchart" href="/2012/REG/7/PIT/CIN/depthchart.xml" type="application/xml"/>
1678
- </links>
1679
- </game>
1680
- <game id="5a4a870e-2158-477e-8aa4-821c7a2a2839" scheduled="2012-10-23T00:30:00+00:00" home_rotation="" away_rotation="" home="CHI" away="DET" status="closed">
1681
- <venue id="d7866605-5ac6-4b3a-90e8-760cc5a26b75" country="US" name="Soldier Field" city="Chicago" state="IL" capacity="61500" surface="turf" type="outdoor" zip="" address=""/>
1682
- <weather temperature="" condition="" humidity="">
1683
- <wind speed="" direction=""/>
1684
- </weather>
1685
- <broadcast network="ESPN" satellite="206" internet="" cable=""/>
1686
- <links>
1687
- <link rel="statistics" href="/2012/REG/7/DET/CHI/statistics.xml" type="application/xml"/>
1688
- <link rel="summary" href="/2012/REG/7/DET/CHI/summary.xml" type="application/xml"/>
1689
- <link rel="pbp" href="/2012/REG/7/DET/CHI/pbp.xml" type="application/xml"/>
1690
- <link rel="boxscore" href="/2012/REG/7/DET/CHI/boxscore.xml" type="application/xml"/>
1691
- <link rel="roster" href="/2012/REG/7/DET/CHI/roster.xml" type="application/xml"/>
1692
- <link rel="injuries" href="/2012/REG/7/DET/CHI/injuries.xml" type="application/xml"/>
1693
- <link rel="depthchart" href="/2012/REG/7/DET/CHI/depthchart.xml" type="application/xml"/>
1694
- </links>
1695
- </game>
1696
- <bye_week>
1697
- <team id="ATL"/>
1698
- <team id="DEN"/>
1699
- <team id="KC"/>
1700
- <team id="MIA"/>
1701
- <team id="PHI"/>
1702
- <team id="SD"/>
1703
- </bye_week>
1704
- </week>
1705
- <week week="8">
1706
- <game id="8640c455-0289-416e-8c77-a0bd9a619433" scheduled="2012-10-26T00:20:00+00:00" home_rotation="" away_rotation="" home="MIN" away="TB" status="closed">
1707
- <venue id="1fede74c-50a2-4036-a1c0-b4d1e53ca98c" country="US" name="Mall of America Field" city="Minneapolis" state="MN" capacity="64111" surface="artificial" type="dome" zip="" address=""/>
1708
- <weather temperature="" condition="" humidity="">
1709
- <wind speed="" direction=""/>
1710
- </weather>
1711
- <broadcast network="NFL" satellite="212" internet="" cable=""/>
1712
- <links>
1713
- <link rel="statistics" href="/2012/REG/8/TB/MIN/statistics.xml" type="application/xml"/>
1714
- <link rel="summary" href="/2012/REG/8/TB/MIN/summary.xml" type="application/xml"/>
1715
- <link rel="pbp" href="/2012/REG/8/TB/MIN/pbp.xml" type="application/xml"/>
1716
- <link rel="boxscore" href="/2012/REG/8/TB/MIN/boxscore.xml" type="application/xml"/>
1717
- <link rel="roster" href="/2012/REG/8/TB/MIN/roster.xml" type="application/xml"/>
1718
- <link rel="injuries" href="/2012/REG/8/TB/MIN/injuries.xml" type="application/xml"/>
1719
- <link rel="depthchart" href="/2012/REG/8/TB/MIN/depthchart.xml" type="application/xml"/>
1720
- </links>
1721
- </game>
1722
- <game id="04d51f99-798a-469f-bac9-2614ad62b3f5" scheduled="2012-10-28T17:00:00+00:00" home_rotation="" away_rotation="" home="CLE" away="SD" status="closed">
1723
- <venue id="90c38d91-3774-4f5d-82ca-1c806828219f" country="US" name="Cleveland Browns Stadium" city="Cleveland " state="OH" capacity="73200" surface="artificial" type="outdoor" zip="" address=""/>
1724
- <weather temperature="" condition="" humidity="">
1725
- <wind speed="" direction=""/>
1726
- </weather>
1727
- <broadcast network="CBS" satellite="708" internet="" cable=""/>
1728
- <links>
1729
- <link rel="statistics" href="/2012/REG/8/SD/CLE/statistics.xml" type="application/xml"/>
1730
- <link rel="summary" href="/2012/REG/8/SD/CLE/summary.xml" type="application/xml"/>
1731
- <link rel="pbp" href="/2012/REG/8/SD/CLE/pbp.xml" type="application/xml"/>
1732
- <link rel="boxscore" href="/2012/REG/8/SD/CLE/boxscore.xml" type="application/xml"/>
1733
- <link rel="roster" href="/2012/REG/8/SD/CLE/roster.xml" type="application/xml"/>
1734
- <link rel="injuries" href="/2012/REG/8/SD/CLE/injuries.xml" type="application/xml"/>
1735
- <link rel="depthchart" href="/2012/REG/8/SD/CLE/depthchart.xml" type="application/xml"/>
1736
- </links>
1737
- </game>
1738
- <game id="bdb882b0-c95a-4e46-9854-39141b3feaf7" scheduled="2012-10-28T17:00:00+00:00" home_rotation="" away_rotation="" home="DET" away="SEA" status="closed">
1739
- <venue id="6e3bcf22-277d-4c06-b019-62aded51654f" country="US" name="Ford Field" city="Detroit" state="MI" capacity="65000" surface="artificial" type="dome" zip="" address=""/>
1740
- <weather temperature="" condition="" humidity="">
1741
- <wind speed="" direction=""/>
1742
- </weather>
1743
- <broadcast network="FOX" satellite="705" internet="" cable=""/>
1744
- <links>
1745
- <link rel="statistics" href="/2012/REG/8/SEA/DET/statistics.xml" type="application/xml"/>
1746
- <link rel="summary" href="/2012/REG/8/SEA/DET/summary.xml" type="application/xml"/>
1747
- <link rel="pbp" href="/2012/REG/8/SEA/DET/pbp.xml" type="application/xml"/>
1748
- <link rel="boxscore" href="/2012/REG/8/SEA/DET/boxscore.xml" type="application/xml"/>
1749
- <link rel="roster" href="/2012/REG/8/SEA/DET/roster.xml" type="application/xml"/>
1750
- <link rel="injuries" href="/2012/REG/8/SEA/DET/injuries.xml" type="application/xml"/>
1751
- <link rel="depthchart" href="/2012/REG/8/SEA/DET/depthchart.xml" type="application/xml"/>
1752
- </links>
1753
- </game>
1754
- <game id="002fb9d6-a944-48ce-af64-7785e830e5bd" scheduled="2012-10-28T17:00:00+00:00" home_rotation="" away_rotation="" home="PHI" away="ATL" status="closed">
1755
- <venue id="4fa8c29c-6626-464c-8540-314ed7535e1b" country="US" name="Lincoln Financial Field" city="Philadelphia" state="PA" capacity="68532" surface="turf" type="outdoor" zip="" address=""/>
1756
- <weather temperature="" condition="" humidity="">
1757
- <wind speed="" direction=""/>
1758
- </weather>
1759
- <broadcast network="FOX" satellite="706" internet="" cable=""/>
1760
- <links>
1761
- <link rel="statistics" href="/2012/REG/8/ATL/PHI/statistics.xml" type="application/xml"/>
1762
- <link rel="summary" href="/2012/REG/8/ATL/PHI/summary.xml" type="application/xml"/>
1763
- <link rel="pbp" href="/2012/REG/8/ATL/PHI/pbp.xml" type="application/xml"/>
1764
- <link rel="boxscore" href="/2012/REG/8/ATL/PHI/boxscore.xml" type="application/xml"/>
1765
- <link rel="roster" href="/2012/REG/8/ATL/PHI/roster.xml" type="application/xml"/>
1766
- <link rel="injuries" href="/2012/REG/8/ATL/PHI/injuries.xml" type="application/xml"/>
1767
- <link rel="depthchart" href="/2012/REG/8/ATL/PHI/depthchart.xml" type="application/xml"/>
1768
- </links>
1769
- </game>
1770
- <game id="d3735dd5-91e7-40c8-896b-0d13da37f3cb" scheduled="2012-10-28T17:00:00+00:00" home_rotation="" away_rotation="" home="GB" away="JAC" status="complete">
1771
- <venue id="5a60dd3a-302c-41c6-ab0f-dd335c1103c2" country="US" name="Lambeau Field" city="Green Bay" state="WI" capacity="72992" surface="turf" type="outdoor" zip="" address=""/>
1772
- <weather temperature="" condition="" humidity="">
1773
- <wind speed="" direction=""/>
1774
- </weather>
1775
- <broadcast network="CBS" satellite="709" internet="" cable=""/>
1776
- <links>
1777
- <link rel="statistics" href="/2012/REG/8/JAC/GB/statistics.xml" type="application/xml"/>
1778
- <link rel="summary" href="/2012/REG/8/JAC/GB/summary.xml" type="application/xml"/>
1779
- <link rel="pbp" href="/2012/REG/8/JAC/GB/pbp.xml" type="application/xml"/>
1780
- <link rel="boxscore" href="/2012/REG/8/JAC/GB/boxscore.xml" type="application/xml"/>
1781
- <link rel="roster" href="/2012/REG/8/JAC/GB/roster.xml" type="application/xml"/>
1782
- <link rel="injuries" href="/2012/REG/8/JAC/GB/injuries.xml" type="application/xml"/>
1783
- <link rel="depthchart" href="/2012/REG/8/JAC/GB/depthchart.xml" type="application/xml"/>
1784
- </links>
1785
- </game>
1786
- <game id="17322ee3-7486-463d-b085-312dfd6a3097" scheduled="2012-10-28T17:00:00+00:00" home_rotation="" away_rotation="" home="STL" away="NE" status="complete">
1787
- <venue id="ddaebc21-35aa-4f00-bef6-3f0bc7e76f70" country="CA" name="Wembley Stadium" city="London" state="Greater London" capacity="54000" surface="artificial" type="retractable_dome" zip="" address=""/>
1788
- <weather temperature="" condition="" humidity="">
1789
- <wind speed="" direction=""/>
1790
- </weather>
1791
- <broadcast network="CBS" satellite="711" internet="" cable=""/>
1792
- <links>
1793
- <link rel="statistics" href="/2012/REG/8/NE/STL/statistics.xml" type="application/xml"/>
1794
- <link rel="summary" href="/2012/REG/8/NE/STL/summary.xml" type="application/xml"/>
1795
- <link rel="pbp" href="/2012/REG/8/NE/STL/pbp.xml" type="application/xml"/>
1796
- <link rel="boxscore" href="/2012/REG/8/NE/STL/boxscore.xml" type="application/xml"/>
1797
- <link rel="roster" href="/2012/REG/8/NE/STL/roster.xml" type="application/xml"/>
1798
- <link rel="injuries" href="/2012/REG/8/NE/STL/injuries.xml" type="application/xml"/>
1799
- <link rel="depthchart" href="/2012/REG/8/NE/STL/depthchart.xml" type="application/xml"/>
1800
- </links>
1801
- </game>
1802
- <game id="9d7d7b69-12a7-4fd8-a819-ceb6d4adc075" scheduled="2012-10-28T17:00:00+00:00" home_rotation="" away_rotation="" home="TEN" away="IND" status="complete">
1803
- <venue id="5295c1b7-c85c-49cb-9569-1707c65324e5" country="US" name="LP Field" city="Nashville" state="TN" capacity="68798" surface="turf" type="outdoor" zip="" address=""/>
1804
- <weather temperature="" condition="" humidity="">
1805
- <wind speed="" direction=""/>
1806
- </weather>
1807
- <broadcast network="CBS" satellite="712" internet="" cable=""/>
1808
- <links>
1809
- <link rel="statistics" href="/2012/REG/8/IND/TEN/statistics.xml" type="application/xml"/>
1810
- <link rel="summary" href="/2012/REG/8/IND/TEN/summary.xml" type="application/xml"/>
1811
- <link rel="pbp" href="/2012/REG/8/IND/TEN/pbp.xml" type="application/xml"/>
1812
- <link rel="boxscore" href="/2012/REG/8/IND/TEN/boxscore.xml" type="application/xml"/>
1813
- <link rel="roster" href="/2012/REG/8/IND/TEN/roster.xml" type="application/xml"/>
1814
- <link rel="injuries" href="/2012/REG/8/IND/TEN/injuries.xml" type="application/xml"/>
1815
- <link rel="depthchart" href="/2012/REG/8/IND/TEN/depthchart.xml" type="application/xml"/>
1816
- </links>
1817
- </game>
1818
- <game id="5cfeacf7-c8b7-420e-bbb8-d911318e97f8" scheduled="2012-10-28T17:00:00+00:00" home_rotation="" away_rotation="" home="CHI" away="CAR" status="closed">
1819
- <venue id="d7866605-5ac6-4b3a-90e8-760cc5a26b75" country="US" name="Soldier Field" city="Chicago" state="IL" capacity="61500" surface="turf" type="outdoor" zip="" address=""/>
1820
- <weather temperature="" condition="" humidity="">
1821
- <wind speed="" direction=""/>
1822
- </weather>
1823
- <broadcast network="FOX" satellite="704" internet="" cable=""/>
1824
- <links>
1825
- <link rel="statistics" href="/2012/REG/8/CAR/CHI/statistics.xml" type="application/xml"/>
1826
- <link rel="summary" href="/2012/REG/8/CAR/CHI/summary.xml" type="application/xml"/>
1827
- <link rel="pbp" href="/2012/REG/8/CAR/CHI/pbp.xml" type="application/xml"/>
1828
- <link rel="boxscore" href="/2012/REG/8/CAR/CHI/boxscore.xml" type="application/xml"/>
1829
- <link rel="roster" href="/2012/REG/8/CAR/CHI/roster.xml" type="application/xml"/>
1830
- <link rel="injuries" href="/2012/REG/8/CAR/CHI/injuries.xml" type="application/xml"/>
1831
- <link rel="depthchart" href="/2012/REG/8/CAR/CHI/depthchart.xml" type="application/xml"/>
1832
- </links>
1833
- </game>
1834
- <game id="e8efe3fb-f53a-4d10-90cb-dd1abd76c821" scheduled="2012-10-28T17:00:00+00:00" home_rotation="" away_rotation="" home="PIT" away="WAS" status="closed">
1835
- <venue id="7349a2e6-0ac9-410b-8bd2-ca58c9f7aa34" country="US" name="Heinz Field" city="Pittsburgh" state="PA" capacity="65050" surface="turf" type="outdoor" zip="" address=""/>
1836
- <weather temperature="" condition="" humidity="">
1837
- <wind speed="" direction=""/>
1838
- </weather>
1839
- <broadcast network="FOX" satellite="707" internet="" cable=""/>
1840
- <links>
1841
- <link rel="statistics" href="/2012/REG/8/WAS/PIT/statistics.xml" type="application/xml"/>
1842
- <link rel="summary" href="/2012/REG/8/WAS/PIT/summary.xml" type="application/xml"/>
1843
- <link rel="pbp" href="/2012/REG/8/WAS/PIT/pbp.xml" type="application/xml"/>
1844
- <link rel="boxscore" href="/2012/REG/8/WAS/PIT/boxscore.xml" type="application/xml"/>
1845
- <link rel="roster" href="/2012/REG/8/WAS/PIT/roster.xml" type="application/xml"/>
1846
- <link rel="injuries" href="/2012/REG/8/WAS/PIT/injuries.xml" type="application/xml"/>
1847
- <link rel="depthchart" href="/2012/REG/8/WAS/PIT/depthchart.xml" type="application/xml"/>
1848
- </links>
1849
- </game>
1850
- <game id="88d2c482-cdcb-413c-a753-d6e004cca8d0" scheduled="2012-10-28T17:00:00+00:00" home_rotation="" away_rotation="" home="NYJ" away="MIA" status="complete">
1851
- <venue id="5d4c85c7-d84e-4e10-bd6a-8a15ebecca5c" country="US" name="MetLife Stadium" city="East Rutherford" state="NJ" capacity="82500" surface="artificial" type="outdoor" zip="" address=""/>
1852
- <weather temperature="" condition="" humidity="">
1853
- <wind speed="" direction=""/>
1854
- </weather>
1855
- <broadcast network="CBS" satellite="710" internet="" cable=""/>
1856
- <links>
1857
- <link rel="statistics" href="/2012/REG/8/MIA/NYJ/statistics.xml" type="application/xml"/>
1858
- <link rel="summary" href="/2012/REG/8/MIA/NYJ/summary.xml" type="application/xml"/>
1859
- <link rel="pbp" href="/2012/REG/8/MIA/NYJ/pbp.xml" type="application/xml"/>
1860
- <link rel="boxscore" href="/2012/REG/8/MIA/NYJ/boxscore.xml" type="application/xml"/>
1861
- <link rel="roster" href="/2012/REG/8/MIA/NYJ/roster.xml" type="application/xml"/>
1862
- <link rel="injuries" href="/2012/REG/8/MIA/NYJ/injuries.xml" type="application/xml"/>
1863
- <link rel="depthchart" href="/2012/REG/8/MIA/NYJ/depthchart.xml" type="application/xml"/>
1864
- </links>
1865
- </game>
1866
- <game id="ffad2389-e576-4cbe-931f-fab6c11e7103" scheduled="2012-10-28T20:05:00+00:00" home_rotation="" away_rotation="" home="KC" away="OAK" status="inprogress">
1867
- <venue id="2ec4c411-dac2-403d-b091-6b6aa4a0a914" country="US" name="Arrowhead Stadium" city="Kansas City" state="MO" capacity="79451" surface="turf" type="outdoor" zip="" address=""/>
1868
- <weather temperature="" condition="" humidity="">
1869
- <wind speed="" direction=""/>
1870
- </weather>
1871
- <broadcast network="CBS" satellite="713" internet="" cable=""/>
1872
- <links>
1873
- <link rel="statistics" href="/2012/REG/8/OAK/KC/statistics.xml" type="application/xml"/>
1874
- <link rel="summary" href="/2012/REG/8/OAK/KC/summary.xml" type="application/xml"/>
1875
- <link rel="pbp" href="/2012/REG/8/OAK/KC/pbp.xml" type="application/xml"/>
1876
- <link rel="boxscore" href="/2012/REG/8/OAK/KC/boxscore.xml" type="application/xml"/>
1877
- <link rel="roster" href="/2012/REG/8/OAK/KC/roster.xml" type="application/xml"/>
1878
- <link rel="injuries" href="/2012/REG/8/OAK/KC/injuries.xml" type="application/xml"/>
1879
- <link rel="depthchart" href="/2012/REG/8/OAK/KC/depthchart.xml" type="application/xml"/>
1880
- </links>
1881
- </game>
1882
- <game id="c0da0c8c-0273-4791-bde0-412a3666f302" scheduled="2012-10-28T20:15:00+00:00" home_rotation="" away_rotation="" home="DAL" away="NYG" status="inprogress">
1883
- <venue id="1e84213a-ff1f-4c9d-a003-8ee782b25a40" country="US" name="Cowboys Stadium" city="Arlington" state="TX" capacity="80000" surface="artificial" type="retractable_dome" zip="" address=""/>
1884
- <weather temperature="" condition="" humidity="">
1885
- <wind speed="" direction=""/>
1886
- </weather>
1887
- <broadcast network="FOX" satellite="714" internet="" cable=""/>
1888
- <links>
1889
- <link rel="statistics" href="/2012/REG/8/NYG/DAL/statistics.xml" type="application/xml"/>
1890
- <link rel="summary" href="/2012/REG/8/NYG/DAL/summary.xml" type="application/xml"/>
1891
- <link rel="pbp" href="/2012/REG/8/NYG/DAL/pbp.xml" type="application/xml"/>
1892
- <link rel="boxscore" href="/2012/REG/8/NYG/DAL/boxscore.xml" type="application/xml"/>
1893
- <link rel="roster" href="/2012/REG/8/NYG/DAL/roster.xml" type="application/xml"/>
1894
- <link rel="injuries" href="/2012/REG/8/NYG/DAL/injuries.xml" type="application/xml"/>
1895
- <link rel="depthchart" href="/2012/REG/8/NYG/DAL/depthchart.xml" type="application/xml"/>
1896
- </links>
1897
- </game>
1898
- <game id="4cb918e1-2db1-4c0d-bdff-dfd59b68995a" scheduled="2012-10-29T00:20:00+00:00" home_rotation="" away_rotation="" home="DEN" away="NO" status="created">
1899
- <venue id="6589e61d-ef1e-4e30-91b5-9acd2072b8a0" country="US" name="Sports Authority Field at Mile High" city="Denver " state="CO" capacity="76125" surface="turf" type="outdoor" zip="" address=""/>
1900
- <weather temperature="" condition="" humidity="">
1901
- <wind speed="" direction=""/>
1902
- </weather>
1903
- <broadcast network="NBC" satellite="" internet="" cable=""/>
1904
- <links>
1905
- <link rel="statistics" href="/2012/REG/8/NO/DEN/statistics.xml" type="application/xml"/>
1906
- <link rel="summary" href="/2012/REG/8/NO/DEN/summary.xml" type="application/xml"/>
1907
- <link rel="pbp" href="/2012/REG/8/NO/DEN/pbp.xml" type="application/xml"/>
1908
- <link rel="boxscore" href="/2012/REG/8/NO/DEN/boxscore.xml" type="application/xml"/>
1909
- <link rel="roster" href="/2012/REG/8/NO/DEN/roster.xml" type="application/xml"/>
1910
- <link rel="injuries" href="/2012/REG/8/NO/DEN/injuries.xml" type="application/xml"/>
1911
- <link rel="depthchart" href="/2012/REG/8/NO/DEN/depthchart.xml" type="application/xml"/>
1912
- </links>
1913
- </game>
1914
- <game id="c87dd434-3827-4795-9e5c-738fa16d6b5e" scheduled="2012-10-30T00:30:00+00:00" home_rotation="" away_rotation="" home="ARI" away="SF" status="created">
1915
- <venue id="f8e4d2ab-53f9-4e9f-8c4a-9bc278094a84" country="US" name="University of Phoenix Stadium" city="Glendale" state="AZ" capacity="63400" surface="turf" type="retractable_dome" zip="" address=""/>
1916
- <weather temperature="" condition="" humidity="">
1917
- <wind speed="" direction=""/>
1918
- </weather>
1919
- <broadcast network="ESPN" satellite="206" internet="" cable=""/>
1920
- <links>
1921
- <link rel="statistics" href="/2012/REG/8/SF/ARI/statistics.xml" type="application/xml"/>
1922
- <link rel="summary" href="/2012/REG/8/SF/ARI/summary.xml" type="application/xml"/>
1923
- <link rel="pbp" href="/2012/REG/8/SF/ARI/pbp.xml" type="application/xml"/>
1924
- <link rel="boxscore" href="/2012/REG/8/SF/ARI/boxscore.xml" type="application/xml"/>
1925
- <link rel="roster" href="/2012/REG/8/SF/ARI/roster.xml" type="application/xml"/>
1926
- <link rel="injuries" href="/2012/REG/8/SF/ARI/injuries.xml" type="application/xml"/>
1927
- <link rel="depthchart" href="/2012/REG/8/SF/ARI/depthchart.xml" type="application/xml"/>
1928
- </links>
1929
- </game>
1930
- <bye_week>
1931
- <team id="BAL"/>
1932
- <team id="BUF"/>
1933
- <team id="CIN"/>
1934
- <team id="HOU"/>
1935
- </bye_week>
1936
- </week>
1937
- <week week="9">
1938
- <game id="82748625-c24e-437a-b991-cab7f766c249" scheduled="2012-11-02T00:20:00+00:00" home_rotation="" away_rotation="" home="SD" away="KC" status="scheduled">
1939
- <venue id="7ca47702-8951-45be-a4f5-3e7d78f8f399" country="US" name="Qualcomm Stadium" city="San Diego" state="CA" capacity="71294" surface="turf" type="outdoor" zip="" address=""/>
1940
- <weather temperature="" condition="" humidity="">
1941
- <wind speed="" direction=""/>
1942
- </weather>
1943
- <broadcast network="NFL" satellite="212" internet="" cable=""/>
1944
- <links>
1945
- <link rel="statistics" href="/2012/REG/9/KC/SD/statistics.xml" type="application/xml"/>
1946
- <link rel="summary" href="/2012/REG/9/KC/SD/summary.xml" type="application/xml"/>
1947
- <link rel="pbp" href="/2012/REG/9/KC/SD/pbp.xml" type="application/xml"/>
1948
- <link rel="boxscore" href="/2012/REG/9/KC/SD/boxscore.xml" type="application/xml"/>
1949
- <link rel="roster" href="/2012/REG/9/KC/SD/roster.xml" type="application/xml"/>
1950
- <link rel="injuries" href="/2012/REG/9/KC/SD/injuries.xml" type="application/xml"/>
1951
- <link rel="depthchart" href="/2012/REG/9/KC/SD/depthchart.xml" type="application/xml"/>
1952
- </links>
1953
- </game>
1954
- <game id="d26633b8-d3ec-49ab-a8a5-f4bb59a67fcf" scheduled="2012-11-04T18:00:00+00:00" home_rotation="" away_rotation="" home="CIN" away="DEN" status="scheduled">
1955
- <venue id="b87a1595-d3c8-48ea-8a53-0aab6378a64a" country="US" name="Paul Brown Stadium" city="Cincinnati" state="OH" capacity="65535" surface="artificial" type="outdoor" zip="" address=""/>
1956
- <weather temperature="" condition="" humidity="">
1957
- <wind speed="" direction=""/>
1958
- </weather>
1959
- <broadcast network="CBS" satellite="708" internet="" cable=""/>
1960
- <links>
1961
- <link rel="statistics" href="/2012/REG/9/DEN/CIN/statistics.xml" type="application/xml"/>
1962
- <link rel="summary" href="/2012/REG/9/DEN/CIN/summary.xml" type="application/xml"/>
1963
- <link rel="pbp" href="/2012/REG/9/DEN/CIN/pbp.xml" type="application/xml"/>
1964
- <link rel="boxscore" href="/2012/REG/9/DEN/CIN/boxscore.xml" type="application/xml"/>
1965
- <link rel="roster" href="/2012/REG/9/DEN/CIN/roster.xml" type="application/xml"/>
1966
- <link rel="injuries" href="/2012/REG/9/DEN/CIN/injuries.xml" type="application/xml"/>
1967
- <link rel="depthchart" href="/2012/REG/9/DEN/CIN/depthchart.xml" type="application/xml"/>
1968
- </links>
1969
- </game>
1970
- <game id="55d0b262-98ff-49fa-95c8-5ab8ec8cbd34" scheduled="2012-11-04T18:00:00+00:00" home_rotation="" away_rotation="" home="IND" away="MIA" status="scheduled">
1971
- <venue id="6ed18563-53e0-46c2-a91d-12d73a16456d" country="US" name="Lucas Oil Stadium" city="Indianapolis" state="IN" capacity="67000" surface="artificial" type="retractable_dome" zip="46225" address="500 S. Capitol Avenue"/>
1972
- <weather temperature="" condition="" humidity="">
1973
- <wind speed="" direction=""/>
1974
- </weather>
1975
- <broadcast network="CBS" satellite="711" internet="" cable=""/>
1976
- <links>
1977
- <link rel="statistics" href="/2012/REG/9/MIA/IND/statistics.xml" type="application/xml"/>
1978
- <link rel="summary" href="/2012/REG/9/MIA/IND/summary.xml" type="application/xml"/>
1979
- <link rel="pbp" href="/2012/REG/9/MIA/IND/pbp.xml" type="application/xml"/>
1980
- <link rel="boxscore" href="/2012/REG/9/MIA/IND/boxscore.xml" type="application/xml"/>
1981
- <link rel="roster" href="/2012/REG/9/MIA/IND/roster.xml" type="application/xml"/>
1982
- <link rel="injuries" href="/2012/REG/9/MIA/IND/injuries.xml" type="application/xml"/>
1983
- <link rel="depthchart" href="/2012/REG/9/MIA/IND/depthchart.xml" type="application/xml"/>
1984
- </links>
1985
- </game>
1986
- <game id="bbd8d64c-eaee-46ee-959c-af327fe9413f" scheduled="2012-11-04T18:00:00+00:00" home_rotation="" away_rotation="" home="GB" away="ARI" status="scheduled">
1987
- <venue id="5a60dd3a-302c-41c6-ab0f-dd335c1103c2" country="US" name="Lambeau Field" city="Green Bay" state="WI" capacity="72992" surface="turf" type="outdoor" zip="" address=""/>
1988
- <weather temperature="" condition="" humidity="">
1989
- <wind speed="" direction=""/>
1990
- </weather>
1991
- <broadcast network="FOX" satellite="704" internet="" cable=""/>
1992
- <links>
1993
- <link rel="statistics" href="/2012/REG/9/ARI/GB/statistics.xml" type="application/xml"/>
1994
- <link rel="summary" href="/2012/REG/9/ARI/GB/summary.xml" type="application/xml"/>
1995
- <link rel="pbp" href="/2012/REG/9/ARI/GB/pbp.xml" type="application/xml"/>
1996
- <link rel="boxscore" href="/2012/REG/9/ARI/GB/boxscore.xml" type="application/xml"/>
1997
- <link rel="roster" href="/2012/REG/9/ARI/GB/roster.xml" type="application/xml"/>
1998
- <link rel="injuries" href="/2012/REG/9/ARI/GB/injuries.xml" type="application/xml"/>
1999
- <link rel="depthchart" href="/2012/REG/9/ARI/GB/depthchart.xml" type="application/xml"/>
2000
- </links>
2001
- </game>
2002
- <game id="61fc12f3-c65d-4c43-8276-a8cfd1507ce5" scheduled="2012-11-04T18:00:00+00:00" home_rotation="" away_rotation="" home="WAS" away="CAR" status="scheduled">
2003
- <venue id="7c11bb2d-4a53-4842-b842-0f1c63ed78e9" country="US" name="FedEx Field" city="Hyattsville" state="MD" capacity="91704" surface="turf" type="outdoor" zip="" address=""/>
2004
- <weather temperature="" condition="" humidity="">
2005
- <wind speed="" direction=""/>
2006
- </weather>
2007
- <broadcast network="FOX" satellite="707" internet="" cable=""/>
2008
- <links>
2009
- <link rel="statistics" href="/2012/REG/9/CAR/WAS/statistics.xml" type="application/xml"/>
2010
- <link rel="summary" href="/2012/REG/9/CAR/WAS/summary.xml" type="application/xml"/>
2011
- <link rel="pbp" href="/2012/REG/9/CAR/WAS/pbp.xml" type="application/xml"/>
2012
- <link rel="boxscore" href="/2012/REG/9/CAR/WAS/boxscore.xml" type="application/xml"/>
2013
- <link rel="roster" href="/2012/REG/9/CAR/WAS/roster.xml" type="application/xml"/>
2014
- <link rel="injuries" href="/2012/REG/9/CAR/WAS/injuries.xml" type="application/xml"/>
2015
- <link rel="depthchart" href="/2012/REG/9/CAR/WAS/depthchart.xml" type="application/xml"/>
2016
- </links>
2017
- </game>
2018
- <game id="1270df07-34fb-4c42-adcf-4bc23d464eaf" scheduled="2012-11-04T18:00:00+00:00" home_rotation="" away_rotation="" home="JAC" away="DET" status="scheduled">
2019
- <venue id="4c5c036d-dd3d-4183-b595-71a43a97560f" country="US" name="EverBank Field" city="Jacksonville" state="FL" capacity="76877" surface="artificial" type="outdoor" zip="" address=""/>
2020
- <weather temperature="" condition="" humidity="">
2021
- <wind speed="" direction=""/>
2022
- </weather>
2023
- <broadcast network="FOX" satellite="705" internet="" cable=""/>
2024
- <links>
2025
- <link rel="statistics" href="/2012/REG/9/DET/JAC/statistics.xml" type="application/xml"/>
2026
- <link rel="summary" href="/2012/REG/9/DET/JAC/summary.xml" type="application/xml"/>
2027
- <link rel="pbp" href="/2012/REG/9/DET/JAC/pbp.xml" type="application/xml"/>
2028
- <link rel="boxscore" href="/2012/REG/9/DET/JAC/boxscore.xml" type="application/xml"/>
2029
- <link rel="roster" href="/2012/REG/9/DET/JAC/roster.xml" type="application/xml"/>
2030
- <link rel="injuries" href="/2012/REG/9/DET/JAC/injuries.xml" type="application/xml"/>
2031
- <link rel="depthchart" href="/2012/REG/9/DET/JAC/depthchart.xml" type="application/xml"/>
2032
- </links>
2033
- </game>
2034
- <game id="14dbd4e6-ff0d-4e52-ba53-f8bb5e1246e7" scheduled="2012-11-04T18:00:00+00:00" home_rotation="" away_rotation="" home="CLE" away="BAL" status="scheduled">
2035
- <venue id="90c38d91-3774-4f5d-82ca-1c806828219f" country="US" name="Cleveland Browns Stadium" city="Cleveland " state="OH" capacity="73200" surface="artificial" type="outdoor" zip="" address=""/>
2036
- <weather temperature="" condition="" humidity="">
2037
- <wind speed="" direction=""/>
2038
- </weather>
2039
- <broadcast network="CBS" satellite="709" internet="" cable=""/>
2040
- <links>
2041
- <link rel="statistics" href="/2012/REG/9/BAL/CLE/statistics.xml" type="application/xml"/>
2042
- <link rel="summary" href="/2012/REG/9/BAL/CLE/summary.xml" type="application/xml"/>
2043
- <link rel="pbp" href="/2012/REG/9/BAL/CLE/pbp.xml" type="application/xml"/>
2044
- <link rel="boxscore" href="/2012/REG/9/BAL/CLE/boxscore.xml" type="application/xml"/>
2045
- <link rel="roster" href="/2012/REG/9/BAL/CLE/roster.xml" type="application/xml"/>
2046
- <link rel="injuries" href="/2012/REG/9/BAL/CLE/injuries.xml" type="application/xml"/>
2047
- <link rel="depthchart" href="/2012/REG/9/BAL/CLE/depthchart.xml" type="application/xml"/>
2048
- </links>
2049
- </game>
2050
- <game id="3ff1c6c6-aee8-4aa7-a5b7-ae1a883eeb93" scheduled="2012-11-04T18:00:00+00:00" home_rotation="" away_rotation="" home="TEN" away="CHI" status="scheduled">
2051
- <venue id="5295c1b7-c85c-49cb-9569-1707c65324e5" country="US" name="LP Field" city="Nashville" state="TN" capacity="68798" surface="turf" type="outdoor" zip="" address=""/>
2052
- <weather temperature="" condition="" humidity="">
2053
- <wind speed="" direction=""/>
2054
- </weather>
2055
- <broadcast network="FOX" satellite="706" internet="" cable=""/>
2056
- <links>
2057
- <link rel="statistics" href="/2012/REG/9/CHI/TEN/statistics.xml" type="application/xml"/>
2058
- <link rel="summary" href="/2012/REG/9/CHI/TEN/summary.xml" type="application/xml"/>
2059
- <link rel="pbp" href="/2012/REG/9/CHI/TEN/pbp.xml" type="application/xml"/>
2060
- <link rel="boxscore" href="/2012/REG/9/CHI/TEN/boxscore.xml" type="application/xml"/>
2061
- <link rel="roster" href="/2012/REG/9/CHI/TEN/roster.xml" type="application/xml"/>
2062
- <link rel="injuries" href="/2012/REG/9/CHI/TEN/injuries.xml" type="application/xml"/>
2063
- <link rel="depthchart" href="/2012/REG/9/CHI/TEN/depthchart.xml" type="application/xml"/>
2064
- </links>
2065
- </game>
2066
- <game id="5ac4bca6-1c9f-4240-a3b7-f1b05e324731" scheduled="2012-11-04T18:00:00+00:00" home_rotation="" away_rotation="" home="HOU" away="BUF" status="scheduled">
2067
- <venue id="6a72e5ca-33d0-40af-8e6b-b32a4d3d9346" country="US" name="Reliant Stadium" city="Houston" state="TX" capacity="71500" surface="turf" type="retractable_dome" zip="" address=""/>
2068
- <weather temperature="" condition="" humidity="">
2069
- <wind speed="" direction=""/>
2070
- </weather>
2071
- <broadcast network="CBS" satellite="710" internet="" cable=""/>
2072
- <links>
2073
- <link rel="statistics" href="/2012/REG/9/BUF/HOU/statistics.xml" type="application/xml"/>
2074
- <link rel="summary" href="/2012/REG/9/BUF/HOU/summary.xml" type="application/xml"/>
2075
- <link rel="pbp" href="/2012/REG/9/BUF/HOU/pbp.xml" type="application/xml"/>
2076
- <link rel="boxscore" href="/2012/REG/9/BUF/HOU/boxscore.xml" type="application/xml"/>
2077
- <link rel="roster" href="/2012/REG/9/BUF/HOU/roster.xml" type="application/xml"/>
2078
- <link rel="injuries" href="/2012/REG/9/BUF/HOU/injuries.xml" type="application/xml"/>
2079
- <link rel="depthchart" href="/2012/REG/9/BUF/HOU/depthchart.xml" type="application/xml"/>
2080
- </links>
2081
- </game>
2082
- <game id="7795416d-8aee-48ab-ba48-6bab493c38ea" scheduled="2012-11-04T21:05:00+00:00" home_rotation="" away_rotation="" home="SEA" away="MIN" status="scheduled">
2083
- <venue id="c6b9e5df-c9e4-434c-b3e6-83928f11cbda" country="US" name="Qwest Field" city="Seattle" state="WA" capacity="67000" surface="artificial" type="outdoor" zip="" address=""/>
2084
- <weather temperature="" condition="" humidity="">
2085
- <wind speed="" direction=""/>
2086
- </weather>
2087
- <broadcast network="FOX" satellite="713" internet="" cable=""/>
2088
- <links>
2089
- <link rel="statistics" href="/2012/REG/9/MIN/SEA/statistics.xml" type="application/xml"/>
2090
- <link rel="summary" href="/2012/REG/9/MIN/SEA/summary.xml" type="application/xml"/>
2091
- <link rel="pbp" href="/2012/REG/9/MIN/SEA/pbp.xml" type="application/xml"/>
2092
- <link rel="boxscore" href="/2012/REG/9/MIN/SEA/boxscore.xml" type="application/xml"/>
2093
- <link rel="roster" href="/2012/REG/9/MIN/SEA/roster.xml" type="application/xml"/>
2094
- <link rel="injuries" href="/2012/REG/9/MIN/SEA/injuries.xml" type="application/xml"/>
2095
- <link rel="depthchart" href="/2012/REG/9/MIN/SEA/depthchart.xml" type="application/xml"/>
2096
- </links>
2097
- </game>
2098
- <game id="b59666fa-cce9-4118-978e-c6ce3aae8295" scheduled="2012-11-04T21:05:00+00:00" home_rotation="" away_rotation="" home="OAK" away="TB" status="scheduled">
2099
- <venue id="ba1ad00f-9130-462c-93f9-5612a0015117" country="US" name="Oakland-Alameda County Coliseum" city="Oakland" state="CA" capacity="63026" surface="turf" type="outdoor" zip="" address=""/>
2100
- <weather temperature="" condition="" humidity="">
2101
- <wind speed="" direction=""/>
2102
- </weather>
2103
- <broadcast network="FOX" satellite="712" internet="" cable=""/>
2104
- <links>
2105
- <link rel="statistics" href="/2012/REG/9/TB/OAK/statistics.xml" type="application/xml"/>
2106
- <link rel="summary" href="/2012/REG/9/TB/OAK/summary.xml" type="application/xml"/>
2107
- <link rel="pbp" href="/2012/REG/9/TB/OAK/pbp.xml" type="application/xml"/>
2108
- <link rel="boxscore" href="/2012/REG/9/TB/OAK/boxscore.xml" type="application/xml"/>
2109
- <link rel="roster" href="/2012/REG/9/TB/OAK/roster.xml" type="application/xml"/>
2110
- <link rel="injuries" href="/2012/REG/9/TB/OAK/injuries.xml" type="application/xml"/>
2111
- <link rel="depthchart" href="/2012/REG/9/TB/OAK/depthchart.xml" type="application/xml"/>
2112
- </links>
2113
- </game>
2114
- <game id="e3144922-b6c6-4587-8879-acbd9a04fab5" scheduled="2012-11-04T21:25:00+00:00" home_rotation="" away_rotation="" home="NYG" away="PIT" status="scheduled">
2115
- <venue id="5d4c85c7-d84e-4e10-bd6a-8a15ebecca5c" country="US" name="MetLife Stadium" city="East Rutherford" state="NJ" capacity="82500" surface="artificial" type="outdoor" zip="" address=""/>
2116
- <weather temperature="" condition="" humidity="">
2117
- <wind speed="" direction=""/>
2118
- </weather>
2119
- <broadcast network="CBS" satellite="714" internet="" cable=""/>
2120
- <links>
2121
- <link rel="statistics" href="/2012/REG/9/PIT/NYG/statistics.xml" type="application/xml"/>
2122
- <link rel="summary" href="/2012/REG/9/PIT/NYG/summary.xml" type="application/xml"/>
2123
- <link rel="pbp" href="/2012/REG/9/PIT/NYG/pbp.xml" type="application/xml"/>
2124
- <link rel="boxscore" href="/2012/REG/9/PIT/NYG/boxscore.xml" type="application/xml"/>
2125
- <link rel="roster" href="/2012/REG/9/PIT/NYG/roster.xml" type="application/xml"/>
2126
- <link rel="injuries" href="/2012/REG/9/PIT/NYG/injuries.xml" type="application/xml"/>
2127
- <link rel="depthchart" href="/2012/REG/9/PIT/NYG/depthchart.xml" type="application/xml"/>
2128
- </links>
2129
- </game>
2130
- <game id="5fd8e2c9-bf0a-4d34-ad7b-1301ddc2acbd" scheduled="2012-11-05T01:20:00+00:00" home_rotation="" away_rotation="" home="ATL" away="DAL" status="scheduled">
2131
- <venue id="216de6bf-bce0-409a-a9e7-90db8df1f7b9" country="US" name="Georgia Dome" city="Atlanta" state="GA" capacity="71250" surface="artificial" type="dome" zip="" address=""/>
2132
- <weather temperature="" condition="" humidity="">
2133
- <wind speed="" direction=""/>
2134
- </weather>
2135
- <broadcast network="NBC" satellite="" internet="" cable=""/>
2136
- <links>
2137
- <link rel="statistics" href="/2012/REG/9/DAL/ATL/statistics.xml" type="application/xml"/>
2138
- <link rel="summary" href="/2012/REG/9/DAL/ATL/summary.xml" type="application/xml"/>
2139
- <link rel="pbp" href="/2012/REG/9/DAL/ATL/pbp.xml" type="application/xml"/>
2140
- <link rel="boxscore" href="/2012/REG/9/DAL/ATL/boxscore.xml" type="application/xml"/>
2141
- <link rel="roster" href="/2012/REG/9/DAL/ATL/roster.xml" type="application/xml"/>
2142
- <link rel="injuries" href="/2012/REG/9/DAL/ATL/injuries.xml" type="application/xml"/>
2143
- <link rel="depthchart" href="/2012/REG/9/DAL/ATL/depthchart.xml" type="application/xml"/>
2144
- </links>
2145
- </game>
2146
- <game id="dd451e81-a4bb-46bb-aea2-d4883e684a52" scheduled="2012-11-06T01:30:00+00:00" home_rotation="" away_rotation="" home="NO" away="PHI" status="scheduled">
2147
- <venue id="3c85d89a-ec66-4983-acd5-1381d6c8673a" country="US" name="The Mercedes-Benz Superdome" city="New Orleans" state="LA" capacity="72968" surface="artificial" type="dome" zip="" address=""/>
2148
- <weather temperature="" condition="" humidity="">
2149
- <wind speed="" direction=""/>
2150
- </weather>
2151
- <broadcast network="ESPN" satellite="206" internet="" cable=""/>
2152
- <links>
2153
- <link rel="statistics" href="/2012/REG/9/PHI/NO/statistics.xml" type="application/xml"/>
2154
- <link rel="summary" href="/2012/REG/9/PHI/NO/summary.xml" type="application/xml"/>
2155
- <link rel="pbp" href="/2012/REG/9/PHI/NO/pbp.xml" type="application/xml"/>
2156
- <link rel="boxscore" href="/2012/REG/9/PHI/NO/boxscore.xml" type="application/xml"/>
2157
- <link rel="roster" href="/2012/REG/9/PHI/NO/roster.xml" type="application/xml"/>
2158
- <link rel="injuries" href="/2012/REG/9/PHI/NO/injuries.xml" type="application/xml"/>
2159
- <link rel="depthchart" href="/2012/REG/9/PHI/NO/depthchart.xml" type="application/xml"/>
2160
- </links>
2161
- </game>
2162
- <bye_week>
2163
- <team id="NE"/>
2164
- <team id="NYJ"/>
2165
- <team id="SF"/>
2166
- <team id="STL"/>
2167
- </bye_week>
2168
- </week>
2169
- <week week="10">
2170
- <game id="868e2fdc-a515-4ed9-8e66-d25170f8a3e3" scheduled="2012-11-09T01:20:00+00:00" home_rotation="" away_rotation="" home="JAC" away="IND" status="scheduled">
2171
- <venue id="4c5c036d-dd3d-4183-b595-71a43a97560f" country="US" name="EverBank Field" city="Jacksonville" state="FL" capacity="76877" surface="artificial" type="outdoor" zip="" address=""/>
2172
- <weather temperature="" condition="" humidity="">
2173
- <wind speed="" direction=""/>
2174
- </weather>
2175
- <links>
2176
- <link rel="statistics" href="/2012/REG/10/IND/JAC/statistics.xml" type="application/xml"/>
2177
- <link rel="summary" href="/2012/REG/10/IND/JAC/summary.xml" type="application/xml"/>
2178
- <link rel="pbp" href="/2012/REG/10/IND/JAC/pbp.xml" type="application/xml"/>
2179
- <link rel="boxscore" href="/2012/REG/10/IND/JAC/boxscore.xml" type="application/xml"/>
2180
- <link rel="roster" href="/2012/REG/10/IND/JAC/roster.xml" type="application/xml"/>
2181
- <link rel="injuries" href="/2012/REG/10/IND/JAC/injuries.xml" type="application/xml"/>
2182
- <link rel="depthchart" href="/2012/REG/10/IND/JAC/depthchart.xml" type="application/xml"/>
2183
- </links>
2184
- </game>
2185
- <game id="48160ea1-18b1-4c0a-8330-2e055572807d" scheduled="2012-11-11T18:00:00+00:00" home_rotation="" away_rotation="" home="CAR" away="DEN" status="scheduled">
2186
- <venue id="39be9ed4-3292-49ac-8699-a381de3a4969" country="US" name="Bank of America Stadium" city="Charlotte" state="NC" capacity="73778" surface="turf" type="outdoor" zip="" address=""/>
2187
- <weather temperature="" condition="" humidity="">
2188
- <wind speed="" direction=""/>
2189
- </weather>
2190
- <links>
2191
- <link rel="statistics" href="/2012/REG/10/DEN/CAR/statistics.xml" type="application/xml"/>
2192
- <link rel="summary" href="/2012/REG/10/DEN/CAR/summary.xml" type="application/xml"/>
2193
- <link rel="pbp" href="/2012/REG/10/DEN/CAR/pbp.xml" type="application/xml"/>
2194
- <link rel="boxscore" href="/2012/REG/10/DEN/CAR/boxscore.xml" type="application/xml"/>
2195
- <link rel="roster" href="/2012/REG/10/DEN/CAR/roster.xml" type="application/xml"/>
2196
- <link rel="injuries" href="/2012/REG/10/DEN/CAR/injuries.xml" type="application/xml"/>
2197
- <link rel="depthchart" href="/2012/REG/10/DEN/CAR/depthchart.xml" type="application/xml"/>
2198
- </links>
2199
- </game>
2200
- <game id="5736ec21-f0b7-4e7b-a809-ec1a8123fd4f" scheduled="2012-11-11T18:00:00+00:00" home_rotation="" away_rotation="" home="MIN" away="DET" status="scheduled">
2201
- <venue id="1fede74c-50a2-4036-a1c0-b4d1e53ca98c" country="US" name="Mall of America Field" city="Minneapolis" state="MN" capacity="64111" surface="artificial" type="dome" zip="" address=""/>
2202
- <weather temperature="" condition="" humidity="">
2203
- <wind speed="" direction=""/>
2204
- </weather>
2205
- <links>
2206
- <link rel="statistics" href="/2012/REG/10/DET/MIN/statistics.xml" type="application/xml"/>
2207
- <link rel="summary" href="/2012/REG/10/DET/MIN/summary.xml" type="application/xml"/>
2208
- <link rel="pbp" href="/2012/REG/10/DET/MIN/pbp.xml" type="application/xml"/>
2209
- <link rel="boxscore" href="/2012/REG/10/DET/MIN/boxscore.xml" type="application/xml"/>
2210
- <link rel="roster" href="/2012/REG/10/DET/MIN/roster.xml" type="application/xml"/>
2211
- <link rel="injuries" href="/2012/REG/10/DET/MIN/injuries.xml" type="application/xml"/>
2212
- <link rel="depthchart" href="/2012/REG/10/DET/MIN/depthchart.xml" type="application/xml"/>
2213
- </links>
2214
- </game>
2215
- <game id="3be3d922-0f1a-4f86-abc6-231218833764" scheduled="2012-11-11T18:00:00+00:00" home_rotation="" away_rotation="" home="MIA" away="TEN" status="scheduled">
2216
- <venue id="50a5c833-1570-4c38-abc7-7914cf87dbde" country="US" name="Sun Life Stadium" city="Miami Garden" state="FL" capacity="75235" surface="turf" type="outdoor" zip="" address=""/>
2217
- <weather temperature="" condition="" humidity="">
2218
- <wind speed="" direction=""/>
2219
- </weather>
2220
- <links>
2221
- <link rel="statistics" href="/2012/REG/10/TEN/MIA/statistics.xml" type="application/xml"/>
2222
- <link rel="summary" href="/2012/REG/10/TEN/MIA/summary.xml" type="application/xml"/>
2223
- <link rel="pbp" href="/2012/REG/10/TEN/MIA/pbp.xml" type="application/xml"/>
2224
- <link rel="boxscore" href="/2012/REG/10/TEN/MIA/boxscore.xml" type="application/xml"/>
2225
- <link rel="roster" href="/2012/REG/10/TEN/MIA/roster.xml" type="application/xml"/>
2226
- <link rel="injuries" href="/2012/REG/10/TEN/MIA/injuries.xml" type="application/xml"/>
2227
- <link rel="depthchart" href="/2012/REG/10/TEN/MIA/depthchart.xml" type="application/xml"/>
2228
- </links>
2229
- </game>
2230
- <game id="b7ed6f52-f4d5-4487-952c-84e582e18bb6" scheduled="2012-11-11T18:00:00+00:00" home_rotation="" away_rotation="" home="CIN" away="NYG" status="scheduled">
2231
- <venue id="b87a1595-d3c8-48ea-8a53-0aab6378a64a" country="US" name="Paul Brown Stadium" city="Cincinnati" state="OH" capacity="65535" surface="artificial" type="outdoor" zip="" address=""/>
2232
- <weather temperature="" condition="" humidity="">
2233
- <wind speed="" direction=""/>
2234
- </weather>
2235
- <links>
2236
- <link rel="statistics" href="/2012/REG/10/NYG/CIN/statistics.xml" type="application/xml"/>
2237
- <link rel="summary" href="/2012/REG/10/NYG/CIN/summary.xml" type="application/xml"/>
2238
- <link rel="pbp" href="/2012/REG/10/NYG/CIN/pbp.xml" type="application/xml"/>
2239
- <link rel="boxscore" href="/2012/REG/10/NYG/CIN/boxscore.xml" type="application/xml"/>
2240
- <link rel="roster" href="/2012/REG/10/NYG/CIN/roster.xml" type="application/xml"/>
2241
- <link rel="injuries" href="/2012/REG/10/NYG/CIN/injuries.xml" type="application/xml"/>
2242
- <link rel="depthchart" href="/2012/REG/10/NYG/CIN/depthchart.xml" type="application/xml"/>
2243
- </links>
2244
- </game>
2245
- <game id="ce2c97f4-6d01-4f2e-ba8b-1df529a238bd" scheduled="2012-11-11T18:00:00+00:00" home_rotation="" away_rotation="" home="TB" away="SD" status="scheduled">
2246
- <venue id="6fccc39c-80bc-4c81-83d9-2d5a848c8c09" country="US" name="Raymond James Stadium" city="Tampa Bay" state="FL" capacity="65657" surface="turf" type="outdoor" zip="" address=""/>
2247
- <weather temperature="" condition="" humidity="">
2248
- <wind speed="" direction=""/>
2249
- </weather>
2250
- <links>
2251
- <link rel="statistics" href="/2012/REG/10/SD/TB/statistics.xml" type="application/xml"/>
2252
- <link rel="summary" href="/2012/REG/10/SD/TB/summary.xml" type="application/xml"/>
2253
- <link rel="pbp" href="/2012/REG/10/SD/TB/pbp.xml" type="application/xml"/>
2254
- <link rel="boxscore" href="/2012/REG/10/SD/TB/boxscore.xml" type="application/xml"/>
2255
- <link rel="roster" href="/2012/REG/10/SD/TB/roster.xml" type="application/xml"/>
2256
- <link rel="injuries" href="/2012/REG/10/SD/TB/injuries.xml" type="application/xml"/>
2257
- <link rel="depthchart" href="/2012/REG/10/SD/TB/depthchart.xml" type="application/xml"/>
2258
- </links>
2259
- </game>
2260
- <game id="ed4ff082-457a-4cb2-8cb6-054943310885" scheduled="2012-11-11T18:00:00+00:00" home_rotation="" away_rotation="" home="NO" away="ATL" status="scheduled">
2261
- <venue id="3c85d89a-ec66-4983-acd5-1381d6c8673a" country="US" name="The Mercedes-Benz Superdome" city="New Orleans" state="LA" capacity="72968" surface="artificial" type="dome" zip="" address=""/>
2262
- <weather temperature="" condition="" humidity="">
2263
- <wind speed="" direction=""/>
2264
- </weather>
2265
- <links>
2266
- <link rel="statistics" href="/2012/REG/10/ATL/NO/statistics.xml" type="application/xml"/>
2267
- <link rel="summary" href="/2012/REG/10/ATL/NO/summary.xml" type="application/xml"/>
2268
- <link rel="pbp" href="/2012/REG/10/ATL/NO/pbp.xml" type="application/xml"/>
2269
- <link rel="boxscore" href="/2012/REG/10/ATL/NO/boxscore.xml" type="application/xml"/>
2270
- <link rel="roster" href="/2012/REG/10/ATL/NO/roster.xml" type="application/xml"/>
2271
- <link rel="injuries" href="/2012/REG/10/ATL/NO/injuries.xml" type="application/xml"/>
2272
- <link rel="depthchart" href="/2012/REG/10/ATL/NO/depthchart.xml" type="application/xml"/>
2273
- </links>
2274
- </game>
2275
- <game id="f14841c7-f684-4e1d-a434-63660db1d656" scheduled="2012-11-11T18:00:00+00:00" home_rotation="" away_rotation="" home="NE" away="BUF" status="scheduled">
2276
- <venue id="e43310b1-cb82-4df9-8be5-e9b39637031b" country="US" name="Gillette Stadium" city="Foxborough" state="MA" capacity="68756" surface="turf" type="outdoor" zip="" address=""/>
2277
- <weather temperature="" condition="" humidity="">
2278
- <wind speed="" direction=""/>
2279
- </weather>
2280
- <links>
2281
- <link rel="statistics" href="/2012/REG/10/BUF/NE/statistics.xml" type="application/xml"/>
2282
- <link rel="summary" href="/2012/REG/10/BUF/NE/summary.xml" type="application/xml"/>
2283
- <link rel="pbp" href="/2012/REG/10/BUF/NE/pbp.xml" type="application/xml"/>
2284
- <link rel="boxscore" href="/2012/REG/10/BUF/NE/boxscore.xml" type="application/xml"/>
2285
- <link rel="roster" href="/2012/REG/10/BUF/NE/roster.xml" type="application/xml"/>
2286
- <link rel="injuries" href="/2012/REG/10/BUF/NE/injuries.xml" type="application/xml"/>
2287
- <link rel="depthchart" href="/2012/REG/10/BUF/NE/depthchart.xml" type="application/xml"/>
2288
- </links>
2289
- </game>
2290
- <game id="731b96bf-7580-4cc2-82bc-8fa61bafa549" scheduled="2012-11-11T18:00:00+00:00" home_rotation="" away_rotation="" home="BAL" away="OAK" status="scheduled">
2291
- <venue id="d54faae0-0314-484f-8604-9d8dd08e1149" country="US" name="M&amp;T Bank Stadium" city="Baltimore" state="MD" capacity="71008" surface="artificial" type="outdoor" zip="" address=""/>
2292
- <weather temperature="" condition="" humidity="">
2293
- <wind speed="" direction=""/>
2294
- </weather>
2295
- <links>
2296
- <link rel="statistics" href="/2012/REG/10/OAK/BAL/statistics.xml" type="application/xml"/>
2297
- <link rel="summary" href="/2012/REG/10/OAK/BAL/summary.xml" type="application/xml"/>
2298
- <link rel="pbp" href="/2012/REG/10/OAK/BAL/pbp.xml" type="application/xml"/>
2299
- <link rel="boxscore" href="/2012/REG/10/OAK/BAL/boxscore.xml" type="application/xml"/>
2300
- <link rel="roster" href="/2012/REG/10/OAK/BAL/roster.xml" type="application/xml"/>
2301
- <link rel="injuries" href="/2012/REG/10/OAK/BAL/injuries.xml" type="application/xml"/>
2302
- <link rel="depthchart" href="/2012/REG/10/OAK/BAL/depthchart.xml" type="application/xml"/>
2303
- </links>
2304
- </game>
2305
- <game id="d922e55b-c7d9-4221-ba44-07e0e13aa354" scheduled="2012-11-11T21:05:00+00:00" home_rotation="" away_rotation="" home="SEA" away="NYJ" status="scheduled">
2306
- <venue id="c6b9e5df-c9e4-434c-b3e6-83928f11cbda" country="US" name="Qwest Field" city="Seattle" state="WA" capacity="67000" surface="artificial" type="outdoor" zip="" address=""/>
2307
- <weather temperature="" condition="" humidity="">
2308
- <wind speed="" direction=""/>
2309
- </weather>
2310
- <links>
2311
- <link rel="statistics" href="/2012/REG/10/NYJ/SEA/statistics.xml" type="application/xml"/>
2312
- <link rel="summary" href="/2012/REG/10/NYJ/SEA/summary.xml" type="application/xml"/>
2313
- <link rel="pbp" href="/2012/REG/10/NYJ/SEA/pbp.xml" type="application/xml"/>
2314
- <link rel="boxscore" href="/2012/REG/10/NYJ/SEA/boxscore.xml" type="application/xml"/>
2315
- <link rel="roster" href="/2012/REG/10/NYJ/SEA/roster.xml" type="application/xml"/>
2316
- <link rel="injuries" href="/2012/REG/10/NYJ/SEA/injuries.xml" type="application/xml"/>
2317
- <link rel="depthchart" href="/2012/REG/10/NYJ/SEA/depthchart.xml" type="application/xml"/>
2318
- </links>
2319
- </game>
2320
- <game id="43418344-87e8-4e42-b870-988341541ffd" scheduled="2012-11-11T21:15:00+00:00" home_rotation="" away_rotation="" home="PHI" away="DAL" status="scheduled">
2321
- <venue id="4fa8c29c-6626-464c-8540-314ed7535e1b" country="US" name="Lincoln Financial Field" city="Philadelphia" state="PA" capacity="68532" surface="turf" type="outdoor" zip="" address=""/>
2322
- <weather temperature="" condition="" humidity="">
2323
- <wind speed="" direction=""/>
2324
- </weather>
2325
- <links>
2326
- <link rel="statistics" href="/2012/REG/10/DAL/PHI/statistics.xml" type="application/xml"/>
2327
- <link rel="summary" href="/2012/REG/10/DAL/PHI/summary.xml" type="application/xml"/>
2328
- <link rel="pbp" href="/2012/REG/10/DAL/PHI/pbp.xml" type="application/xml"/>
2329
- <link rel="boxscore" href="/2012/REG/10/DAL/PHI/boxscore.xml" type="application/xml"/>
2330
- <link rel="roster" href="/2012/REG/10/DAL/PHI/roster.xml" type="application/xml"/>
2331
- <link rel="injuries" href="/2012/REG/10/DAL/PHI/injuries.xml" type="application/xml"/>
2332
- <link rel="depthchart" href="/2012/REG/10/DAL/PHI/depthchart.xml" type="application/xml"/>
2333
- </links>
2334
- </game>
2335
- <game id="87fe3139-4378-484e-a6d8-c28f94f346f7" scheduled="2012-11-11T21:15:00+00:00" home_rotation="" away_rotation="" home="SF" away="STL" status="scheduled">
2336
- <venue id="6701808c-c329-482b-9834-2d29cb3185ff" country="US" name="Candlestick Park" city="San Francisco" state="CA" capacity="70207" surface="turf" type="outdoor" zip="" address=""/>
2337
- <weather temperature="" condition="" humidity="">
2338
- <wind speed="" direction=""/>
2339
- </weather>
2340
- <links>
2341
- <link rel="statistics" href="/2012/REG/10/STL/SF/statistics.xml" type="application/xml"/>
2342
- <link rel="summary" href="/2012/REG/10/STL/SF/summary.xml" type="application/xml"/>
2343
- <link rel="pbp" href="/2012/REG/10/STL/SF/pbp.xml" type="application/xml"/>
2344
- <link rel="boxscore" href="/2012/REG/10/STL/SF/boxscore.xml" type="application/xml"/>
2345
- <link rel="roster" href="/2012/REG/10/STL/SF/roster.xml" type="application/xml"/>
2346
- <link rel="injuries" href="/2012/REG/10/STL/SF/injuries.xml" type="application/xml"/>
2347
- <link rel="depthchart" href="/2012/REG/10/STL/SF/depthchart.xml" type="application/xml"/>
2348
- </links>
2349
- </game>
2350
- <game id="413e0815-d6fa-4c87-9cd1-0e95fe0f04d9" scheduled="2012-11-12T01:20:00+00:00" home_rotation="" away_rotation="" home="CHI" away="HOU" status="scheduled">
2351
- <venue id="d7866605-5ac6-4b3a-90e8-760cc5a26b75" country="US" name="Soldier Field" city="Chicago" state="IL" capacity="61500" surface="turf" type="outdoor" zip="" address=""/>
2352
- <weather temperature="" condition="" humidity="">
2353
- <wind speed="" direction=""/>
2354
- </weather>
2355
- <links>
2356
- <link rel="statistics" href="/2012/REG/10/HOU/CHI/statistics.xml" type="application/xml"/>
2357
- <link rel="summary" href="/2012/REG/10/HOU/CHI/summary.xml" type="application/xml"/>
2358
- <link rel="pbp" href="/2012/REG/10/HOU/CHI/pbp.xml" type="application/xml"/>
2359
- <link rel="boxscore" href="/2012/REG/10/HOU/CHI/boxscore.xml" type="application/xml"/>
2360
- <link rel="roster" href="/2012/REG/10/HOU/CHI/roster.xml" type="application/xml"/>
2361
- <link rel="injuries" href="/2012/REG/10/HOU/CHI/injuries.xml" type="application/xml"/>
2362
- <link rel="depthchart" href="/2012/REG/10/HOU/CHI/depthchart.xml" type="application/xml"/>
2363
- </links>
2364
- </game>
2365
- <game id="0b9136b6-346f-48cb-aa65-1b217340c789" scheduled="2012-11-13T01:30:00+00:00" home_rotation="" away_rotation="" home="PIT" away="KC" status="scheduled">
2366
- <venue id="7349a2e6-0ac9-410b-8bd2-ca58c9f7aa34" country="US" name="Heinz Field" city="Pittsburgh" state="PA" capacity="65050" surface="turf" type="outdoor" zip="" address=""/>
2367
- <weather temperature="" condition="" humidity="">
2368
- <wind speed="" direction=""/>
2369
- </weather>
2370
- <links>
2371
- <link rel="statistics" href="/2012/REG/10/KC/PIT/statistics.xml" type="application/xml"/>
2372
- <link rel="summary" href="/2012/REG/10/KC/PIT/summary.xml" type="application/xml"/>
2373
- <link rel="pbp" href="/2012/REG/10/KC/PIT/pbp.xml" type="application/xml"/>
2374
- <link rel="boxscore" href="/2012/REG/10/KC/PIT/boxscore.xml" type="application/xml"/>
2375
- <link rel="roster" href="/2012/REG/10/KC/PIT/roster.xml" type="application/xml"/>
2376
- <link rel="injuries" href="/2012/REG/10/KC/PIT/injuries.xml" type="application/xml"/>
2377
- <link rel="depthchart" href="/2012/REG/10/KC/PIT/depthchart.xml" type="application/xml"/>
2378
- </links>
2379
- </game>
2380
- <bye_week>
2381
- <team id="ARI"/>
2382
- <team id="CLE"/>
2383
- <team id="GB"/>
2384
- <team id="WAS"/>
2385
- </bye_week>
2386
- </week>
2387
- <week week="11">
2388
- <game id="c40dcdf2-0abe-4e83-9eb4-f10b443e9987" scheduled="2012-11-16T01:20:00+00:00" home_rotation="" away_rotation="" home="BUF" away="MIA" status="scheduled">
2389
- <venue id="e9e0828e-37fc-4238-a317-49037577dd55" country="US" name="Ralph Wilson Stadium" city="Orchard Park" state="NY" capacity="73967" surface="artificial" type="outdoor" zip="" address=""/>
2390
- <weather temperature="" condition="" humidity="">
2391
- <wind speed="" direction=""/>
2392
- </weather>
2393
- <broadcast network="" satellite="" internet="" cable=""/>
2394
- <links>
2395
- <link rel="statistics" href="/2012/REG/11/MIA/BUF/statistics.xml" type="application/xml"/>
2396
- <link rel="summary" href="/2012/REG/11/MIA/BUF/summary.xml" type="application/xml"/>
2397
- <link rel="pbp" href="/2012/REG/11/MIA/BUF/pbp.xml" type="application/xml"/>
2398
- <link rel="boxscore" href="/2012/REG/11/MIA/BUF/boxscore.xml" type="application/xml"/>
2399
- <link rel="roster" href="/2012/REG/11/MIA/BUF/roster.xml" type="application/xml"/>
2400
- <link rel="injuries" href="/2012/REG/11/MIA/BUF/injuries.xml" type="application/xml"/>
2401
- <link rel="depthchart" href="/2012/REG/11/MIA/BUF/depthchart.xml" type="application/xml"/>
2402
- </links>
2403
- </game>
2404
- <game id="76c38c3a-121d-46ba-9ab9-c926133187e1" scheduled="2012-11-18T18:00:00+00:00" home_rotation="" away_rotation="" home="HOU" away="JAC" status="scheduled">
2405
- <venue id="6a72e5ca-33d0-40af-8e6b-b32a4d3d9346" country="US" name="Reliant Stadium" city="Houston" state="TX" capacity="71500" surface="turf" type="retractable_dome" zip="" address=""/>
2406
- <weather temperature="" condition="" humidity="">
2407
- <wind speed="" direction=""/>
2408
- </weather>
2409
- <links>
2410
- <link rel="statistics" href="/2012/REG/11/JAC/HOU/statistics.xml" type="application/xml"/>
2411
- <link rel="summary" href="/2012/REG/11/JAC/HOU/summary.xml" type="application/xml"/>
2412
- <link rel="pbp" href="/2012/REG/11/JAC/HOU/pbp.xml" type="application/xml"/>
2413
- <link rel="boxscore" href="/2012/REG/11/JAC/HOU/boxscore.xml" type="application/xml"/>
2414
- <link rel="roster" href="/2012/REG/11/JAC/HOU/roster.xml" type="application/xml"/>
2415
- <link rel="injuries" href="/2012/REG/11/JAC/HOU/injuries.xml" type="application/xml"/>
2416
- <link rel="depthchart" href="/2012/REG/11/JAC/HOU/depthchart.xml" type="application/xml"/>
2417
- </links>
2418
- </game>
2419
- <game id="97b78c85-0782-4f1b-8665-05879859df21" scheduled="2012-11-18T18:00:00+00:00" home_rotation="" away_rotation="" home="STL" away="NYJ" status="scheduled">
2420
- <venue id="e86a743f-ee77-490f-acfb-3187b7a9633e" country="US" name="Edward Jones Dome" city="St. Louis" state="MO" capacity="65321" surface="artificial" type="dome" zip="" address=""/>
2421
- <weather temperature="" condition="" humidity="">
2422
- <wind speed="" direction=""/>
2423
- </weather>
2424
- <links>
2425
- <link rel="statistics" href="/2012/REG/11/NYJ/STL/statistics.xml" type="application/xml"/>
2426
- <link rel="summary" href="/2012/REG/11/NYJ/STL/summary.xml" type="application/xml"/>
2427
- <link rel="pbp" href="/2012/REG/11/NYJ/STL/pbp.xml" type="application/xml"/>
2428
- <link rel="boxscore" href="/2012/REG/11/NYJ/STL/boxscore.xml" type="application/xml"/>
2429
- <link rel="roster" href="/2012/REG/11/NYJ/STL/roster.xml" type="application/xml"/>
2430
- <link rel="injuries" href="/2012/REG/11/NYJ/STL/injuries.xml" type="application/xml"/>
2431
- <link rel="depthchart" href="/2012/REG/11/NYJ/STL/depthchart.xml" type="application/xml"/>
2432
- </links>
2433
- </game>
2434
- <game id="705b8290-bb28-4d9c-8d6f-4949b5f11a13" scheduled="2012-11-18T18:00:00+00:00" home_rotation="" away_rotation="" home="DAL" away="CLE" status="scheduled">
2435
- <venue id="1e84213a-ff1f-4c9d-a003-8ee782b25a40" country="US" name="Cowboys Stadium" city="Arlington" state="TX" capacity="80000" surface="artificial" type="retractable_dome" zip="" address=""/>
2436
- <weather temperature="" condition="" humidity="">
2437
- <wind speed="" direction=""/>
2438
- </weather>
2439
- <links>
2440
- <link rel="statistics" href="/2012/REG/11/CLE/DAL/statistics.xml" type="application/xml"/>
2441
- <link rel="summary" href="/2012/REG/11/CLE/DAL/summary.xml" type="application/xml"/>
2442
- <link rel="pbp" href="/2012/REG/11/CLE/DAL/pbp.xml" type="application/xml"/>
2443
- <link rel="boxscore" href="/2012/REG/11/CLE/DAL/boxscore.xml" type="application/xml"/>
2444
- <link rel="roster" href="/2012/REG/11/CLE/DAL/roster.xml" type="application/xml"/>
2445
- <link rel="injuries" href="/2012/REG/11/CLE/DAL/injuries.xml" type="application/xml"/>
2446
- <link rel="depthchart" href="/2012/REG/11/CLE/DAL/depthchart.xml" type="application/xml"/>
2447
- </links>
2448
- </game>
2449
- <game id="b1d95871-c502-460c-8e5a-d7265ebfed45" scheduled="2012-11-18T18:00:00+00:00" home_rotation="" away_rotation="" home="KC" away="CIN" status="scheduled">
2450
- <venue id="2ec4c411-dac2-403d-b091-6b6aa4a0a914" country="US" name="Arrowhead Stadium" city="Kansas City" state="MO" capacity="79451" surface="turf" type="outdoor" zip="" address=""/>
2451
- <weather temperature="" condition="" humidity="">
2452
- <wind speed="" direction=""/>
2453
- </weather>
2454
- <links>
2455
- <link rel="statistics" href="/2012/REG/11/CIN/KC/statistics.xml" type="application/xml"/>
2456
- <link rel="summary" href="/2012/REG/11/CIN/KC/summary.xml" type="application/xml"/>
2457
- <link rel="pbp" href="/2012/REG/11/CIN/KC/pbp.xml" type="application/xml"/>
2458
- <link rel="boxscore" href="/2012/REG/11/CIN/KC/boxscore.xml" type="application/xml"/>
2459
- <link rel="roster" href="/2012/REG/11/CIN/KC/roster.xml" type="application/xml"/>
2460
- <link rel="injuries" href="/2012/REG/11/CIN/KC/injuries.xml" type="application/xml"/>
2461
- <link rel="depthchart" href="/2012/REG/11/CIN/KC/depthchart.xml" type="application/xml"/>
2462
- </links>
2463
- </game>
2464
- <game id="9d287068-1bdf-441a-b16d-37436ce68b65" scheduled="2012-11-18T18:00:00+00:00" home_rotation="" away_rotation="" home="CAR" away="TB" status="scheduled">
2465
- <venue id="39be9ed4-3292-49ac-8699-a381de3a4969" country="US" name="Bank of America Stadium" city="Charlotte" state="NC" capacity="73778" surface="turf" type="outdoor" zip="" address=""/>
2466
- <weather temperature="" condition="" humidity="">
2467
- <wind speed="" direction=""/>
2468
- </weather>
2469
- <links>
2470
- <link rel="statistics" href="/2012/REG/11/TB/CAR/statistics.xml" type="application/xml"/>
2471
- <link rel="summary" href="/2012/REG/11/TB/CAR/summary.xml" type="application/xml"/>
2472
- <link rel="pbp" href="/2012/REG/11/TB/CAR/pbp.xml" type="application/xml"/>
2473
- <link rel="boxscore" href="/2012/REG/11/TB/CAR/boxscore.xml" type="application/xml"/>
2474
- <link rel="roster" href="/2012/REG/11/TB/CAR/roster.xml" type="application/xml"/>
2475
- <link rel="injuries" href="/2012/REG/11/TB/CAR/injuries.xml" type="application/xml"/>
2476
- <link rel="depthchart" href="/2012/REG/11/TB/CAR/depthchart.xml" type="application/xml"/>
2477
- </links>
2478
- </game>
2479
- <game id="e2f7e169-ce18-40ce-a7fc-938a7e03e221" scheduled="2012-11-18T18:00:00+00:00" home_rotation="" away_rotation="" home="WAS" away="PHI" status="scheduled">
2480
- <venue id="7c11bb2d-4a53-4842-b842-0f1c63ed78e9" country="US" name="FedEx Field" city="Hyattsville" state="MD" capacity="91704" surface="turf" type="outdoor" zip="" address=""/>
2481
- <weather temperature="" condition="" humidity="">
2482
- <wind speed="" direction=""/>
2483
- </weather>
2484
- <links>
2485
- <link rel="statistics" href="/2012/REG/11/PHI/WAS/statistics.xml" type="application/xml"/>
2486
- <link rel="summary" href="/2012/REG/11/PHI/WAS/summary.xml" type="application/xml"/>
2487
- <link rel="pbp" href="/2012/REG/11/PHI/WAS/pbp.xml" type="application/xml"/>
2488
- <link rel="boxscore" href="/2012/REG/11/PHI/WAS/boxscore.xml" type="application/xml"/>
2489
- <link rel="roster" href="/2012/REG/11/PHI/WAS/roster.xml" type="application/xml"/>
2490
- <link rel="injuries" href="/2012/REG/11/PHI/WAS/injuries.xml" type="application/xml"/>
2491
- <link rel="depthchart" href="/2012/REG/11/PHI/WAS/depthchart.xml" type="application/xml"/>
2492
- </links>
2493
- </game>
2494
- <game id="5c1c76ce-a612-4244-87e7-91af73f9b0d9" scheduled="2012-11-18T18:00:00+00:00" home_rotation="" away_rotation="" home="NE" away="IND" status="scheduled">
2495
- <venue id="e43310b1-cb82-4df9-8be5-e9b39637031b" country="US" name="Gillette Stadium" city="Foxborough" state="MA" capacity="68756" surface="turf" type="outdoor" zip="" address=""/>
2496
- <weather temperature="" condition="" humidity="">
2497
- <wind speed="" direction=""/>
2498
- </weather>
2499
- <links>
2500
- <link rel="statistics" href="/2012/REG/11/IND/NE/statistics.xml" type="application/xml"/>
2501
- <link rel="summary" href="/2012/REG/11/IND/NE/summary.xml" type="application/xml"/>
2502
- <link rel="pbp" href="/2012/REG/11/IND/NE/pbp.xml" type="application/xml"/>
2503
- <link rel="boxscore" href="/2012/REG/11/IND/NE/boxscore.xml" type="application/xml"/>
2504
- <link rel="roster" href="/2012/REG/11/IND/NE/roster.xml" type="application/xml"/>
2505
- <link rel="injuries" href="/2012/REG/11/IND/NE/injuries.xml" type="application/xml"/>
2506
- <link rel="depthchart" href="/2012/REG/11/IND/NE/depthchart.xml" type="application/xml"/>
2507
- </links>
2508
- </game>
2509
- <game id="cfcaece1-32d7-475c-84e6-1ee5920dbfee" scheduled="2012-11-18T18:00:00+00:00" home_rotation="" away_rotation="" home="DET" away="GB" status="scheduled">
2510
- <venue id="6e3bcf22-277d-4c06-b019-62aded51654f" country="US" name="Ford Field" city="Detroit" state="MI" capacity="65000" surface="artificial" type="dome" zip="" address=""/>
2511
- <weather temperature="" condition="" humidity="">
2512
- <wind speed="" direction=""/>
2513
- </weather>
2514
- <links>
2515
- <link rel="statistics" href="/2012/REG/11/GB/DET/statistics.xml" type="application/xml"/>
2516
- <link rel="summary" href="/2012/REG/11/GB/DET/summary.xml" type="application/xml"/>
2517
- <link rel="pbp" href="/2012/REG/11/GB/DET/pbp.xml" type="application/xml"/>
2518
- <link rel="boxscore" href="/2012/REG/11/GB/DET/boxscore.xml" type="application/xml"/>
2519
- <link rel="roster" href="/2012/REG/11/GB/DET/roster.xml" type="application/xml"/>
2520
- <link rel="injuries" href="/2012/REG/11/GB/DET/injuries.xml" type="application/xml"/>
2521
- <link rel="depthchart" href="/2012/REG/11/GB/DET/depthchart.xml" type="application/xml"/>
2522
- </links>
2523
- </game>
2524
- <game id="a078fd59-409c-4403-9bf6-887fc3b4cd4a" scheduled="2012-11-18T18:00:00+00:00" home_rotation="" away_rotation="" home="ATL" away="ARI" status="scheduled">
2525
- <venue id="216de6bf-bce0-409a-a9e7-90db8df1f7b9" country="US" name="Georgia Dome" city="Atlanta" state="GA" capacity="71250" surface="artificial" type="dome" zip="" address=""/>
2526
- <weather temperature="" condition="" humidity="">
2527
- <wind speed="" direction=""/>
2528
- </weather>
2529
- <links>
2530
- <link rel="statistics" href="/2012/REG/11/ARI/ATL/statistics.xml" type="application/xml"/>
2531
- <link rel="summary" href="/2012/REG/11/ARI/ATL/summary.xml" type="application/xml"/>
2532
- <link rel="pbp" href="/2012/REG/11/ARI/ATL/pbp.xml" type="application/xml"/>
2533
- <link rel="boxscore" href="/2012/REG/11/ARI/ATL/boxscore.xml" type="application/xml"/>
2534
- <link rel="roster" href="/2012/REG/11/ARI/ATL/roster.xml" type="application/xml"/>
2535
- <link rel="injuries" href="/2012/REG/11/ARI/ATL/injuries.xml" type="application/xml"/>
2536
- <link rel="depthchart" href="/2012/REG/11/ARI/ATL/depthchart.xml" type="application/xml"/>
2537
- </links>
2538
- </game>
2539
- <game id="8d7975bd-7e20-4951-861d-f8f22f75d306" scheduled="2012-11-18T21:05:00+00:00" home_rotation="" away_rotation="" home="OAK" away="NO" status="scheduled">
2540
- <venue id="ba1ad00f-9130-462c-93f9-5612a0015117" country="US" name="Oakland-Alameda County Coliseum" city="Oakland" state="CA" capacity="63026" surface="turf" type="outdoor" zip="" address=""/>
2541
- <weather temperature="" condition="" humidity="">
2542
- <wind speed="" direction=""/>
2543
- </weather>
2544
- <links>
2545
- <link rel="statistics" href="/2012/REG/11/NO/OAK/statistics.xml" type="application/xml"/>
2546
- <link rel="summary" href="/2012/REG/11/NO/OAK/summary.xml" type="application/xml"/>
2547
- <link rel="pbp" href="/2012/REG/11/NO/OAK/pbp.xml" type="application/xml"/>
2548
- <link rel="boxscore" href="/2012/REG/11/NO/OAK/boxscore.xml" type="application/xml"/>
2549
- <link rel="roster" href="/2012/REG/11/NO/OAK/roster.xml" type="application/xml"/>
2550
- <link rel="injuries" href="/2012/REG/11/NO/OAK/injuries.xml" type="application/xml"/>
2551
- <link rel="depthchart" href="/2012/REG/11/NO/OAK/depthchart.xml" type="application/xml"/>
2552
- </links>
2553
- </game>
2554
- <game id="cb1dc503-de5d-479e-8538-4d5b845e2a9e" scheduled="2012-11-18T21:15:00+00:00" home_rotation="" away_rotation="" home="DEN" away="SD" status="scheduled">
2555
- <venue id="6589e61d-ef1e-4e30-91b5-9acd2072b8a0" country="US" name="Sports Authority Field at Mile High" city="Denver " state="CO" capacity="76125" surface="turf" type="outdoor" zip="" address=""/>
2556
- <weather temperature="" condition="" humidity="">
2557
- <wind speed="" direction=""/>
2558
- </weather>
2559
- <links>
2560
- <link rel="statistics" href="/2012/REG/11/SD/DEN/statistics.xml" type="application/xml"/>
2561
- <link rel="summary" href="/2012/REG/11/SD/DEN/summary.xml" type="application/xml"/>
2562
- <link rel="pbp" href="/2012/REG/11/SD/DEN/pbp.xml" type="application/xml"/>
2563
- <link rel="boxscore" href="/2012/REG/11/SD/DEN/boxscore.xml" type="application/xml"/>
2564
- <link rel="roster" href="/2012/REG/11/SD/DEN/roster.xml" type="application/xml"/>
2565
- <link rel="injuries" href="/2012/REG/11/SD/DEN/injuries.xml" type="application/xml"/>
2566
- <link rel="depthchart" href="/2012/REG/11/SD/DEN/depthchart.xml" type="application/xml"/>
2567
- </links>
2568
- </game>
2569
- <game id="b0aefc0c-dd2c-43ed-9df3-b433420a217f" scheduled="2012-11-19T01:20:00+00:00" home_rotation="" away_rotation="" home="PIT" away="BAL" status="scheduled">
2570
- <venue id="7349a2e6-0ac9-410b-8bd2-ca58c9f7aa34" country="US" name="Heinz Field" city="Pittsburgh" state="PA" capacity="65050" surface="turf" type="outdoor" zip="" address=""/>
2571
- <weather temperature="" condition="" humidity="">
2572
- <wind speed="" direction=""/>
2573
- </weather>
2574
- <links>
2575
- <link rel="statistics" href="/2012/REG/11/BAL/PIT/statistics.xml" type="application/xml"/>
2576
- <link rel="summary" href="/2012/REG/11/BAL/PIT/summary.xml" type="application/xml"/>
2577
- <link rel="pbp" href="/2012/REG/11/BAL/PIT/pbp.xml" type="application/xml"/>
2578
- <link rel="boxscore" href="/2012/REG/11/BAL/PIT/boxscore.xml" type="application/xml"/>
2579
- <link rel="roster" href="/2012/REG/11/BAL/PIT/roster.xml" type="application/xml"/>
2580
- <link rel="injuries" href="/2012/REG/11/BAL/PIT/injuries.xml" type="application/xml"/>
2581
- <link rel="depthchart" href="/2012/REG/11/BAL/PIT/depthchart.xml" type="application/xml"/>
2582
- </links>
2583
- </game>
2584
- <game id="f9cf9e59-51d7-4e01-977c-82081c976703" scheduled="2012-11-20T01:30:00+00:00" home_rotation="" away_rotation="" home="SF" away="CHI" status="scheduled">
2585
- <venue id="6701808c-c329-482b-9834-2d29cb3185ff" country="US" name="Candlestick Park" city="San Francisco" state="CA" capacity="70207" surface="turf" type="outdoor" zip="" address=""/>
2586
- <weather temperature="" condition="" humidity="">
2587
- <wind speed="" direction=""/>
2588
- </weather>
2589
- <links>
2590
- <link rel="statistics" href="/2012/REG/11/CHI/SF/statistics.xml" type="application/xml"/>
2591
- <link rel="summary" href="/2012/REG/11/CHI/SF/summary.xml" type="application/xml"/>
2592
- <link rel="pbp" href="/2012/REG/11/CHI/SF/pbp.xml" type="application/xml"/>
2593
- <link rel="boxscore" href="/2012/REG/11/CHI/SF/boxscore.xml" type="application/xml"/>
2594
- <link rel="roster" href="/2012/REG/11/CHI/SF/roster.xml" type="application/xml"/>
2595
- <link rel="injuries" href="/2012/REG/11/CHI/SF/injuries.xml" type="application/xml"/>
2596
- <link rel="depthchart" href="/2012/REG/11/CHI/SF/depthchart.xml" type="application/xml"/>
2597
- </links>
2598
- </game>
2599
- <bye_week>
2600
- <team id="MIN"/>
2601
- <team id="NYG"/>
2602
- <team id="SEA"/>
2603
- <team id="TEN"/>
2604
- </bye_week>
2605
- </week>
2606
- <week week="12">
2607
- <game id="be31f41a-69e1-4cf9-9278-a14716825ff6" scheduled="2012-11-22T17:30:00+00:00" home_rotation="" away_rotation="" home="DET" away="HOU" status="scheduled">
2608
- <venue id="6e3bcf22-277d-4c06-b019-62aded51654f" country="US" name="Ford Field" city="Detroit" state="MI" capacity="65000" surface="artificial" type="dome" zip="" address=""/>
2609
- <weather temperature="" condition="" humidity="">
2610
- <wind speed="" direction=""/>
2611
- </weather>
2612
- <broadcast network="" satellite="" internet="" cable=""/>
2613
- <links>
2614
- <link rel="statistics" href="/2012/REG/12/HOU/DET/statistics.xml" type="application/xml"/>
2615
- <link rel="summary" href="/2012/REG/12/HOU/DET/summary.xml" type="application/xml"/>
2616
- <link rel="pbp" href="/2012/REG/12/HOU/DET/pbp.xml" type="application/xml"/>
2617
- <link rel="boxscore" href="/2012/REG/12/HOU/DET/boxscore.xml" type="application/xml"/>
2618
- <link rel="roster" href="/2012/REG/12/HOU/DET/roster.xml" type="application/xml"/>
2619
- <link rel="injuries" href="/2012/REG/12/HOU/DET/injuries.xml" type="application/xml"/>
2620
- <link rel="depthchart" href="/2012/REG/12/HOU/DET/depthchart.xml" type="application/xml"/>
2621
- </links>
2622
- </game>
2623
- <game id="7f8d78e0-0d6f-4a6f-917f-6983e1fd8d5e" scheduled="2012-11-22T21:15:00+00:00" home_rotation="" away_rotation="" home="DAL" away="WAS" status="scheduled">
2624
- <venue id="1e84213a-ff1f-4c9d-a003-8ee782b25a40" country="US" name="Cowboys Stadium" city="Arlington" state="TX" capacity="80000" surface="artificial" type="retractable_dome" zip="" address=""/>
2625
- <weather temperature="" condition="" humidity="">
2626
- <wind speed="" direction=""/>
2627
- </weather>
2628
- <links>
2629
- <link rel="statistics" href="/2012/REG/12/WAS/DAL/statistics.xml" type="application/xml"/>
2630
- <link rel="summary" href="/2012/REG/12/WAS/DAL/summary.xml" type="application/xml"/>
2631
- <link rel="pbp" href="/2012/REG/12/WAS/DAL/pbp.xml" type="application/xml"/>
2632
- <link rel="boxscore" href="/2012/REG/12/WAS/DAL/boxscore.xml" type="application/xml"/>
2633
- <link rel="roster" href="/2012/REG/12/WAS/DAL/roster.xml" type="application/xml"/>
2634
- <link rel="injuries" href="/2012/REG/12/WAS/DAL/injuries.xml" type="application/xml"/>
2635
- <link rel="depthchart" href="/2012/REG/12/WAS/DAL/depthchart.xml" type="application/xml"/>
2636
- </links>
2637
- </game>
2638
- <game id="5a1dea8c-a3d7-4b80-a348-84728332f6f6" scheduled="2012-11-23T01:20:00+00:00" home_rotation="" away_rotation="" home="NYJ" away="NE" status="scheduled">
2639
- <venue id="5d4c85c7-d84e-4e10-bd6a-8a15ebecca5c" country="US" name="MetLife Stadium" city="East Rutherford" state="NJ" capacity="82500" surface="artificial" type="outdoor" zip="" address=""/>
2640
- <weather temperature="" condition="" humidity="">
2641
- <wind speed="" direction=""/>
2642
- </weather>
2643
- <links>
2644
- <link rel="statistics" href="/2012/REG/12/NE/NYJ/statistics.xml" type="application/xml"/>
2645
- <link rel="summary" href="/2012/REG/12/NE/NYJ/summary.xml" type="application/xml"/>
2646
- <link rel="pbp" href="/2012/REG/12/NE/NYJ/pbp.xml" type="application/xml"/>
2647
- <link rel="boxscore" href="/2012/REG/12/NE/NYJ/boxscore.xml" type="application/xml"/>
2648
- <link rel="roster" href="/2012/REG/12/NE/NYJ/roster.xml" type="application/xml"/>
2649
- <link rel="injuries" href="/2012/REG/12/NE/NYJ/injuries.xml" type="application/xml"/>
2650
- <link rel="depthchart" href="/2012/REG/12/NE/NYJ/depthchart.xml" type="application/xml"/>
2651
- </links>
2652
- </game>
2653
- <game id="c035cfde-f3b8-4038-8810-32624cf5f445" scheduled="2012-11-25T18:00:00+00:00" home_rotation="" away_rotation="" home="CHI" away="MIN" status="scheduled">
2654
- <venue id="d7866605-5ac6-4b3a-90e8-760cc5a26b75" country="US" name="Soldier Field" city="Chicago" state="IL" capacity="61500" surface="turf" type="outdoor" zip="" address=""/>
2655
- <weather temperature="" condition="" humidity="">
2656
- <wind speed="" direction=""/>
2657
- </weather>
2658
- <links>
2659
- <link rel="statistics" href="/2012/REG/12/MIN/CHI/statistics.xml" type="application/xml"/>
2660
- <link rel="summary" href="/2012/REG/12/MIN/CHI/summary.xml" type="application/xml"/>
2661
- <link rel="pbp" href="/2012/REG/12/MIN/CHI/pbp.xml" type="application/xml"/>
2662
- <link rel="boxscore" href="/2012/REG/12/MIN/CHI/boxscore.xml" type="application/xml"/>
2663
- <link rel="roster" href="/2012/REG/12/MIN/CHI/roster.xml" type="application/xml"/>
2664
- <link rel="injuries" href="/2012/REG/12/MIN/CHI/injuries.xml" type="application/xml"/>
2665
- <link rel="depthchart" href="/2012/REG/12/MIN/CHI/depthchart.xml" type="application/xml"/>
2666
- </links>
2667
- </game>
2668
- <game id="ee1f9484-eaf0-429f-a57c-a7c085c2ec1a" scheduled="2012-11-25T18:00:00+00:00" home_rotation="" away_rotation="" home="IND" away="BUF" status="scheduled">
2669
- <venue id="6ed18563-53e0-46c2-a91d-12d73a16456d" country="US" name="Lucas Oil Stadium" city="Indianapolis" state="IN" capacity="67000" surface="artificial" type="retractable_dome" zip="46225" address="500 S. Capitol Avenue"/>
2670
- <weather temperature="" condition="" humidity="">
2671
- <wind speed="" direction=""/>
2672
- </weather>
2673
- <links>
2674
- <link rel="statistics" href="/2012/REG/12/BUF/IND/statistics.xml" type="application/xml"/>
2675
- <link rel="summary" href="/2012/REG/12/BUF/IND/summary.xml" type="application/xml"/>
2676
- <link rel="pbp" href="/2012/REG/12/BUF/IND/pbp.xml" type="application/xml"/>
2677
- <link rel="boxscore" href="/2012/REG/12/BUF/IND/boxscore.xml" type="application/xml"/>
2678
- <link rel="roster" href="/2012/REG/12/BUF/IND/roster.xml" type="application/xml"/>
2679
- <link rel="injuries" href="/2012/REG/12/BUF/IND/injuries.xml" type="application/xml"/>
2680
- <link rel="depthchart" href="/2012/REG/12/BUF/IND/depthchart.xml" type="application/xml"/>
2681
- </links>
2682
- </game>
2683
- <game id="17243217-181d-47c7-8104-4f2c9e4f56b7" scheduled="2012-11-25T18:00:00+00:00" home_rotation="" away_rotation="" home="KC" away="DEN" status="scheduled">
2684
- <venue id="2ec4c411-dac2-403d-b091-6b6aa4a0a914" country="US" name="Arrowhead Stadium" city="Kansas City" state="MO" capacity="79451" surface="turf" type="outdoor" zip="" address=""/>
2685
- <weather temperature="" condition="" humidity="">
2686
- <wind speed="" direction=""/>
2687
- </weather>
2688
- <links>
2689
- <link rel="statistics" href="/2012/REG/12/DEN/KC/statistics.xml" type="application/xml"/>
2690
- <link rel="summary" href="/2012/REG/12/DEN/KC/summary.xml" type="application/xml"/>
2691
- <link rel="pbp" href="/2012/REG/12/DEN/KC/pbp.xml" type="application/xml"/>
2692
- <link rel="boxscore" href="/2012/REG/12/DEN/KC/boxscore.xml" type="application/xml"/>
2693
- <link rel="roster" href="/2012/REG/12/DEN/KC/roster.xml" type="application/xml"/>
2694
- <link rel="injuries" href="/2012/REG/12/DEN/KC/injuries.xml" type="application/xml"/>
2695
- <link rel="depthchart" href="/2012/REG/12/DEN/KC/depthchart.xml" type="application/xml"/>
2696
- </links>
2697
- </game>
2698
- <game id="cbbd12e0-801c-4786-9706-e8f9d3055298" scheduled="2012-11-25T18:00:00+00:00" home_rotation="" away_rotation="" home="CIN" away="OAK" status="scheduled">
2699
- <venue id="b87a1595-d3c8-48ea-8a53-0aab6378a64a" country="US" name="Paul Brown Stadium" city="Cincinnati" state="OH" capacity="65535" surface="artificial" type="outdoor" zip="" address=""/>
2700
- <weather temperature="" condition="" humidity="">
2701
- <wind speed="" direction=""/>
2702
- </weather>
2703
- <links>
2704
- <link rel="statistics" href="/2012/REG/12/OAK/CIN/statistics.xml" type="application/xml"/>
2705
- <link rel="summary" href="/2012/REG/12/OAK/CIN/summary.xml" type="application/xml"/>
2706
- <link rel="pbp" href="/2012/REG/12/OAK/CIN/pbp.xml" type="application/xml"/>
2707
- <link rel="boxscore" href="/2012/REG/12/OAK/CIN/boxscore.xml" type="application/xml"/>
2708
- <link rel="roster" href="/2012/REG/12/OAK/CIN/roster.xml" type="application/xml"/>
2709
- <link rel="injuries" href="/2012/REG/12/OAK/CIN/injuries.xml" type="application/xml"/>
2710
- <link rel="depthchart" href="/2012/REG/12/OAK/CIN/depthchart.xml" type="application/xml"/>
2711
- </links>
2712
- </game>
2713
- <game id="760c7e7e-d20c-4dd1-a416-4ddd49cb5119" scheduled="2012-11-25T18:00:00+00:00" home_rotation="" away_rotation="" home="TB" away="ATL" status="scheduled">
2714
- <venue id="6fccc39c-80bc-4c81-83d9-2d5a848c8c09" country="US" name="Raymond James Stadium" city="Tampa Bay" state="FL" capacity="65657" surface="turf" type="outdoor" zip="" address=""/>
2715
- <weather temperature="" condition="" humidity="">
2716
- <wind speed="" direction=""/>
2717
- </weather>
2718
- <links>
2719
- <link rel="statistics" href="/2012/REG/12/ATL/TB/statistics.xml" type="application/xml"/>
2720
- <link rel="summary" href="/2012/REG/12/ATL/TB/summary.xml" type="application/xml"/>
2721
- <link rel="pbp" href="/2012/REG/12/ATL/TB/pbp.xml" type="application/xml"/>
2722
- <link rel="boxscore" href="/2012/REG/12/ATL/TB/boxscore.xml" type="application/xml"/>
2723
- <link rel="roster" href="/2012/REG/12/ATL/TB/roster.xml" type="application/xml"/>
2724
- <link rel="injuries" href="/2012/REG/12/ATL/TB/injuries.xml" type="application/xml"/>
2725
- <link rel="depthchart" href="/2012/REG/12/ATL/TB/depthchart.xml" type="application/xml"/>
2726
- </links>
2727
- </game>
2728
- <game id="1fb5ee2f-e462-426e-871f-1c1cd66b6d26" scheduled="2012-11-25T18:00:00+00:00" home_rotation="" away_rotation="" home="CLE" away="PIT" status="scheduled">
2729
- <venue id="90c38d91-3774-4f5d-82ca-1c806828219f" country="US" name="Cleveland Browns Stadium" city="Cleveland " state="OH" capacity="73200" surface="artificial" type="outdoor" zip="" address=""/>
2730
- <weather temperature="" condition="" humidity="">
2731
- <wind speed="" direction=""/>
2732
- </weather>
2733
- <links>
2734
- <link rel="statistics" href="/2012/REG/12/PIT/CLE/statistics.xml" type="application/xml"/>
2735
- <link rel="summary" href="/2012/REG/12/PIT/CLE/summary.xml" type="application/xml"/>
2736
- <link rel="pbp" href="/2012/REG/12/PIT/CLE/pbp.xml" type="application/xml"/>
2737
- <link rel="boxscore" href="/2012/REG/12/PIT/CLE/boxscore.xml" type="application/xml"/>
2738
- <link rel="roster" href="/2012/REG/12/PIT/CLE/roster.xml" type="application/xml"/>
2739
- <link rel="injuries" href="/2012/REG/12/PIT/CLE/injuries.xml" type="application/xml"/>
2740
- <link rel="depthchart" href="/2012/REG/12/PIT/CLE/depthchart.xml" type="application/xml"/>
2741
- </links>
2742
- </game>
2743
- <game id="8955d925-41a1-43c3-b642-39a3ba1e3000" scheduled="2012-11-25T18:00:00+00:00" home_rotation="" away_rotation="" home="JAC" away="TEN" status="scheduled">
2744
- <venue id="4c5c036d-dd3d-4183-b595-71a43a97560f" country="US" name="EverBank Field" city="Jacksonville" state="FL" capacity="76877" surface="artificial" type="outdoor" zip="" address=""/>
2745
- <weather temperature="" condition="" humidity="">
2746
- <wind speed="" direction=""/>
2747
- </weather>
2748
- <links>
2749
- <link rel="statistics" href="/2012/REG/12/TEN/JAC/statistics.xml" type="application/xml"/>
2750
- <link rel="summary" href="/2012/REG/12/TEN/JAC/summary.xml" type="application/xml"/>
2751
- <link rel="pbp" href="/2012/REG/12/TEN/JAC/pbp.xml" type="application/xml"/>
2752
- <link rel="boxscore" href="/2012/REG/12/TEN/JAC/boxscore.xml" type="application/xml"/>
2753
- <link rel="roster" href="/2012/REG/12/TEN/JAC/roster.xml" type="application/xml"/>
2754
- <link rel="injuries" href="/2012/REG/12/TEN/JAC/injuries.xml" type="application/xml"/>
2755
- <link rel="depthchart" href="/2012/REG/12/TEN/JAC/depthchart.xml" type="application/xml"/>
2756
- </links>
2757
- </game>
2758
- <game id="56bb0617-5acf-4f91-a42d-2d9d45434426" scheduled="2012-11-25T18:00:00+00:00" home_rotation="" away_rotation="" home="MIA" away="SEA" status="scheduled">
2759
- <venue id="50a5c833-1570-4c38-abc7-7914cf87dbde" country="US" name="Sun Life Stadium" city="Miami Garden" state="FL" capacity="75235" surface="turf" type="outdoor" zip="" address=""/>
2760
- <weather temperature="" condition="" humidity="">
2761
- <wind speed="" direction=""/>
2762
- </weather>
2763
- <links>
2764
- <link rel="statistics" href="/2012/REG/12/SEA/MIA/statistics.xml" type="application/xml"/>
2765
- <link rel="summary" href="/2012/REG/12/SEA/MIA/summary.xml" type="application/xml"/>
2766
- <link rel="pbp" href="/2012/REG/12/SEA/MIA/pbp.xml" type="application/xml"/>
2767
- <link rel="boxscore" href="/2012/REG/12/SEA/MIA/boxscore.xml" type="application/xml"/>
2768
- <link rel="roster" href="/2012/REG/12/SEA/MIA/roster.xml" type="application/xml"/>
2769
- <link rel="injuries" href="/2012/REG/12/SEA/MIA/injuries.xml" type="application/xml"/>
2770
- <link rel="depthchart" href="/2012/REG/12/SEA/MIA/depthchart.xml" type="application/xml"/>
2771
- </links>
2772
- </game>
2773
- <game id="c49c7899-420b-4625-a0fc-61a1049d5922" scheduled="2012-11-25T21:05:00+00:00" home_rotation="" away_rotation="" home="SD" away="BAL" status="scheduled">
2774
- <venue id="7ca47702-8951-45be-a4f5-3e7d78f8f399" country="US" name="Qualcomm Stadium" city="San Diego" state="CA" capacity="71294" surface="turf" type="outdoor" zip="" address=""/>
2775
- <weather temperature="" condition="" humidity="">
2776
- <wind speed="" direction=""/>
2777
- </weather>
2778
- <links>
2779
- <link rel="statistics" href="/2012/REG/12/BAL/SD/statistics.xml" type="application/xml"/>
2780
- <link rel="summary" href="/2012/REG/12/BAL/SD/summary.xml" type="application/xml"/>
2781
- <link rel="pbp" href="/2012/REG/12/BAL/SD/pbp.xml" type="application/xml"/>
2782
- <link rel="boxscore" href="/2012/REG/12/BAL/SD/boxscore.xml" type="application/xml"/>
2783
- <link rel="roster" href="/2012/REG/12/BAL/SD/roster.xml" type="application/xml"/>
2784
- <link rel="injuries" href="/2012/REG/12/BAL/SD/injuries.xml" type="application/xml"/>
2785
- <link rel="depthchart" href="/2012/REG/12/BAL/SD/depthchart.xml" type="application/xml"/>
2786
- </links>
2787
- </game>
2788
- <game id="a57d29bd-8f26-47c7-b24d-5b5ceba1a853" scheduled="2012-11-25T21:15:00+00:00" home_rotation="" away_rotation="" home="ARI" away="STL" status="scheduled">
2789
- <venue id="f8e4d2ab-53f9-4e9f-8c4a-9bc278094a84" country="US" name="University of Phoenix Stadium" city="Glendale" state="AZ" capacity="63400" surface="turf" type="retractable_dome" zip="" address=""/>
2790
- <weather temperature="" condition="" humidity="">
2791
- <wind speed="" direction=""/>
2792
- </weather>
2793
- <links>
2794
- <link rel="statistics" href="/2012/REG/12/STL/ARI/statistics.xml" type="application/xml"/>
2795
- <link rel="summary" href="/2012/REG/12/STL/ARI/summary.xml" type="application/xml"/>
2796
- <link rel="pbp" href="/2012/REG/12/STL/ARI/pbp.xml" type="application/xml"/>
2797
- <link rel="boxscore" href="/2012/REG/12/STL/ARI/boxscore.xml" type="application/xml"/>
2798
- <link rel="roster" href="/2012/REG/12/STL/ARI/roster.xml" type="application/xml"/>
2799
- <link rel="injuries" href="/2012/REG/12/STL/ARI/injuries.xml" type="application/xml"/>
2800
- <link rel="depthchart" href="/2012/REG/12/STL/ARI/depthchart.xml" type="application/xml"/>
2801
- </links>
2802
- </game>
2803
- <game id="9ff6957e-cd97-4e03-a5d0-794dca1543b2" scheduled="2012-11-25T21:15:00+00:00" home_rotation="" away_rotation="" home="NO" away="SF" status="scheduled">
2804
- <venue id="3c85d89a-ec66-4983-acd5-1381d6c8673a" country="US" name="The Mercedes-Benz Superdome" city="New Orleans" state="LA" capacity="72968" surface="artificial" type="dome" zip="" address=""/>
2805
- <weather temperature="" condition="" humidity="">
2806
- <wind speed="" direction=""/>
2807
- </weather>
2808
- <links>
2809
- <link rel="statistics" href="/2012/REG/12/SF/NO/statistics.xml" type="application/xml"/>
2810
- <link rel="summary" href="/2012/REG/12/SF/NO/summary.xml" type="application/xml"/>
2811
- <link rel="pbp" href="/2012/REG/12/SF/NO/pbp.xml" type="application/xml"/>
2812
- <link rel="boxscore" href="/2012/REG/12/SF/NO/boxscore.xml" type="application/xml"/>
2813
- <link rel="roster" href="/2012/REG/12/SF/NO/roster.xml" type="application/xml"/>
2814
- <link rel="injuries" href="/2012/REG/12/SF/NO/injuries.xml" type="application/xml"/>
2815
- <link rel="depthchart" href="/2012/REG/12/SF/NO/depthchart.xml" type="application/xml"/>
2816
- </links>
2817
- </game>
2818
- <game id="db3d08dc-c2e9-4e83-bfef-1a442b36a889" scheduled="2012-11-26T01:20:00+00:00" home_rotation="" away_rotation="" home="NYG" away="GB" status="scheduled">
2819
- <venue id="5d4c85c7-d84e-4e10-bd6a-8a15ebecca5c" country="US" name="MetLife Stadium" city="East Rutherford" state="NJ" capacity="82500" surface="artificial" type="outdoor" zip="" address=""/>
2820
- <weather temperature="" condition="" humidity="">
2821
- <wind speed="" direction=""/>
2822
- </weather>
2823
- <links>
2824
- <link rel="statistics" href="/2012/REG/12/GB/NYG/statistics.xml" type="application/xml"/>
2825
- <link rel="summary" href="/2012/REG/12/GB/NYG/summary.xml" type="application/xml"/>
2826
- <link rel="pbp" href="/2012/REG/12/GB/NYG/pbp.xml" type="application/xml"/>
2827
- <link rel="boxscore" href="/2012/REG/12/GB/NYG/boxscore.xml" type="application/xml"/>
2828
- <link rel="roster" href="/2012/REG/12/GB/NYG/roster.xml" type="application/xml"/>
2829
- <link rel="injuries" href="/2012/REG/12/GB/NYG/injuries.xml" type="application/xml"/>
2830
- <link rel="depthchart" href="/2012/REG/12/GB/NYG/depthchart.xml" type="application/xml"/>
2831
- </links>
2832
- </game>
2833
- <game id="b9fe77e6-2890-4ffc-8af1-12a8e22500e8" scheduled="2012-11-27T01:30:00+00:00" home_rotation="" away_rotation="" home="PHI" away="CAR" status="scheduled">
2834
- <venue id="4fa8c29c-6626-464c-8540-314ed7535e1b" country="US" name="Lincoln Financial Field" city="Philadelphia" state="PA" capacity="68532" surface="turf" type="outdoor" zip="" address=""/>
2835
- <weather temperature="" condition="" humidity="">
2836
- <wind speed="" direction=""/>
2837
- </weather>
2838
- <links>
2839
- <link rel="statistics" href="/2012/REG/12/CAR/PHI/statistics.xml" type="application/xml"/>
2840
- <link rel="summary" href="/2012/REG/12/CAR/PHI/summary.xml" type="application/xml"/>
2841
- <link rel="pbp" href="/2012/REG/12/CAR/PHI/pbp.xml" type="application/xml"/>
2842
- <link rel="boxscore" href="/2012/REG/12/CAR/PHI/boxscore.xml" type="application/xml"/>
2843
- <link rel="roster" href="/2012/REG/12/CAR/PHI/roster.xml" type="application/xml"/>
2844
- <link rel="injuries" href="/2012/REG/12/CAR/PHI/injuries.xml" type="application/xml"/>
2845
- <link rel="depthchart" href="/2012/REG/12/CAR/PHI/depthchart.xml" type="application/xml"/>
2846
- </links>
2847
- </game>
2848
- </week>
2849
- <week week="13">
2850
- <game id="a2e1d22b-af19-4b01-9603-a0619945d86e" scheduled="2012-11-30T01:20:00+00:00" home_rotation="" away_rotation="" home="ATL" away="NO" status="scheduled">
2851
- <venue id="216de6bf-bce0-409a-a9e7-90db8df1f7b9" country="US" name="Georgia Dome" city="Atlanta" state="GA" capacity="71250" surface="artificial" type="dome" zip="" address=""/>
2852
- <weather temperature="" condition="" humidity="">
2853
- <wind speed="" direction=""/>
2854
- </weather>
2855
- <broadcast network="" satellite="" internet="" cable=""/>
2856
- <links>
2857
- <link rel="statistics" href="/2012/REG/13/NO/ATL/statistics.xml" type="application/xml"/>
2858
- <link rel="summary" href="/2012/REG/13/NO/ATL/summary.xml" type="application/xml"/>
2859
- <link rel="pbp" href="/2012/REG/13/NO/ATL/pbp.xml" type="application/xml"/>
2860
- <link rel="boxscore" href="/2012/REG/13/NO/ATL/boxscore.xml" type="application/xml"/>
2861
- <link rel="roster" href="/2012/REG/13/NO/ATL/roster.xml" type="application/xml"/>
2862
- <link rel="injuries" href="/2012/REG/13/NO/ATL/injuries.xml" type="application/xml"/>
2863
- <link rel="depthchart" href="/2012/REG/13/NO/ATL/depthchart.xml" type="application/xml"/>
2864
- </links>
2865
- </game>
2866
- <game id="6a7e4ea1-886b-4b7f-93b4-13f4be468a5b" scheduled="2012-12-02T18:00:00+00:00" home_rotation="" away_rotation="" home="MIA" away="NE" status="scheduled">
2867
- <venue id="50a5c833-1570-4c38-abc7-7914cf87dbde" country="US" name="Sun Life Stadium" city="Miami Garden" state="FL" capacity="75235" surface="turf" type="outdoor" zip="" address=""/>
2868
- <weather temperature="" condition="" humidity="">
2869
- <wind speed="" direction=""/>
2870
- </weather>
2871
- <links>
2872
- <link rel="statistics" href="/2012/REG/13/NE/MIA/statistics.xml" type="application/xml"/>
2873
- <link rel="summary" href="/2012/REG/13/NE/MIA/summary.xml" type="application/xml"/>
2874
- <link rel="pbp" href="/2012/REG/13/NE/MIA/pbp.xml" type="application/xml"/>
2875
- <link rel="boxscore" href="/2012/REG/13/NE/MIA/boxscore.xml" type="application/xml"/>
2876
- <link rel="roster" href="/2012/REG/13/NE/MIA/roster.xml" type="application/xml"/>
2877
- <link rel="injuries" href="/2012/REG/13/NE/MIA/injuries.xml" type="application/xml"/>
2878
- <link rel="depthchart" href="/2012/REG/13/NE/MIA/depthchart.xml" type="application/xml"/>
2879
- </links>
2880
- </game>
2881
- <game id="bf3d482a-b379-47e0-98f8-8cc454c79d2f" scheduled="2012-12-02T18:00:00+00:00" home_rotation="" away_rotation="" home="CHI" away="SEA" status="scheduled">
2882
- <venue id="d7866605-5ac6-4b3a-90e8-760cc5a26b75" country="US" name="Soldier Field" city="Chicago" state="IL" capacity="61500" surface="turf" type="outdoor" zip="" address=""/>
2883
- <weather temperature="" condition="" humidity="">
2884
- <wind speed="" direction=""/>
2885
- </weather>
2886
- <broadcast network="" satellite="" internet="" cable=""/>
2887
- <links>
2888
- <link rel="statistics" href="/2012/REG/13/SEA/CHI/statistics.xml" type="application/xml"/>
2889
- <link rel="summary" href="/2012/REG/13/SEA/CHI/summary.xml" type="application/xml"/>
2890
- <link rel="pbp" href="/2012/REG/13/SEA/CHI/pbp.xml" type="application/xml"/>
2891
- <link rel="boxscore" href="/2012/REG/13/SEA/CHI/boxscore.xml" type="application/xml"/>
2892
- <link rel="roster" href="/2012/REG/13/SEA/CHI/roster.xml" type="application/xml"/>
2893
- <link rel="injuries" href="/2012/REG/13/SEA/CHI/injuries.xml" type="application/xml"/>
2894
- <link rel="depthchart" href="/2012/REG/13/SEA/CHI/depthchart.xml" type="application/xml"/>
2895
- </links>
2896
- </game>
2897
- <game id="7c61d74e-0e99-4224-a004-4eeecceb81b3" scheduled="2012-12-02T18:00:00+00:00" home_rotation="" away_rotation="" home="GB" away="MIN" status="scheduled">
2898
- <venue id="5a60dd3a-302c-41c6-ab0f-dd335c1103c2" country="US" name="Lambeau Field" city="Green Bay" state="WI" capacity="72992" surface="turf" type="outdoor" zip="" address=""/>
2899
- <weather temperature="" condition="" humidity="">
2900
- <wind speed="" direction=""/>
2901
- </weather>
2902
- <links>
2903
- <link rel="statistics" href="/2012/REG/13/MIN/GB/statistics.xml" type="application/xml"/>
2904
- <link rel="summary" href="/2012/REG/13/MIN/GB/summary.xml" type="application/xml"/>
2905
- <link rel="pbp" href="/2012/REG/13/MIN/GB/pbp.xml" type="application/xml"/>
2906
- <link rel="boxscore" href="/2012/REG/13/MIN/GB/boxscore.xml" type="application/xml"/>
2907
- <link rel="roster" href="/2012/REG/13/MIN/GB/roster.xml" type="application/xml"/>
2908
- <link rel="injuries" href="/2012/REG/13/MIN/GB/injuries.xml" type="application/xml"/>
2909
- <link rel="depthchart" href="/2012/REG/13/MIN/GB/depthchart.xml" type="application/xml"/>
2910
- </links>
2911
- </game>
2912
- <game id="c292a1f8-b13f-4b3b-868c-f44b4227aba0" scheduled="2012-12-02T18:00:00+00:00" home_rotation="" away_rotation="" home="STL" away="SF" status="scheduled">
2913
- <venue id="e86a743f-ee77-490f-acfb-3187b7a9633e" country="US" name="Edward Jones Dome" city="St. Louis" state="MO" capacity="65321" surface="artificial" type="dome" zip="" address=""/>
2914
- <weather temperature="" condition="" humidity="">
2915
- <wind speed="" direction=""/>
2916
- </weather>
2917
- <links>
2918
- <link rel="statistics" href="/2012/REG/13/SF/STL/statistics.xml" type="application/xml"/>
2919
- <link rel="summary" href="/2012/REG/13/SF/STL/summary.xml" type="application/xml"/>
2920
- <link rel="pbp" href="/2012/REG/13/SF/STL/pbp.xml" type="application/xml"/>
2921
- <link rel="boxscore" href="/2012/REG/13/SF/STL/boxscore.xml" type="application/xml"/>
2922
- <link rel="roster" href="/2012/REG/13/SF/STL/roster.xml" type="application/xml"/>
2923
- <link rel="injuries" href="/2012/REG/13/SF/STL/injuries.xml" type="application/xml"/>
2924
- <link rel="depthchart" href="/2012/REG/13/SF/STL/depthchart.xml" type="application/xml"/>
2925
- </links>
2926
- </game>
2927
- <game id="183cef2e-5871-4052-811f-abdf0a182a2a" scheduled="2012-12-02T18:00:00+00:00" home_rotation="" away_rotation="" home="TEN" away="HOU" status="scheduled">
2928
- <venue id="5295c1b7-c85c-49cb-9569-1707c65324e5" country="US" name="LP Field" city="Nashville" state="TN" capacity="68798" surface="turf" type="outdoor" zip="" address=""/>
2929
- <weather temperature="" condition="" humidity="">
2930
- <wind speed="" direction=""/>
2931
- </weather>
2932
- <links>
2933
- <link rel="statistics" href="/2012/REG/13/HOU/TEN/statistics.xml" type="application/xml"/>
2934
- <link rel="summary" href="/2012/REG/13/HOU/TEN/summary.xml" type="application/xml"/>
2935
- <link rel="pbp" href="/2012/REG/13/HOU/TEN/pbp.xml" type="application/xml"/>
2936
- <link rel="boxscore" href="/2012/REG/13/HOU/TEN/boxscore.xml" type="application/xml"/>
2937
- <link rel="roster" href="/2012/REG/13/HOU/TEN/roster.xml" type="application/xml"/>
2938
- <link rel="injuries" href="/2012/REG/13/HOU/TEN/injuries.xml" type="application/xml"/>
2939
- <link rel="depthchart" href="/2012/REG/13/HOU/TEN/depthchart.xml" type="application/xml"/>
2940
- </links>
2941
- </game>
2942
- <game id="438931f2-bcde-476b-b00a-8d9e4474c8b1" scheduled="2012-12-02T18:00:00+00:00" home_rotation="" away_rotation="" home="NYJ" away="ARI" status="scheduled">
2943
- <venue id="5d4c85c7-d84e-4e10-bd6a-8a15ebecca5c" country="US" name="MetLife Stadium" city="East Rutherford" state="NJ" capacity="82500" surface="artificial" type="outdoor" zip="" address=""/>
2944
- <weather temperature="" condition="" humidity="">
2945
- <wind speed="" direction=""/>
2946
- </weather>
2947
- <links>
2948
- <link rel="statistics" href="/2012/REG/13/ARI/NYJ/statistics.xml" type="application/xml"/>
2949
- <link rel="summary" href="/2012/REG/13/ARI/NYJ/summary.xml" type="application/xml"/>
2950
- <link rel="pbp" href="/2012/REG/13/ARI/NYJ/pbp.xml" type="application/xml"/>
2951
- <link rel="boxscore" href="/2012/REG/13/ARI/NYJ/boxscore.xml" type="application/xml"/>
2952
- <link rel="roster" href="/2012/REG/13/ARI/NYJ/roster.xml" type="application/xml"/>
2953
- <link rel="injuries" href="/2012/REG/13/ARI/NYJ/injuries.xml" type="application/xml"/>
2954
- <link rel="depthchart" href="/2012/REG/13/ARI/NYJ/depthchart.xml" type="application/xml"/>
2955
- </links>
2956
- </game>
2957
- <game id="c1759708-0f16-4c7c-bff8-a700bbff9237" scheduled="2012-12-02T18:00:00+00:00" home_rotation="" away_rotation="" home="KC" away="CAR" status="scheduled">
2958
- <venue id="2ec4c411-dac2-403d-b091-6b6aa4a0a914" country="US" name="Arrowhead Stadium" city="Kansas City" state="MO" capacity="79451" surface="turf" type="outdoor" zip="" address=""/>
2959
- <weather temperature="" condition="" humidity="">
2960
- <wind speed="" direction=""/>
2961
- </weather>
2962
- <broadcast network="" satellite="" internet="" cable=""/>
2963
- <links>
2964
- <link rel="statistics" href="/2012/REG/13/CAR/KC/statistics.xml" type="application/xml"/>
2965
- <link rel="summary" href="/2012/REG/13/CAR/KC/summary.xml" type="application/xml"/>
2966
- <link rel="pbp" href="/2012/REG/13/CAR/KC/pbp.xml" type="application/xml"/>
2967
- <link rel="boxscore" href="/2012/REG/13/CAR/KC/boxscore.xml" type="application/xml"/>
2968
- <link rel="roster" href="/2012/REG/13/CAR/KC/roster.xml" type="application/xml"/>
2969
- <link rel="injuries" href="/2012/REG/13/CAR/KC/injuries.xml" type="application/xml"/>
2970
- <link rel="depthchart" href="/2012/REG/13/CAR/KC/depthchart.xml" type="application/xml"/>
2971
- </links>
2972
- </game>
2973
- <game id="4e264c9a-353e-42cb-ac09-6186f74cbe2e" scheduled="2012-12-02T18:00:00+00:00" home_rotation="" away_rotation="" home="DET" away="IND" status="scheduled">
2974
- <venue id="6e3bcf22-277d-4c06-b019-62aded51654f" country="US" name="Ford Field" city="Detroit" state="MI" capacity="65000" surface="artificial" type="dome" zip="" address=""/>
2975
- <weather temperature="" condition="" humidity="">
2976
- <wind speed="" direction=""/>
2977
- </weather>
2978
- <links>
2979
- <link rel="statistics" href="/2012/REG/13/IND/DET/statistics.xml" type="application/xml"/>
2980
- <link rel="summary" href="/2012/REG/13/IND/DET/summary.xml" type="application/xml"/>
2981
- <link rel="pbp" href="/2012/REG/13/IND/DET/pbp.xml" type="application/xml"/>
2982
- <link rel="boxscore" href="/2012/REG/13/IND/DET/boxscore.xml" type="application/xml"/>
2983
- <link rel="roster" href="/2012/REG/13/IND/DET/roster.xml" type="application/xml"/>
2984
- <link rel="injuries" href="/2012/REG/13/IND/DET/injuries.xml" type="application/xml"/>
2985
- <link rel="depthchart" href="/2012/REG/13/IND/DET/depthchart.xml" type="application/xml"/>
2986
- </links>
2987
- </game>
2988
- <game id="2cd35039-ba77-47e5-b957-9edef9fcf5a5" scheduled="2012-12-02T18:00:00+00:00" home_rotation="" away_rotation="" home="BUF" away="JAC" status="scheduled">
2989
- <venue id="e9e0828e-37fc-4238-a317-49037577dd55" country="US" name="Ralph Wilson Stadium" city="Orchard Park" state="NY" capacity="73967" surface="artificial" type="outdoor" zip="" address=""/>
2990
- <weather temperature="" condition="" humidity="">
2991
- <wind speed="" direction=""/>
2992
- </weather>
2993
- <links>
2994
- <link rel="statistics" href="/2012/REG/13/JAC/BUF/statistics.xml" type="application/xml"/>
2995
- <link rel="summary" href="/2012/REG/13/JAC/BUF/summary.xml" type="application/xml"/>
2996
- <link rel="pbp" href="/2012/REG/13/JAC/BUF/pbp.xml" type="application/xml"/>
2997
- <link rel="boxscore" href="/2012/REG/13/JAC/BUF/boxscore.xml" type="application/xml"/>
2998
- <link rel="roster" href="/2012/REG/13/JAC/BUF/roster.xml" type="application/xml"/>
2999
- <link rel="injuries" href="/2012/REG/13/JAC/BUF/injuries.xml" type="application/xml"/>
3000
- <link rel="depthchart" href="/2012/REG/13/JAC/BUF/depthchart.xml" type="application/xml"/>
3001
- </links>
3002
- </game>
3003
- <game id="c292b014-4449-4038-97a5-054a5a3414f9" scheduled="2012-12-02T21:05:00+00:00" home_rotation="" away_rotation="" home="DEN" away="TB" status="scheduled">
3004
- <venue id="6589e61d-ef1e-4e30-91b5-9acd2072b8a0" country="US" name="Sports Authority Field at Mile High" city="Denver " state="CO" capacity="76125" surface="turf" type="outdoor" zip="" address=""/>
3005
- <weather temperature="" condition="" humidity="">
3006
- <wind speed="" direction=""/>
3007
- </weather>
3008
- <links>
3009
- <link rel="statistics" href="/2012/REG/13/TB/DEN/statistics.xml" type="application/xml"/>
3010
- <link rel="summary" href="/2012/REG/13/TB/DEN/summary.xml" type="application/xml"/>
3011
- <link rel="pbp" href="/2012/REG/13/TB/DEN/pbp.xml" type="application/xml"/>
3012
- <link rel="boxscore" href="/2012/REG/13/TB/DEN/boxscore.xml" type="application/xml"/>
3013
- <link rel="roster" href="/2012/REG/13/TB/DEN/roster.xml" type="application/xml"/>
3014
- <link rel="injuries" href="/2012/REG/13/TB/DEN/injuries.xml" type="application/xml"/>
3015
- <link rel="depthchart" href="/2012/REG/13/TB/DEN/depthchart.xml" type="application/xml"/>
3016
- </links>
3017
- </game>
3018
- <game id="85c8a7ab-dd06-4d0e-af57-1bab3052b90f" scheduled="2012-12-02T21:15:00+00:00" home_rotation="" away_rotation="" home="BAL" away="PIT" status="scheduled">
3019
- <venue id="d54faae0-0314-484f-8604-9d8dd08e1149" country="US" name="M&amp;T Bank Stadium" city="Baltimore" state="MD" capacity="71008" surface="artificial" type="outdoor" zip="" address=""/>
3020
- <weather temperature="" condition="" humidity="">
3021
- <wind speed="" direction=""/>
3022
- </weather>
3023
- <links>
3024
- <link rel="statistics" href="/2012/REG/13/PIT/BAL/statistics.xml" type="application/xml"/>
3025
- <link rel="summary" href="/2012/REG/13/PIT/BAL/summary.xml" type="application/xml"/>
3026
- <link rel="pbp" href="/2012/REG/13/PIT/BAL/pbp.xml" type="application/xml"/>
3027
- <link rel="boxscore" href="/2012/REG/13/PIT/BAL/boxscore.xml" type="application/xml"/>
3028
- <link rel="roster" href="/2012/REG/13/PIT/BAL/roster.xml" type="application/xml"/>
3029
- <link rel="injuries" href="/2012/REG/13/PIT/BAL/injuries.xml" type="application/xml"/>
3030
- <link rel="depthchart" href="/2012/REG/13/PIT/BAL/depthchart.xml" type="application/xml"/>
3031
- </links>
3032
- </game>
3033
- <game id="afb21bff-f0a7-42e9-ba83-628d9b7b58f1" scheduled="2012-12-02T21:15:00+00:00" home_rotation="" away_rotation="" home="SD" away="CIN" status="scheduled">
3034
- <venue id="7ca47702-8951-45be-a4f5-3e7d78f8f399" country="US" name="Qualcomm Stadium" city="San Diego" state="CA" capacity="71294" surface="turf" type="outdoor" zip="" address=""/>
3035
- <weather temperature="" condition="" humidity="">
3036
- <wind speed="" direction=""/>
3037
- </weather>
3038
- <links>
3039
- <link rel="statistics" href="/2012/REG/13/CIN/SD/statistics.xml" type="application/xml"/>
3040
- <link rel="summary" href="/2012/REG/13/CIN/SD/summary.xml" type="application/xml"/>
3041
- <link rel="pbp" href="/2012/REG/13/CIN/SD/pbp.xml" type="application/xml"/>
3042
- <link rel="boxscore" href="/2012/REG/13/CIN/SD/boxscore.xml" type="application/xml"/>
3043
- <link rel="roster" href="/2012/REG/13/CIN/SD/roster.xml" type="application/xml"/>
3044
- <link rel="injuries" href="/2012/REG/13/CIN/SD/injuries.xml" type="application/xml"/>
3045
- <link rel="depthchart" href="/2012/REG/13/CIN/SD/depthchart.xml" type="application/xml"/>
3046
- </links>
3047
- </game>
3048
- <game id="7e04e3d6-2185-47da-890e-9f6dbddc50c5" scheduled="2012-12-02T21:15:00+00:00" home_rotation="" away_rotation="" home="OAK" away="CLE" status="scheduled">
3049
- <venue id="ba1ad00f-9130-462c-93f9-5612a0015117" country="US" name="Oakland-Alameda County Coliseum" city="Oakland" state="CA" capacity="63026" surface="turf" type="outdoor" zip="" address=""/>
3050
- <weather temperature="" condition="" humidity="">
3051
- <wind speed="" direction=""/>
3052
- </weather>
3053
- <broadcast network="" satellite="" internet="" cable=""/>
3054
- <links>
3055
- <link rel="statistics" href="/2012/REG/13/CLE/OAK/statistics.xml" type="application/xml"/>
3056
- <link rel="summary" href="/2012/REG/13/CLE/OAK/summary.xml" type="application/xml"/>
3057
- <link rel="pbp" href="/2012/REG/13/CLE/OAK/pbp.xml" type="application/xml"/>
3058
- <link rel="boxscore" href="/2012/REG/13/CLE/OAK/boxscore.xml" type="application/xml"/>
3059
- <link rel="roster" href="/2012/REG/13/CLE/OAK/roster.xml" type="application/xml"/>
3060
- <link rel="injuries" href="/2012/REG/13/CLE/OAK/injuries.xml" type="application/xml"/>
3061
- <link rel="depthchart" href="/2012/REG/13/CLE/OAK/depthchart.xml" type="application/xml"/>
3062
- </links>
3063
- </game>
3064
- <game id="f90789da-db58-42c9-b678-b8c9880226f6" scheduled="2012-12-03T01:20:00+00:00" home_rotation="" away_rotation="" home="DAL" away="PHI" status="scheduled">
3065
- <venue id="1e84213a-ff1f-4c9d-a003-8ee782b25a40" country="US" name="Cowboys Stadium" city="Arlington" state="TX" capacity="80000" surface="artificial" type="retractable_dome" zip="" address=""/>
3066
- <weather temperature="" condition="" humidity="">
3067
- <wind speed="" direction=""/>
3068
- </weather>
3069
- <links>
3070
- <link rel="statistics" href="/2012/REG/13/PHI/DAL/statistics.xml" type="application/xml"/>
3071
- <link rel="summary" href="/2012/REG/13/PHI/DAL/summary.xml" type="application/xml"/>
3072
- <link rel="pbp" href="/2012/REG/13/PHI/DAL/pbp.xml" type="application/xml"/>
3073
- <link rel="boxscore" href="/2012/REG/13/PHI/DAL/boxscore.xml" type="application/xml"/>
3074
- <link rel="roster" href="/2012/REG/13/PHI/DAL/roster.xml" type="application/xml"/>
3075
- <link rel="injuries" href="/2012/REG/13/PHI/DAL/injuries.xml" type="application/xml"/>
3076
- <link rel="depthchart" href="/2012/REG/13/PHI/DAL/depthchart.xml" type="application/xml"/>
3077
- </links>
3078
- </game>
3079
- <game id="081ce725-8b29-434f-a328-eff8f1831584" scheduled="2012-12-04T01:30:00+00:00" home_rotation="" away_rotation="" home="WAS" away="NYG" status="scheduled">
3080
- <venue id="7c11bb2d-4a53-4842-b842-0f1c63ed78e9" country="US" name="FedEx Field" city="Hyattsville" state="MD" capacity="91704" surface="turf" type="outdoor" zip="" address=""/>
3081
- <weather temperature="" condition="" humidity="">
3082
- <wind speed="" direction=""/>
3083
- </weather>
3084
- <links>
3085
- <link rel="statistics" href="/2012/REG/13/NYG/WAS/statistics.xml" type="application/xml"/>
3086
- <link rel="summary" href="/2012/REG/13/NYG/WAS/summary.xml" type="application/xml"/>
3087
- <link rel="pbp" href="/2012/REG/13/NYG/WAS/pbp.xml" type="application/xml"/>
3088
- <link rel="boxscore" href="/2012/REG/13/NYG/WAS/boxscore.xml" type="application/xml"/>
3089
- <link rel="roster" href="/2012/REG/13/NYG/WAS/roster.xml" type="application/xml"/>
3090
- <link rel="injuries" href="/2012/REG/13/NYG/WAS/injuries.xml" type="application/xml"/>
3091
- <link rel="depthchart" href="/2012/REG/13/NYG/WAS/depthchart.xml" type="application/xml"/>
3092
- </links>
3093
- </game>
3094
- </week>
3095
- <week week="14">
3096
- <game id="6f19c3f0-2ae8-46d6-a06e-a2daffd4c7b9" scheduled="2012-12-07T01:20:00+00:00" home_rotation="" away_rotation="" home="OAK" away="DEN" status="scheduled">
3097
- <venue id="ba1ad00f-9130-462c-93f9-5612a0015117" country="US" name="Oakland-Alameda County Coliseum" city="Oakland" state="CA" capacity="63026" surface="turf" type="outdoor" zip="" address=""/>
3098
- <weather temperature="" condition="" humidity="">
3099
- <wind speed="" direction=""/>
3100
- </weather>
3101
- <broadcast network="" satellite="" internet="" cable=""/>
3102
- <links>
3103
- <link rel="statistics" href="/2012/REG/14/DEN/OAK/statistics.xml" type="application/xml"/>
3104
- <link rel="summary" href="/2012/REG/14/DEN/OAK/summary.xml" type="application/xml"/>
3105
- <link rel="pbp" href="/2012/REG/14/DEN/OAK/pbp.xml" type="application/xml"/>
3106
- <link rel="boxscore" href="/2012/REG/14/DEN/OAK/boxscore.xml" type="application/xml"/>
3107
- <link rel="roster" href="/2012/REG/14/DEN/OAK/roster.xml" type="application/xml"/>
3108
- <link rel="injuries" href="/2012/REG/14/DEN/OAK/injuries.xml" type="application/xml"/>
3109
- <link rel="depthchart" href="/2012/REG/14/DEN/OAK/depthchart.xml" type="application/xml"/>
3110
- </links>
3111
- </game>
3112
- <game id="3c41f6d2-f4ed-4cd0-9902-cefae66a7f38" scheduled="2012-12-09T18:00:00+00:00" home_rotation="" away_rotation="" home="MIN" away="CHI" status="scheduled">
3113
- <venue id="1fede74c-50a2-4036-a1c0-b4d1e53ca98c" country="US" name="Mall of America Field" city="Minneapolis" state="MN" capacity="64111" surface="artificial" type="dome" zip="" address=""/>
3114
- <weather temperature="" condition="" humidity="">
3115
- <wind speed="" direction=""/>
3116
- </weather>
3117
- <links>
3118
- <link rel="statistics" href="/2012/REG/14/CHI/MIN/statistics.xml" type="application/xml"/>
3119
- <link rel="summary" href="/2012/REG/14/CHI/MIN/summary.xml" type="application/xml"/>
3120
- <link rel="pbp" href="/2012/REG/14/CHI/MIN/pbp.xml" type="application/xml"/>
3121
- <link rel="boxscore" href="/2012/REG/14/CHI/MIN/boxscore.xml" type="application/xml"/>
3122
- <link rel="roster" href="/2012/REG/14/CHI/MIN/roster.xml" type="application/xml"/>
3123
- <link rel="injuries" href="/2012/REG/14/CHI/MIN/injuries.xml" type="application/xml"/>
3124
- <link rel="depthchart" href="/2012/REG/14/CHI/MIN/depthchart.xml" type="application/xml"/>
3125
- </links>
3126
- </game>
3127
- <game id="de119a69-a16e-47d8-9a64-f769a09564e1" scheduled="2012-12-09T18:00:00+00:00" home_rotation="" away_rotation="" home="CIN" away="DAL" status="scheduled">
3128
- <venue id="b87a1595-d3c8-48ea-8a53-0aab6378a64a" country="US" name="Paul Brown Stadium" city="Cincinnati" state="OH" capacity="65535" surface="artificial" type="outdoor" zip="" address=""/>
3129
- <weather temperature="" condition="" humidity="">
3130
- <wind speed="" direction=""/>
3131
- </weather>
3132
- <links>
3133
- <link rel="statistics" href="/2012/REG/14/DAL/CIN/statistics.xml" type="application/xml"/>
3134
- <link rel="summary" href="/2012/REG/14/DAL/CIN/summary.xml" type="application/xml"/>
3135
- <link rel="pbp" href="/2012/REG/14/DAL/CIN/pbp.xml" type="application/xml"/>
3136
- <link rel="boxscore" href="/2012/REG/14/DAL/CIN/boxscore.xml" type="application/xml"/>
3137
- <link rel="roster" href="/2012/REG/14/DAL/CIN/roster.xml" type="application/xml"/>
3138
- <link rel="injuries" href="/2012/REG/14/DAL/CIN/injuries.xml" type="application/xml"/>
3139
- <link rel="depthchart" href="/2012/REG/14/DAL/CIN/depthchart.xml" type="application/xml"/>
3140
- </links>
3141
- </game>
3142
- <game id="72e6a09f-708d-463e-9d8f-c3fca1bed7b2" scheduled="2012-12-09T18:00:00+00:00" home_rotation="" away_rotation="" home="JAC" away="NYJ" status="scheduled">
3143
- <venue id="4c5c036d-dd3d-4183-b595-71a43a97560f" country="US" name="EverBank Field" city="Jacksonville" state="FL" capacity="76877" surface="artificial" type="outdoor" zip="" address=""/>
3144
- <weather temperature="" condition="" humidity="">
3145
- <wind speed="" direction=""/>
3146
- </weather>
3147
- <links>
3148
- <link rel="statistics" href="/2012/REG/14/NYJ/JAC/statistics.xml" type="application/xml"/>
3149
- <link rel="summary" href="/2012/REG/14/NYJ/JAC/summary.xml" type="application/xml"/>
3150
- <link rel="pbp" href="/2012/REG/14/NYJ/JAC/pbp.xml" type="application/xml"/>
3151
- <link rel="boxscore" href="/2012/REG/14/NYJ/JAC/boxscore.xml" type="application/xml"/>
3152
- <link rel="roster" href="/2012/REG/14/NYJ/JAC/roster.xml" type="application/xml"/>
3153
- <link rel="injuries" href="/2012/REG/14/NYJ/JAC/injuries.xml" type="application/xml"/>
3154
- <link rel="depthchart" href="/2012/REG/14/NYJ/JAC/depthchart.xml" type="application/xml"/>
3155
- </links>
3156
- </game>
3157
- <game id="947c3359-fb46-4c50-8207-33a43a35c155" scheduled="2012-12-09T18:00:00+00:00" home_rotation="" away_rotation="" home="TB" away="PHI" status="scheduled">
3158
- <venue id="6fccc39c-80bc-4c81-83d9-2d5a848c8c09" country="US" name="Raymond James Stadium" city="Tampa Bay" state="FL" capacity="65657" surface="turf" type="outdoor" zip="" address=""/>
3159
- <weather temperature="" condition="" humidity="">
3160
- <wind speed="" direction=""/>
3161
- </weather>
3162
- <links>
3163
- <link rel="statistics" href="/2012/REG/14/PHI/TB/statistics.xml" type="application/xml"/>
3164
- <link rel="summary" href="/2012/REG/14/PHI/TB/summary.xml" type="application/xml"/>
3165
- <link rel="pbp" href="/2012/REG/14/PHI/TB/pbp.xml" type="application/xml"/>
3166
- <link rel="boxscore" href="/2012/REG/14/PHI/TB/boxscore.xml" type="application/xml"/>
3167
- <link rel="roster" href="/2012/REG/14/PHI/TB/roster.xml" type="application/xml"/>
3168
- <link rel="injuries" href="/2012/REG/14/PHI/TB/injuries.xml" type="application/xml"/>
3169
- <link rel="depthchart" href="/2012/REG/14/PHI/TB/depthchart.xml" type="application/xml"/>
3170
- </links>
3171
- </game>
3172
- <game id="5178e12e-5597-449d-9b39-126a7c8fed33" scheduled="2012-12-09T18:00:00+00:00" home_rotation="" away_rotation="" home="IND" away="TEN" status="scheduled">
3173
- <venue id="6ed18563-53e0-46c2-a91d-12d73a16456d" country="US" name="Lucas Oil Stadium" city="Indianapolis" state="IN" capacity="67000" surface="artificial" type="retractable_dome" zip="46225" address="500 S. Capitol Avenue"/>
3174
- <weather temperature="" condition="" humidity="">
3175
- <wind speed="" direction=""/>
3176
- </weather>
3177
- <links>
3178
- <link rel="statistics" href="/2012/REG/14/TEN/IND/statistics.xml" type="application/xml"/>
3179
- <link rel="summary" href="/2012/REG/14/TEN/IND/summary.xml" type="application/xml"/>
3180
- <link rel="pbp" href="/2012/REG/14/TEN/IND/pbp.xml" type="application/xml"/>
3181
- <link rel="boxscore" href="/2012/REG/14/TEN/IND/boxscore.xml" type="application/xml"/>
3182
- <link rel="roster" href="/2012/REG/14/TEN/IND/roster.xml" type="application/xml"/>
3183
- <link rel="injuries" href="/2012/REG/14/TEN/IND/injuries.xml" type="application/xml"/>
3184
- <link rel="depthchart" href="/2012/REG/14/TEN/IND/depthchart.xml" type="application/xml"/>
3185
- </links>
3186
- </game>
3187
- <game id="4c2f059d-3c1f-4420-8a0f-a3917431ab67" scheduled="2012-12-09T18:00:00+00:00" home_rotation="" away_rotation="" home="CAR" away="ATL" status="scheduled">
3188
- <venue id="39be9ed4-3292-49ac-8699-a381de3a4969" country="US" name="Bank of America Stadium" city="Charlotte" state="NC" capacity="73778" surface="turf" type="outdoor" zip="" address=""/>
3189
- <weather temperature="" condition="" humidity="">
3190
- <wind speed="" direction=""/>
3191
- </weather>
3192
- <links>
3193
- <link rel="statistics" href="/2012/REG/14/ATL/CAR/statistics.xml" type="application/xml"/>
3194
- <link rel="summary" href="/2012/REG/14/ATL/CAR/summary.xml" type="application/xml"/>
3195
- <link rel="pbp" href="/2012/REG/14/ATL/CAR/pbp.xml" type="application/xml"/>
3196
- <link rel="boxscore" href="/2012/REG/14/ATL/CAR/boxscore.xml" type="application/xml"/>
3197
- <link rel="roster" href="/2012/REG/14/ATL/CAR/roster.xml" type="application/xml"/>
3198
- <link rel="injuries" href="/2012/REG/14/ATL/CAR/injuries.xml" type="application/xml"/>
3199
- <link rel="depthchart" href="/2012/REG/14/ATL/CAR/depthchart.xml" type="application/xml"/>
3200
- </links>
3201
- </game>
3202
- <game id="303a0070-3bf7-495a-89a5-314fd63f1e09" scheduled="2012-12-09T18:00:00+00:00" home_rotation="" away_rotation="" home="CLE" away="KC" status="scheduled">
3203
- <venue id="90c38d91-3774-4f5d-82ca-1c806828219f" country="US" name="Cleveland Browns Stadium" city="Cleveland " state="OH" capacity="73200" surface="artificial" type="outdoor" zip="" address=""/>
3204
- <weather temperature="" condition="" humidity="">
3205
- <wind speed="" direction=""/>
3206
- </weather>
3207
- <links>
3208
- <link rel="statistics" href="/2012/REG/14/KC/CLE/statistics.xml" type="application/xml"/>
3209
- <link rel="summary" href="/2012/REG/14/KC/CLE/summary.xml" type="application/xml"/>
3210
- <link rel="pbp" href="/2012/REG/14/KC/CLE/pbp.xml" type="application/xml"/>
3211
- <link rel="boxscore" href="/2012/REG/14/KC/CLE/boxscore.xml" type="application/xml"/>
3212
- <link rel="roster" href="/2012/REG/14/KC/CLE/roster.xml" type="application/xml"/>
3213
- <link rel="injuries" href="/2012/REG/14/KC/CLE/injuries.xml" type="application/xml"/>
3214
- <link rel="depthchart" href="/2012/REG/14/KC/CLE/depthchart.xml" type="application/xml"/>
3215
- </links>
3216
- </game>
3217
- <game id="5aa70166-f140-4669-9345-fa429d2e9ea4" scheduled="2012-12-09T18:00:00+00:00" home_rotation="" away_rotation="" home="PIT" away="SD" status="scheduled">
3218
- <venue id="7349a2e6-0ac9-410b-8bd2-ca58c9f7aa34" country="US" name="Heinz Field" city="Pittsburgh" state="PA" capacity="65050" surface="turf" type="outdoor" zip="" address=""/>
3219
- <weather temperature="" condition="" humidity="">
3220
- <wind speed="" direction=""/>
3221
- </weather>
3222
- <links>
3223
- <link rel="statistics" href="/2012/REG/14/SD/PIT/statistics.xml" type="application/xml"/>
3224
- <link rel="summary" href="/2012/REG/14/SD/PIT/summary.xml" type="application/xml"/>
3225
- <link rel="pbp" href="/2012/REG/14/SD/PIT/pbp.xml" type="application/xml"/>
3226
- <link rel="boxscore" href="/2012/REG/14/SD/PIT/boxscore.xml" type="application/xml"/>
3227
- <link rel="roster" href="/2012/REG/14/SD/PIT/roster.xml" type="application/xml"/>
3228
- <link rel="injuries" href="/2012/REG/14/SD/PIT/injuries.xml" type="application/xml"/>
3229
- <link rel="depthchart" href="/2012/REG/14/SD/PIT/depthchart.xml" type="application/xml"/>
3230
- </links>
3231
- </game>
3232
- <game id="4c5f684d-113e-451c-9284-f1b22727d740" scheduled="2012-12-09T18:00:00+00:00" home_rotation="" away_rotation="" home="BUF" away="STL" status="scheduled">
3233
- <venue id="e9e0828e-37fc-4238-a317-49037577dd55" country="US" name="Ralph Wilson Stadium" city="Orchard Park" state="NY" capacity="73967" surface="artificial" type="outdoor" zip="" address=""/>
3234
- <weather temperature="" condition="" humidity="">
3235
- <wind speed="" direction=""/>
3236
- </weather>
3237
- <links>
3238
- <link rel="statistics" href="/2012/REG/14/STL/BUF/statistics.xml" type="application/xml"/>
3239
- <link rel="summary" href="/2012/REG/14/STL/BUF/summary.xml" type="application/xml"/>
3240
- <link rel="pbp" href="/2012/REG/14/STL/BUF/pbp.xml" type="application/xml"/>
3241
- <link rel="boxscore" href="/2012/REG/14/STL/BUF/boxscore.xml" type="application/xml"/>
3242
- <link rel="roster" href="/2012/REG/14/STL/BUF/roster.xml" type="application/xml"/>
3243
- <link rel="injuries" href="/2012/REG/14/STL/BUF/injuries.xml" type="application/xml"/>
3244
- <link rel="depthchart" href="/2012/REG/14/STL/BUF/depthchart.xml" type="application/xml"/>
3245
- </links>
3246
- </game>
3247
- <game id="5bd42766-5b91-4763-a8fe-0df3b25e016f" scheduled="2012-12-09T18:00:00+00:00" home_rotation="" away_rotation="" home="WAS" away="BAL" status="scheduled">
3248
- <venue id="7c11bb2d-4a53-4842-b842-0f1c63ed78e9" country="US" name="FedEx Field" city="Hyattsville" state="MD" capacity="91704" surface="turf" type="outdoor" zip="" address=""/>
3249
- <weather temperature="" condition="" humidity="">
3250
- <wind speed="" direction=""/>
3251
- </weather>
3252
- <links>
3253
- <link rel="statistics" href="/2012/REG/14/BAL/WAS/statistics.xml" type="application/xml"/>
3254
- <link rel="summary" href="/2012/REG/14/BAL/WAS/summary.xml" type="application/xml"/>
3255
- <link rel="pbp" href="/2012/REG/14/BAL/WAS/pbp.xml" type="application/xml"/>
3256
- <link rel="boxscore" href="/2012/REG/14/BAL/WAS/boxscore.xml" type="application/xml"/>
3257
- <link rel="roster" href="/2012/REG/14/BAL/WAS/roster.xml" type="application/xml"/>
3258
- <link rel="injuries" href="/2012/REG/14/BAL/WAS/injuries.xml" type="application/xml"/>
3259
- <link rel="depthchart" href="/2012/REG/14/BAL/WAS/depthchart.xml" type="application/xml"/>
3260
- </links>
3261
- </game>
3262
- <game id="3519d8b2-c742-4f89-9437-6a8f1917c925" scheduled="2012-12-09T21:05:00+00:00" home_rotation="" away_rotation="" home="SF" away="MIA" status="scheduled">
3263
- <venue id="6701808c-c329-482b-9834-2d29cb3185ff" country="US" name="Candlestick Park" city="San Francisco" state="CA" capacity="70207" surface="turf" type="outdoor" zip="" address=""/>
3264
- <weather temperature="" condition="" humidity="">
3265
- <wind speed="" direction=""/>
3266
- </weather>
3267
- <links>
3268
- <link rel="statistics" href="/2012/REG/14/MIA/SF/statistics.xml" type="application/xml"/>
3269
- <link rel="summary" href="/2012/REG/14/MIA/SF/summary.xml" type="application/xml"/>
3270
- <link rel="pbp" href="/2012/REG/14/MIA/SF/pbp.xml" type="application/xml"/>
3271
- <link rel="boxscore" href="/2012/REG/14/MIA/SF/boxscore.xml" type="application/xml"/>
3272
- <link rel="roster" href="/2012/REG/14/MIA/SF/roster.xml" type="application/xml"/>
3273
- <link rel="injuries" href="/2012/REG/14/MIA/SF/injuries.xml" type="application/xml"/>
3274
- <link rel="depthchart" href="/2012/REG/14/MIA/SF/depthchart.xml" type="application/xml"/>
3275
- </links>
3276
- </game>
3277
- <game id="4c56a20f-46d6-47af-a86e-daefb14fbe8a" scheduled="2012-12-09T21:15:00+00:00" home_rotation="" away_rotation="" home="NYG" away="NO" status="scheduled">
3278
- <venue id="5d4c85c7-d84e-4e10-bd6a-8a15ebecca5c" country="US" name="MetLife Stadium" city="East Rutherford" state="NJ" capacity="82500" surface="artificial" type="outdoor" zip="" address=""/>
3279
- <weather temperature="" condition="" humidity="">
3280
- <wind speed="" direction=""/>
3281
- </weather>
3282
- <links>
3283
- <link rel="statistics" href="/2012/REG/14/NO/NYG/statistics.xml" type="application/xml"/>
3284
- <link rel="summary" href="/2012/REG/14/NO/NYG/summary.xml" type="application/xml"/>
3285
- <link rel="pbp" href="/2012/REG/14/NO/NYG/pbp.xml" type="application/xml"/>
3286
- <link rel="boxscore" href="/2012/REG/14/NO/NYG/boxscore.xml" type="application/xml"/>
3287
- <link rel="roster" href="/2012/REG/14/NO/NYG/roster.xml" type="application/xml"/>
3288
- <link rel="injuries" href="/2012/REG/14/NO/NYG/injuries.xml" type="application/xml"/>
3289
- <link rel="depthchart" href="/2012/REG/14/NO/NYG/depthchart.xml" type="application/xml"/>
3290
- </links>
3291
- </game>
3292
- <game id="47d76252-33bb-45aa-b0ef-724a702d2d28" scheduled="2012-12-09T21:15:00+00:00" home_rotation="" away_rotation="" home="SEA" away="ARI" status="scheduled">
3293
- <venue id="c6b9e5df-c9e4-434c-b3e6-83928f11cbda" country="US" name="Qwest Field" city="Seattle" state="WA" capacity="67000" surface="artificial" type="outdoor" zip="" address=""/>
3294
- <weather temperature="" condition="" humidity="">
3295
- <wind speed="" direction=""/>
3296
- </weather>
3297
- <links>
3298
- <link rel="statistics" href="/2012/REG/14/ARI/SEA/statistics.xml" type="application/xml"/>
3299
- <link rel="summary" href="/2012/REG/14/ARI/SEA/summary.xml" type="application/xml"/>
3300
- <link rel="pbp" href="/2012/REG/14/ARI/SEA/pbp.xml" type="application/xml"/>
3301
- <link rel="boxscore" href="/2012/REG/14/ARI/SEA/boxscore.xml" type="application/xml"/>
3302
- <link rel="roster" href="/2012/REG/14/ARI/SEA/roster.xml" type="application/xml"/>
3303
- <link rel="injuries" href="/2012/REG/14/ARI/SEA/injuries.xml" type="application/xml"/>
3304
- <link rel="depthchart" href="/2012/REG/14/ARI/SEA/depthchart.xml" type="application/xml"/>
3305
- </links>
3306
- </game>
3307
- <game id="a713208c-0330-401e-8a8d-b40417e33bf9" scheduled="2012-12-10T01:20:00+00:00" home_rotation="" away_rotation="" home="GB" away="DET" status="scheduled">
3308
- <venue id="5a60dd3a-302c-41c6-ab0f-dd335c1103c2" country="US" name="Lambeau Field" city="Green Bay" state="WI" capacity="72992" surface="turf" type="outdoor" zip="" address=""/>
3309
- <weather temperature="" condition="" humidity="">
3310
- <wind speed="" direction=""/>
3311
- </weather>
3312
- <links>
3313
- <link rel="statistics" href="/2012/REG/14/DET/GB/statistics.xml" type="application/xml"/>
3314
- <link rel="summary" href="/2012/REG/14/DET/GB/summary.xml" type="application/xml"/>
3315
- <link rel="pbp" href="/2012/REG/14/DET/GB/pbp.xml" type="application/xml"/>
3316
- <link rel="boxscore" href="/2012/REG/14/DET/GB/boxscore.xml" type="application/xml"/>
3317
- <link rel="roster" href="/2012/REG/14/DET/GB/roster.xml" type="application/xml"/>
3318
- <link rel="injuries" href="/2012/REG/14/DET/GB/injuries.xml" type="application/xml"/>
3319
- <link rel="depthchart" href="/2012/REG/14/DET/GB/depthchart.xml" type="application/xml"/>
3320
- </links>
3321
- </game>
3322
- <game id="bfbe0676-cdde-48bf-9c68-51df8e467789" scheduled="2012-12-11T01:30:00+00:00" home_rotation="" away_rotation="" home="NE" away="HOU" status="scheduled">
3323
- <venue id="e43310b1-cb82-4df9-8be5-e9b39637031b" country="US" name="Gillette Stadium" city="Foxborough" state="MA" capacity="68756" surface="turf" type="outdoor" zip="" address=""/>
3324
- <weather temperature="" condition="" humidity="">
3325
- <wind speed="" direction=""/>
3326
- </weather>
3327
- <links>
3328
- <link rel="statistics" href="/2012/REG/14/HOU/NE/statistics.xml" type="application/xml"/>
3329
- <link rel="summary" href="/2012/REG/14/HOU/NE/summary.xml" type="application/xml"/>
3330
- <link rel="pbp" href="/2012/REG/14/HOU/NE/pbp.xml" type="application/xml"/>
3331
- <link rel="boxscore" href="/2012/REG/14/HOU/NE/boxscore.xml" type="application/xml"/>
3332
- <link rel="roster" href="/2012/REG/14/HOU/NE/roster.xml" type="application/xml"/>
3333
- <link rel="injuries" href="/2012/REG/14/HOU/NE/injuries.xml" type="application/xml"/>
3334
- <link rel="depthchart" href="/2012/REG/14/HOU/NE/depthchart.xml" type="application/xml"/>
3335
- </links>
3336
- </game>
3337
- </week>
3338
- <week week="15">
3339
- <game id="afdc4098-450e-4f77-9cea-845e04fd0f07" scheduled="2012-12-14T01:20:00+00:00" home_rotation="" away_rotation="" home="PHI" away="CIN" status="scheduled">
3340
- <venue id="4fa8c29c-6626-464c-8540-314ed7535e1b" country="US" name="Lincoln Financial Field" city="Philadelphia" state="PA" capacity="68532" surface="turf" type="outdoor" zip="" address=""/>
3341
- <weather temperature="" condition="" humidity="">
3342
- <wind speed="" direction=""/>
3343
- </weather>
3344
- <broadcast network="" satellite="" internet="" cable=""/>
3345
- <links>
3346
- <link rel="statistics" href="/2012/REG/15/CIN/PHI/statistics.xml" type="application/xml"/>
3347
- <link rel="summary" href="/2012/REG/15/CIN/PHI/summary.xml" type="application/xml"/>
3348
- <link rel="pbp" href="/2012/REG/15/CIN/PHI/pbp.xml" type="application/xml"/>
3349
- <link rel="boxscore" href="/2012/REG/15/CIN/PHI/boxscore.xml" type="application/xml"/>
3350
- <link rel="roster" href="/2012/REG/15/CIN/PHI/roster.xml" type="application/xml"/>
3351
- <link rel="injuries" href="/2012/REG/15/CIN/PHI/injuries.xml" type="application/xml"/>
3352
- <link rel="depthchart" href="/2012/REG/15/CIN/PHI/depthchart.xml" type="application/xml"/>
3353
- </links>
3354
- </game>
3355
- <game id="6d3e96ef-95f8-43ab-a75c-86f034ce9d1a" scheduled="2012-12-16T18:00:00+00:00" home_rotation="" away_rotation="" home="CHI" away="GB" status="scheduled">
3356
- <venue id="d7866605-5ac6-4b3a-90e8-760cc5a26b75" country="US" name="Soldier Field" city="Chicago" state="IL" capacity="61500" surface="turf" type="outdoor" zip="" address=""/>
3357
- <weather temperature="" condition="" humidity="">
3358
- <wind speed="" direction=""/>
3359
- </weather>
3360
- <links>
3361
- <link rel="statistics" href="/2012/REG/15/GB/CHI/statistics.xml" type="application/xml"/>
3362
- <link rel="summary" href="/2012/REG/15/GB/CHI/summary.xml" type="application/xml"/>
3363
- <link rel="pbp" href="/2012/REG/15/GB/CHI/pbp.xml" type="application/xml"/>
3364
- <link rel="boxscore" href="/2012/REG/15/GB/CHI/boxscore.xml" type="application/xml"/>
3365
- <link rel="roster" href="/2012/REG/15/GB/CHI/roster.xml" type="application/xml"/>
3366
- <link rel="injuries" href="/2012/REG/15/GB/CHI/injuries.xml" type="application/xml"/>
3367
- <link rel="depthchart" href="/2012/REG/15/GB/CHI/depthchart.xml" type="application/xml"/>
3368
- </links>
3369
- </game>
3370
- <game id="80a84713-7b41-4958-a562-55810e2859df" scheduled="2012-12-16T18:00:00+00:00" home_rotation="" away_rotation="" home="ATL" away="NYG" status="scheduled">
3371
- <venue id="216de6bf-bce0-409a-a9e7-90db8df1f7b9" country="US" name="Georgia Dome" city="Atlanta" state="GA" capacity="71250" surface="artificial" type="dome" zip="" address=""/>
3372
- <weather temperature="" condition="" humidity="">
3373
- <wind speed="" direction=""/>
3374
- </weather>
3375
- <links>
3376
- <link rel="statistics" href="/2012/REG/15/NYG/ATL/statistics.xml" type="application/xml"/>
3377
- <link rel="summary" href="/2012/REG/15/NYG/ATL/summary.xml" type="application/xml"/>
3378
- <link rel="pbp" href="/2012/REG/15/NYG/ATL/pbp.xml" type="application/xml"/>
3379
- <link rel="boxscore" href="/2012/REG/15/NYG/ATL/boxscore.xml" type="application/xml"/>
3380
- <link rel="roster" href="/2012/REG/15/NYG/ATL/roster.xml" type="application/xml"/>
3381
- <link rel="injuries" href="/2012/REG/15/NYG/ATL/injuries.xml" type="application/xml"/>
3382
- <link rel="depthchart" href="/2012/REG/15/NYG/ATL/depthchart.xml" type="application/xml"/>
3383
- </links>
3384
- </game>
3385
- <game id="e41e41f0-e80d-42af-898e-d13919de97dd" scheduled="2012-12-16T18:00:00+00:00" home_rotation="" away_rotation="" home="BAL" away="DEN" status="scheduled">
3386
- <venue id="d54faae0-0314-484f-8604-9d8dd08e1149" country="US" name="M&amp;T Bank Stadium" city="Baltimore" state="MD" capacity="71008" surface="artificial" type="outdoor" zip="" address=""/>
3387
- <weather temperature="" condition="" humidity="">
3388
- <wind speed="" direction=""/>
3389
- </weather>
3390
- <links>
3391
- <link rel="statistics" href="/2012/REG/15/DEN/BAL/statistics.xml" type="application/xml"/>
3392
- <link rel="summary" href="/2012/REG/15/DEN/BAL/summary.xml" type="application/xml"/>
3393
- <link rel="pbp" href="/2012/REG/15/DEN/BAL/pbp.xml" type="application/xml"/>
3394
- <link rel="boxscore" href="/2012/REG/15/DEN/BAL/boxscore.xml" type="application/xml"/>
3395
- <link rel="roster" href="/2012/REG/15/DEN/BAL/roster.xml" type="application/xml"/>
3396
- <link rel="injuries" href="/2012/REG/15/DEN/BAL/injuries.xml" type="application/xml"/>
3397
- <link rel="depthchart" href="/2012/REG/15/DEN/BAL/depthchart.xml" type="application/xml"/>
3398
- </links>
3399
- </game>
3400
- <game id="19314aea-7cd2-444a-b3ab-a7c784e28542" scheduled="2012-12-16T18:00:00+00:00" home_rotation="" away_rotation="" home="STL" away="MIN" status="scheduled">
3401
- <venue id="e86a743f-ee77-490f-acfb-3187b7a9633e" country="US" name="Edward Jones Dome" city="St. Louis" state="MO" capacity="65321" surface="artificial" type="dome" zip="" address=""/>
3402
- <weather temperature="" condition="" humidity="">
3403
- <wind speed="" direction=""/>
3404
- </weather>
3405
- <links>
3406
- <link rel="statistics" href="/2012/REG/15/MIN/STL/statistics.xml" type="application/xml"/>
3407
- <link rel="summary" href="/2012/REG/15/MIN/STL/summary.xml" type="application/xml"/>
3408
- <link rel="pbp" href="/2012/REG/15/MIN/STL/pbp.xml" type="application/xml"/>
3409
- <link rel="boxscore" href="/2012/REG/15/MIN/STL/boxscore.xml" type="application/xml"/>
3410
- <link rel="roster" href="/2012/REG/15/MIN/STL/roster.xml" type="application/xml"/>
3411
- <link rel="injuries" href="/2012/REG/15/MIN/STL/injuries.xml" type="application/xml"/>
3412
- <link rel="depthchart" href="/2012/REG/15/MIN/STL/depthchart.xml" type="application/xml"/>
3413
- </links>
3414
- </game>
3415
- <game id="016b3fd8-f683-42f5-a06f-0dee018bd327" scheduled="2012-12-16T18:00:00+00:00" home_rotation="" away_rotation="" home="NO" away="TB" status="scheduled">
3416
- <venue id="3c85d89a-ec66-4983-acd5-1381d6c8673a" country="US" name="The Mercedes-Benz Superdome" city="New Orleans" state="LA" capacity="72968" surface="artificial" type="dome" zip="" address=""/>
3417
- <weather temperature="" condition="" humidity="">
3418
- <wind speed="" direction=""/>
3419
- </weather>
3420
- <links>
3421
- <link rel="statistics" href="/2012/REG/15/TB/NO/statistics.xml" type="application/xml"/>
3422
- <link rel="summary" href="/2012/REG/15/TB/NO/summary.xml" type="application/xml"/>
3423
- <link rel="pbp" href="/2012/REG/15/TB/NO/pbp.xml" type="application/xml"/>
3424
- <link rel="boxscore" href="/2012/REG/15/TB/NO/boxscore.xml" type="application/xml"/>
3425
- <link rel="roster" href="/2012/REG/15/TB/NO/roster.xml" type="application/xml"/>
3426
- <link rel="injuries" href="/2012/REG/15/TB/NO/injuries.xml" type="application/xml"/>
3427
- <link rel="depthchart" href="/2012/REG/15/TB/NO/depthchart.xml" type="application/xml"/>
3428
- </links>
3429
- </game>
3430
- <game id="a2647c98-2967-496c-9bd4-82850a11c877" scheduled="2012-12-16T18:00:00+00:00" home_rotation="" away_rotation="" home="HOU" away="IND" status="scheduled">
3431
- <venue id="6a72e5ca-33d0-40af-8e6b-b32a4d3d9346" country="US" name="Reliant Stadium" city="Houston" state="TX" capacity="71500" surface="turf" type="retractable_dome" zip="" address=""/>
3432
- <weather temperature="" condition="" humidity="">
3433
- <wind speed="" direction=""/>
3434
- </weather>
3435
- <links>
3436
- <link rel="statistics" href="/2012/REG/15/IND/HOU/statistics.xml" type="application/xml"/>
3437
- <link rel="summary" href="/2012/REG/15/IND/HOU/summary.xml" type="application/xml"/>
3438
- <link rel="pbp" href="/2012/REG/15/IND/HOU/pbp.xml" type="application/xml"/>
3439
- <link rel="boxscore" href="/2012/REG/15/IND/HOU/boxscore.xml" type="application/xml"/>
3440
- <link rel="roster" href="/2012/REG/15/IND/HOU/roster.xml" type="application/xml"/>
3441
- <link rel="injuries" href="/2012/REG/15/IND/HOU/injuries.xml" type="application/xml"/>
3442
- <link rel="depthchart" href="/2012/REG/15/IND/HOU/depthchart.xml" type="application/xml"/>
3443
- </links>
3444
- </game>
3445
- <game id="1e92fc1e-917f-44ec-807c-fc04a679210e" scheduled="2012-12-16T18:00:00+00:00" home_rotation="" away_rotation="" home="MIA" away="JAC" status="scheduled">
3446
- <venue id="50a5c833-1570-4c38-abc7-7914cf87dbde" country="US" name="Sun Life Stadium" city="Miami Garden" state="FL" capacity="75235" surface="turf" type="outdoor" zip="" address=""/>
3447
- <weather temperature="" condition="" humidity="">
3448
- <wind speed="" direction=""/>
3449
- </weather>
3450
- <links>
3451
- <link rel="statistics" href="/2012/REG/15/JAC/MIA/statistics.xml" type="application/xml"/>
3452
- <link rel="summary" href="/2012/REG/15/JAC/MIA/summary.xml" type="application/xml"/>
3453
- <link rel="pbp" href="/2012/REG/15/JAC/MIA/pbp.xml" type="application/xml"/>
3454
- <link rel="boxscore" href="/2012/REG/15/JAC/MIA/boxscore.xml" type="application/xml"/>
3455
- <link rel="roster" href="/2012/REG/15/JAC/MIA/roster.xml" type="application/xml"/>
3456
- <link rel="injuries" href="/2012/REG/15/JAC/MIA/injuries.xml" type="application/xml"/>
3457
- <link rel="depthchart" href="/2012/REG/15/JAC/MIA/depthchart.xml" type="application/xml"/>
3458
- </links>
3459
- </game>
3460
- <game id="3bc1dcd6-db3f-4ec3-ad0c-3ba599adddcb" scheduled="2012-12-16T18:00:00+00:00" home_rotation="" away_rotation="" home="CLE" away="WAS" status="scheduled">
3461
- <venue id="90c38d91-3774-4f5d-82ca-1c806828219f" country="US" name="Cleveland Browns Stadium" city="Cleveland " state="OH" capacity="73200" surface="artificial" type="outdoor" zip="" address=""/>
3462
- <weather temperature="" condition="" humidity="">
3463
- <wind speed="" direction=""/>
3464
- </weather>
3465
- <links>
3466
- <link rel="statistics" href="/2012/REG/15/WAS/CLE/statistics.xml" type="application/xml"/>
3467
- <link rel="summary" href="/2012/REG/15/WAS/CLE/summary.xml" type="application/xml"/>
3468
- <link rel="pbp" href="/2012/REG/15/WAS/CLE/pbp.xml" type="application/xml"/>
3469
- <link rel="boxscore" href="/2012/REG/15/WAS/CLE/boxscore.xml" type="application/xml"/>
3470
- <link rel="roster" href="/2012/REG/15/WAS/CLE/roster.xml" type="application/xml"/>
3471
- <link rel="injuries" href="/2012/REG/15/WAS/CLE/injuries.xml" type="application/xml"/>
3472
- <link rel="depthchart" href="/2012/REG/15/WAS/CLE/depthchart.xml" type="application/xml"/>
3473
- </links>
3474
- </game>
3475
- <game id="70ee2f0e-d3fb-4af6-905e-15998cefba32" scheduled="2012-12-16T21:05:00+00:00" home_rotation="" away_rotation="" home="SD" away="CAR" status="scheduled">
3476
- <venue id="7ca47702-8951-45be-a4f5-3e7d78f8f399" country="US" name="Qualcomm Stadium" city="San Diego" state="CA" capacity="71294" surface="turf" type="outdoor" zip="" address=""/>
3477
- <weather temperature="" condition="" humidity="">
3478
- <wind speed="" direction=""/>
3479
- </weather>
3480
- <links>
3481
- <link rel="statistics" href="/2012/REG/15/CAR/SD/statistics.xml" type="application/xml"/>
3482
- <link rel="summary" href="/2012/REG/15/CAR/SD/summary.xml" type="application/xml"/>
3483
- <link rel="pbp" href="/2012/REG/15/CAR/SD/pbp.xml" type="application/xml"/>
3484
- <link rel="boxscore" href="/2012/REG/15/CAR/SD/boxscore.xml" type="application/xml"/>
3485
- <link rel="roster" href="/2012/REG/15/CAR/SD/roster.xml" type="application/xml"/>
3486
- <link rel="injuries" href="/2012/REG/15/CAR/SD/injuries.xml" type="application/xml"/>
3487
- <link rel="depthchart" href="/2012/REG/15/CAR/SD/depthchart.xml" type="application/xml"/>
3488
- </links>
3489
- </game>
3490
- <game id="7d65d1c1-1886-4f5b-a5e5-e84ec1a1ce90" scheduled="2012-12-16T21:05:00+00:00" home_rotation="" away_rotation="" home="ARI" away="DET" status="scheduled">
3491
- <venue id="f8e4d2ab-53f9-4e9f-8c4a-9bc278094a84" country="US" name="University of Phoenix Stadium" city="Glendale" state="AZ" capacity="63400" surface="turf" type="retractable_dome" zip="" address=""/>
3492
- <weather temperature="" condition="" humidity="">
3493
- <wind speed="" direction=""/>
3494
- </weather>
3495
- <links>
3496
- <link rel="statistics" href="/2012/REG/15/DET/ARI/statistics.xml" type="application/xml"/>
3497
- <link rel="summary" href="/2012/REG/15/DET/ARI/summary.xml" type="application/xml"/>
3498
- <link rel="pbp" href="/2012/REG/15/DET/ARI/pbp.xml" type="application/xml"/>
3499
- <link rel="boxscore" href="/2012/REG/15/DET/ARI/boxscore.xml" type="application/xml"/>
3500
- <link rel="roster" href="/2012/REG/15/DET/ARI/roster.xml" type="application/xml"/>
3501
- <link rel="injuries" href="/2012/REG/15/DET/ARI/injuries.xml" type="application/xml"/>
3502
- <link rel="depthchart" href="/2012/REG/15/DET/ARI/depthchart.xml" type="application/xml"/>
3503
- </links>
3504
- </game>
3505
- <game id="68a9b9ef-0848-4f6e-8581-340f8f20220f" scheduled="2012-12-16T21:05:00+00:00" home_rotation="" away_rotation="" home="BUF" away="SEA" status="scheduled">
3506
- <venue id="e9e0828e-37fc-4238-a317-49037577dd55" country="US" name="Ralph Wilson Stadium" city="Orchard Park" state="NY" capacity="73967" surface="artificial" type="outdoor" zip="" address=""/>
3507
- <weather temperature="" condition="" humidity="">
3508
- <wind speed="" direction=""/>
3509
- </weather>
3510
- <links>
3511
- <link rel="statistics" href="/2012/REG/15/SEA/BUF/statistics.xml" type="application/xml"/>
3512
- <link rel="summary" href="/2012/REG/15/SEA/BUF/summary.xml" type="application/xml"/>
3513
- <link rel="pbp" href="/2012/REG/15/SEA/BUF/pbp.xml" type="application/xml"/>
3514
- <link rel="boxscore" href="/2012/REG/15/SEA/BUF/boxscore.xml" type="application/xml"/>
3515
- <link rel="roster" href="/2012/REG/15/SEA/BUF/roster.xml" type="application/xml"/>
3516
- <link rel="injuries" href="/2012/REG/15/SEA/BUF/injuries.xml" type="application/xml"/>
3517
- <link rel="depthchart" href="/2012/REG/15/SEA/BUF/depthchart.xml" type="application/xml"/>
3518
- </links>
3519
- </game>
3520
- <game id="77fdba01-9715-4450-a791-8a9986be4095" scheduled="2012-12-16T21:15:00+00:00" home_rotation="" away_rotation="" home="DAL" away="PIT" status="scheduled">
3521
- <venue id="1e84213a-ff1f-4c9d-a003-8ee782b25a40" country="US" name="Cowboys Stadium" city="Arlington" state="TX" capacity="80000" surface="artificial" type="retractable_dome" zip="" address=""/>
3522
- <weather temperature="" condition="" humidity="">
3523
- <wind speed="" direction=""/>
3524
- </weather>
3525
- <links>
3526
- <link rel="statistics" href="/2012/REG/15/PIT/DAL/statistics.xml" type="application/xml"/>
3527
- <link rel="summary" href="/2012/REG/15/PIT/DAL/summary.xml" type="application/xml"/>
3528
- <link rel="pbp" href="/2012/REG/15/PIT/DAL/pbp.xml" type="application/xml"/>
3529
- <link rel="boxscore" href="/2012/REG/15/PIT/DAL/boxscore.xml" type="application/xml"/>
3530
- <link rel="roster" href="/2012/REG/15/PIT/DAL/roster.xml" type="application/xml"/>
3531
- <link rel="injuries" href="/2012/REG/15/PIT/DAL/injuries.xml" type="application/xml"/>
3532
- <link rel="depthchart" href="/2012/REG/15/PIT/DAL/depthchart.xml" type="application/xml"/>
3533
- </links>
3534
- </game>
3535
- <game id="0e2e8472-598e-458f-8f95-82aa81783ddf" scheduled="2012-12-16T21:15:00+00:00" home_rotation="" away_rotation="" home="OAK" away="KC" status="scheduled">
3536
- <venue id="ba1ad00f-9130-462c-93f9-5612a0015117" country="US" name="Oakland-Alameda County Coliseum" city="Oakland" state="CA" capacity="63026" surface="turf" type="outdoor" zip="" address=""/>
3537
- <weather temperature="" condition="" humidity="">
3538
- <wind speed="" direction=""/>
3539
- </weather>
3540
- <links>
3541
- <link rel="statistics" href="/2012/REG/15/KC/OAK/statistics.xml" type="application/xml"/>
3542
- <link rel="summary" href="/2012/REG/15/KC/OAK/summary.xml" type="application/xml"/>
3543
- <link rel="pbp" href="/2012/REG/15/KC/OAK/pbp.xml" type="application/xml"/>
3544
- <link rel="boxscore" href="/2012/REG/15/KC/OAK/boxscore.xml" type="application/xml"/>
3545
- <link rel="roster" href="/2012/REG/15/KC/OAK/roster.xml" type="application/xml"/>
3546
- <link rel="injuries" href="/2012/REG/15/KC/OAK/injuries.xml" type="application/xml"/>
3547
- <link rel="depthchart" href="/2012/REG/15/KC/OAK/depthchart.xml" type="application/xml"/>
3548
- </links>
3549
- </game>
3550
- <game id="3e8ddf7f-ff00-4f67-b6da-45b1635cf44b" scheduled="2012-12-17T01:20:00+00:00" home_rotation="" away_rotation="" home="NE" away="SF" status="scheduled">
3551
- <venue id="e43310b1-cb82-4df9-8be5-e9b39637031b" country="US" name="Gillette Stadium" city="Foxborough" state="MA" capacity="68756" surface="turf" type="outdoor" zip="" address=""/>
3552
- <weather temperature="" condition="" humidity="">
3553
- <wind speed="" direction=""/>
3554
- </weather>
3555
- <links>
3556
- <link rel="statistics" href="/2012/REG/15/SF/NE/statistics.xml" type="application/xml"/>
3557
- <link rel="summary" href="/2012/REG/15/SF/NE/summary.xml" type="application/xml"/>
3558
- <link rel="pbp" href="/2012/REG/15/SF/NE/pbp.xml" type="application/xml"/>
3559
- <link rel="boxscore" href="/2012/REG/15/SF/NE/boxscore.xml" type="application/xml"/>
3560
- <link rel="roster" href="/2012/REG/15/SF/NE/roster.xml" type="application/xml"/>
3561
- <link rel="injuries" href="/2012/REG/15/SF/NE/injuries.xml" type="application/xml"/>
3562
- <link rel="depthchart" href="/2012/REG/15/SF/NE/depthchart.xml" type="application/xml"/>
3563
- </links>
3564
- </game>
3565
- <game id="3176de98-615e-4d49-952f-654eb2ed26c3" scheduled="2012-12-18T01:30:00+00:00" home_rotation="" away_rotation="" home="TEN" away="NYJ" status="scheduled">
3566
- <venue id="5295c1b7-c85c-49cb-9569-1707c65324e5" country="US" name="LP Field" city="Nashville" state="TN" capacity="68798" surface="turf" type="outdoor" zip="" address=""/>
3567
- <weather temperature="" condition="" humidity="">
3568
- <wind speed="" direction=""/>
3569
- </weather>
3570
- <links>
3571
- <link rel="statistics" href="/2012/REG/15/NYJ/TEN/statistics.xml" type="application/xml"/>
3572
- <link rel="summary" href="/2012/REG/15/NYJ/TEN/summary.xml" type="application/xml"/>
3573
- <link rel="pbp" href="/2012/REG/15/NYJ/TEN/pbp.xml" type="application/xml"/>
3574
- <link rel="boxscore" href="/2012/REG/15/NYJ/TEN/boxscore.xml" type="application/xml"/>
3575
- <link rel="roster" href="/2012/REG/15/NYJ/TEN/roster.xml" type="application/xml"/>
3576
- <link rel="injuries" href="/2012/REG/15/NYJ/TEN/injuries.xml" type="application/xml"/>
3577
- <link rel="depthchart" href="/2012/REG/15/NYJ/TEN/depthchart.xml" type="application/xml"/>
3578
- </links>
3579
- </game>
3580
- </week>
3581
- <week week="16">
3582
- <game id="b3d40adc-aaa8-4786-9e81-c886db35576a" scheduled="2012-12-23T01:30:00+00:00" home_rotation="" away_rotation="" home="DET" away="ATL" status="scheduled">
3583
- <venue id="6e3bcf22-277d-4c06-b019-62aded51654f" country="US" name="Ford Field" city="Detroit" state="MI" capacity="65000" surface="artificial" type="dome" zip="" address=""/>
3584
- <weather temperature="" condition="" humidity="">
3585
- <wind speed="" direction=""/>
3586
- </weather>
3587
- <broadcast network="" satellite="" internet="" cable=""/>
3588
- <links>
3589
- <link rel="statistics" href="/2012/REG/16/ATL/DET/statistics.xml" type="application/xml"/>
3590
- <link rel="summary" href="/2012/REG/16/ATL/DET/summary.xml" type="application/xml"/>
3591
- <link rel="pbp" href="/2012/REG/16/ATL/DET/pbp.xml" type="application/xml"/>
3592
- <link rel="boxscore" href="/2012/REG/16/ATL/DET/boxscore.xml" type="application/xml"/>
3593
- <link rel="roster" href="/2012/REG/16/ATL/DET/roster.xml" type="application/xml"/>
3594
- <link rel="injuries" href="/2012/REG/16/ATL/DET/injuries.xml" type="application/xml"/>
3595
- <link rel="depthchart" href="/2012/REG/16/ATL/DET/depthchart.xml" type="application/xml"/>
3596
- </links>
3597
- </game>
3598
- <game id="aa3082c8-4e92-45a8-8d0d-d7e4c47d644f" scheduled="2012-12-23T18:00:00+00:00" home_rotation="" away_rotation="" home="JAC" away="NE" status="scheduled">
3599
- <venue id="4c5c036d-dd3d-4183-b595-71a43a97560f" country="US" name="EverBank Field" city="Jacksonville" state="FL" capacity="76877" surface="artificial" type="outdoor" zip="" address=""/>
3600
- <weather temperature="" condition="" humidity="">
3601
- <wind speed="" direction=""/>
3602
- </weather>
3603
- <links>
3604
- <link rel="statistics" href="/2012/REG/16/NE/JAC/statistics.xml" type="application/xml"/>
3605
- <link rel="summary" href="/2012/REG/16/NE/JAC/summary.xml" type="application/xml"/>
3606
- <link rel="pbp" href="/2012/REG/16/NE/JAC/pbp.xml" type="application/xml"/>
3607
- <link rel="boxscore" href="/2012/REG/16/NE/JAC/boxscore.xml" type="application/xml"/>
3608
- <link rel="roster" href="/2012/REG/16/NE/JAC/roster.xml" type="application/xml"/>
3609
- <link rel="injuries" href="/2012/REG/16/NE/JAC/injuries.xml" type="application/xml"/>
3610
- <link rel="depthchart" href="/2012/REG/16/NE/JAC/depthchart.xml" type="application/xml"/>
3611
- </links>
3612
- </game>
3613
- <game id="b90e3cc5-56d9-4796-94b7-a55d47395878" scheduled="2012-12-23T18:00:00+00:00" home_rotation="" away_rotation="" home="GB" away="TEN" status="scheduled">
3614
- <venue id="5a60dd3a-302c-41c6-ab0f-dd335c1103c2" country="US" name="Lambeau Field" city="Green Bay" state="WI" capacity="72992" surface="turf" type="outdoor" zip="" address=""/>
3615
- <weather temperature="" condition="" humidity="">
3616
- <wind speed="" direction=""/>
3617
- </weather>
3618
- <links>
3619
- <link rel="statistics" href="/2012/REG/16/TEN/GB/statistics.xml" type="application/xml"/>
3620
- <link rel="summary" href="/2012/REG/16/TEN/GB/summary.xml" type="application/xml"/>
3621
- <link rel="pbp" href="/2012/REG/16/TEN/GB/pbp.xml" type="application/xml"/>
3622
- <link rel="boxscore" href="/2012/REG/16/TEN/GB/boxscore.xml" type="application/xml"/>
3623
- <link rel="roster" href="/2012/REG/16/TEN/GB/roster.xml" type="application/xml"/>
3624
- <link rel="injuries" href="/2012/REG/16/TEN/GB/injuries.xml" type="application/xml"/>
3625
- <link rel="depthchart" href="/2012/REG/16/TEN/GB/depthchart.xml" type="application/xml"/>
3626
- </links>
3627
- </game>
3628
- <game id="202c04b4-2d2d-4cba-a8ae-87a4523a806c" scheduled="2012-12-23T18:00:00+00:00" home_rotation="" away_rotation="" home="CAR" away="OAK" status="scheduled">
3629
- <venue id="39be9ed4-3292-49ac-8699-a381de3a4969" country="US" name="Bank of America Stadium" city="Charlotte" state="NC" capacity="73778" surface="turf" type="outdoor" zip="" address=""/>
3630
- <weather temperature="" condition="" humidity="">
3631
- <wind speed="" direction=""/>
3632
- </weather>
3633
- <links>
3634
- <link rel="statistics" href="/2012/REG/16/OAK/CAR/statistics.xml" type="application/xml"/>
3635
- <link rel="summary" href="/2012/REG/16/OAK/CAR/summary.xml" type="application/xml"/>
3636
- <link rel="pbp" href="/2012/REG/16/OAK/CAR/pbp.xml" type="application/xml"/>
3637
- <link rel="boxscore" href="/2012/REG/16/OAK/CAR/boxscore.xml" type="application/xml"/>
3638
- <link rel="roster" href="/2012/REG/16/OAK/CAR/roster.xml" type="application/xml"/>
3639
- <link rel="injuries" href="/2012/REG/16/OAK/CAR/injuries.xml" type="application/xml"/>
3640
- <link rel="depthchart" href="/2012/REG/16/OAK/CAR/depthchart.xml" type="application/xml"/>
3641
- </links>
3642
- </game>
3643
- <game id="4c95b787-b88e-4276-b195-a79f23120599" scheduled="2012-12-23T18:00:00+00:00" home_rotation="" away_rotation="" home="BAL" away="NYG" status="scheduled">
3644
- <venue id="d54faae0-0314-484f-8604-9d8dd08e1149" country="US" name="M&amp;T Bank Stadium" city="Baltimore" state="MD" capacity="71008" surface="artificial" type="outdoor" zip="" address=""/>
3645
- <weather temperature="" condition="" humidity="">
3646
- <wind speed="" direction=""/>
3647
- </weather>
3648
- <links>
3649
- <link rel="statistics" href="/2012/REG/16/NYG/BAL/statistics.xml" type="application/xml"/>
3650
- <link rel="summary" href="/2012/REG/16/NYG/BAL/summary.xml" type="application/xml"/>
3651
- <link rel="pbp" href="/2012/REG/16/NYG/BAL/pbp.xml" type="application/xml"/>
3652
- <link rel="boxscore" href="/2012/REG/16/NYG/BAL/boxscore.xml" type="application/xml"/>
3653
- <link rel="roster" href="/2012/REG/16/NYG/BAL/roster.xml" type="application/xml"/>
3654
- <link rel="injuries" href="/2012/REG/16/NYG/BAL/injuries.xml" type="application/xml"/>
3655
- <link rel="depthchart" href="/2012/REG/16/NYG/BAL/depthchart.xml" type="application/xml"/>
3656
- </links>
3657
- </game>
3658
- <game id="20c0fbf5-65ce-4aad-92ba-9c7a9f2cb11a" scheduled="2012-12-23T18:00:00+00:00" home_rotation="" away_rotation="" home="PHI" away="WAS" status="scheduled">
3659
- <venue id="4fa8c29c-6626-464c-8540-314ed7535e1b" country="US" name="Lincoln Financial Field" city="Philadelphia" state="PA" capacity="68532" surface="turf" type="outdoor" zip="" address=""/>
3660
- <weather temperature="" condition="" humidity="">
3661
- <wind speed="" direction=""/>
3662
- </weather>
3663
- <links>
3664
- <link rel="statistics" href="/2012/REG/16/WAS/PHI/statistics.xml" type="application/xml"/>
3665
- <link rel="summary" href="/2012/REG/16/WAS/PHI/summary.xml" type="application/xml"/>
3666
- <link rel="pbp" href="/2012/REG/16/WAS/PHI/pbp.xml" type="application/xml"/>
3667
- <link rel="boxscore" href="/2012/REG/16/WAS/PHI/boxscore.xml" type="application/xml"/>
3668
- <link rel="roster" href="/2012/REG/16/WAS/PHI/roster.xml" type="application/xml"/>
3669
- <link rel="injuries" href="/2012/REG/16/WAS/PHI/injuries.xml" type="application/xml"/>
3670
- <link rel="depthchart" href="/2012/REG/16/WAS/PHI/depthchart.xml" type="application/xml"/>
3671
- </links>
3672
- </game>
3673
- <game id="9231e06a-5d43-4a0d-9dbb-3757864384a1" scheduled="2012-12-23T18:00:00+00:00" home_rotation="" away_rotation="" home="MIA" away="BUF" status="scheduled">
3674
- <venue id="50a5c833-1570-4c38-abc7-7914cf87dbde" country="US" name="Sun Life Stadium" city="Miami Garden" state="FL" capacity="75235" surface="turf" type="outdoor" zip="" address=""/>
3675
- <weather temperature="" condition="" humidity="">
3676
- <wind speed="" direction=""/>
3677
- </weather>
3678
- <links>
3679
- <link rel="statistics" href="/2012/REG/16/BUF/MIA/statistics.xml" type="application/xml"/>
3680
- <link rel="summary" href="/2012/REG/16/BUF/MIA/summary.xml" type="application/xml"/>
3681
- <link rel="pbp" href="/2012/REG/16/BUF/MIA/pbp.xml" type="application/xml"/>
3682
- <link rel="boxscore" href="/2012/REG/16/BUF/MIA/boxscore.xml" type="application/xml"/>
3683
- <link rel="roster" href="/2012/REG/16/BUF/MIA/roster.xml" type="application/xml"/>
3684
- <link rel="injuries" href="/2012/REG/16/BUF/MIA/injuries.xml" type="application/xml"/>
3685
- <link rel="depthchart" href="/2012/REG/16/BUF/MIA/depthchart.xml" type="application/xml"/>
3686
- </links>
3687
- </game>
3688
- <game id="41543c2c-7099-4d11-af7b-f5fe1a90e7c8" scheduled="2012-12-23T18:00:00+00:00" home_rotation="" away_rotation="" home="TB" away="STL" status="scheduled">
3689
- <venue id="6fccc39c-80bc-4c81-83d9-2d5a848c8c09" country="US" name="Raymond James Stadium" city="Tampa Bay" state="FL" capacity="65657" surface="turf" type="outdoor" zip="" address=""/>
3690
- <weather temperature="" condition="" humidity="">
3691
- <wind speed="" direction=""/>
3692
- </weather>
3693
- <links>
3694
- <link rel="statistics" href="/2012/REG/16/STL/TB/statistics.xml" type="application/xml"/>
3695
- <link rel="summary" href="/2012/REG/16/STL/TB/summary.xml" type="application/xml"/>
3696
- <link rel="pbp" href="/2012/REG/16/STL/TB/pbp.xml" type="application/xml"/>
3697
- <link rel="boxscore" href="/2012/REG/16/STL/TB/boxscore.xml" type="application/xml"/>
3698
- <link rel="roster" href="/2012/REG/16/STL/TB/roster.xml" type="application/xml"/>
3699
- <link rel="injuries" href="/2012/REG/16/STL/TB/injuries.xml" type="application/xml"/>
3700
- <link rel="depthchart" href="/2012/REG/16/STL/TB/depthchart.xml" type="application/xml"/>
3701
- </links>
3702
- </game>
3703
- <game id="f9e7d2ca-0292-4de3-824a-5e8539dc2486" scheduled="2012-12-23T18:00:00+00:00" home_rotation="" away_rotation="" home="HOU" away="MIN" status="scheduled">
3704
- <venue id="6a72e5ca-33d0-40af-8e6b-b32a4d3d9346" country="US" name="Reliant Stadium" city="Houston" state="TX" capacity="71500" surface="turf" type="retractable_dome" zip="" address=""/>
3705
- <weather temperature="" condition="" humidity="">
3706
- <wind speed="" direction=""/>
3707
- </weather>
3708
- <links>
3709
- <link rel="statistics" href="/2012/REG/16/MIN/HOU/statistics.xml" type="application/xml"/>
3710
- <link rel="summary" href="/2012/REG/16/MIN/HOU/summary.xml" type="application/xml"/>
3711
- <link rel="pbp" href="/2012/REG/16/MIN/HOU/pbp.xml" type="application/xml"/>
3712
- <link rel="boxscore" href="/2012/REG/16/MIN/HOU/boxscore.xml" type="application/xml"/>
3713
- <link rel="roster" href="/2012/REG/16/MIN/HOU/roster.xml" type="application/xml"/>
3714
- <link rel="injuries" href="/2012/REG/16/MIN/HOU/injuries.xml" type="application/xml"/>
3715
- <link rel="depthchart" href="/2012/REG/16/MIN/HOU/depthchart.xml" type="application/xml"/>
3716
- </links>
3717
- </game>
3718
- <game id="944fe36f-4bac-452e-a0ba-206463838d2f" scheduled="2012-12-23T18:00:00+00:00" home_rotation="" away_rotation="" home="KC" away="IND" status="scheduled">
3719
- <venue id="2ec4c411-dac2-403d-b091-6b6aa4a0a914" country="US" name="Arrowhead Stadium" city="Kansas City" state="MO" capacity="79451" surface="turf" type="outdoor" zip="" address=""/>
3720
- <weather temperature="" condition="" humidity="">
3721
- <wind speed="" direction=""/>
3722
- </weather>
3723
- <links>
3724
- <link rel="statistics" href="/2012/REG/16/IND/KC/statistics.xml" type="application/xml"/>
3725
- <link rel="summary" href="/2012/REG/16/IND/KC/summary.xml" type="application/xml"/>
3726
- <link rel="pbp" href="/2012/REG/16/IND/KC/pbp.xml" type="application/xml"/>
3727
- <link rel="boxscore" href="/2012/REG/16/IND/KC/boxscore.xml" type="application/xml"/>
3728
- <link rel="roster" href="/2012/REG/16/IND/KC/roster.xml" type="application/xml"/>
3729
- <link rel="injuries" href="/2012/REG/16/IND/KC/injuries.xml" type="application/xml"/>
3730
- <link rel="depthchart" href="/2012/REG/16/IND/KC/depthchart.xml" type="application/xml"/>
3731
- </links>
3732
- </game>
3733
- <game id="8de8f1a8-4832-4bac-99cf-ef355156ce1a" scheduled="2012-12-23T18:00:00+00:00" home_rotation="" away_rotation="" home="PIT" away="CIN" status="scheduled">
3734
- <venue id="7349a2e6-0ac9-410b-8bd2-ca58c9f7aa34" country="US" name="Heinz Field" city="Pittsburgh" state="PA" capacity="65050" surface="turf" type="outdoor" zip="" address=""/>
3735
- <weather temperature="" condition="" humidity="">
3736
- <wind speed="" direction=""/>
3737
- </weather>
3738
- <links>
3739
- <link rel="statistics" href="/2012/REG/16/CIN/PIT/statistics.xml" type="application/xml"/>
3740
- <link rel="summary" href="/2012/REG/16/CIN/PIT/summary.xml" type="application/xml"/>
3741
- <link rel="pbp" href="/2012/REG/16/CIN/PIT/pbp.xml" type="application/xml"/>
3742
- <link rel="boxscore" href="/2012/REG/16/CIN/PIT/boxscore.xml" type="application/xml"/>
3743
- <link rel="roster" href="/2012/REG/16/CIN/PIT/roster.xml" type="application/xml"/>
3744
- <link rel="injuries" href="/2012/REG/16/CIN/PIT/injuries.xml" type="application/xml"/>
3745
- <link rel="depthchart" href="/2012/REG/16/CIN/PIT/depthchart.xml" type="application/xml"/>
3746
- </links>
3747
- </game>
3748
- <game id="c469f647-53ac-48ef-91e0-d297de795b9c" scheduled="2012-12-23T18:00:00+00:00" home_rotation="" away_rotation="" home="DAL" away="NO" status="scheduled">
3749
- <venue id="1e84213a-ff1f-4c9d-a003-8ee782b25a40" country="US" name="Cowboys Stadium" city="Arlington" state="TX" capacity="80000" surface="artificial" type="retractable_dome" zip="" address=""/>
3750
- <weather temperature="" condition="" humidity="">
3751
- <wind speed="" direction=""/>
3752
- </weather>
3753
- <links>
3754
- <link rel="statistics" href="/2012/REG/16/NO/DAL/statistics.xml" type="application/xml"/>
3755
- <link rel="summary" href="/2012/REG/16/NO/DAL/summary.xml" type="application/xml"/>
3756
- <link rel="pbp" href="/2012/REG/16/NO/DAL/pbp.xml" type="application/xml"/>
3757
- <link rel="boxscore" href="/2012/REG/16/NO/DAL/boxscore.xml" type="application/xml"/>
3758
- <link rel="roster" href="/2012/REG/16/NO/DAL/roster.xml" type="application/xml"/>
3759
- <link rel="injuries" href="/2012/REG/16/NO/DAL/injuries.xml" type="application/xml"/>
3760
- <link rel="depthchart" href="/2012/REG/16/NO/DAL/depthchart.xml" type="application/xml"/>
3761
- </links>
3762
- </game>
3763
- <game id="a46c5f0d-9d2b-4407-bc9b-d8e7a3640ca4" scheduled="2012-12-23T21:05:00+00:00" home_rotation="" away_rotation="" home="DEN" away="CLE" status="scheduled">
3764
- <venue id="6589e61d-ef1e-4e30-91b5-9acd2072b8a0" country="US" name="Sports Authority Field at Mile High" city="Denver " state="CO" capacity="76125" surface="turf" type="outdoor" zip="" address=""/>
3765
- <weather temperature="" condition="" humidity="">
3766
- <wind speed="" direction=""/>
3767
- </weather>
3768
- <links>
3769
- <link rel="statistics" href="/2012/REG/16/CLE/DEN/statistics.xml" type="application/xml"/>
3770
- <link rel="summary" href="/2012/REG/16/CLE/DEN/summary.xml" type="application/xml"/>
3771
- <link rel="pbp" href="/2012/REG/16/CLE/DEN/pbp.xml" type="application/xml"/>
3772
- <link rel="boxscore" href="/2012/REG/16/CLE/DEN/boxscore.xml" type="application/xml"/>
3773
- <link rel="roster" href="/2012/REG/16/CLE/DEN/roster.xml" type="application/xml"/>
3774
- <link rel="injuries" href="/2012/REG/16/CLE/DEN/injuries.xml" type="application/xml"/>
3775
- <link rel="depthchart" href="/2012/REG/16/CLE/DEN/depthchart.xml" type="application/xml"/>
3776
- </links>
3777
- </game>
3778
- <game id="58043c3d-2b89-40b4-99c6-1622e2ea926d" scheduled="2012-12-23T21:15:00+00:00" home_rotation="" away_rotation="" home="ARI" away="CHI" status="scheduled">
3779
- <venue id="f8e4d2ab-53f9-4e9f-8c4a-9bc278094a84" country="US" name="University of Phoenix Stadium" city="Glendale" state="AZ" capacity="63400" surface="turf" type="retractable_dome" zip="" address=""/>
3780
- <weather temperature="" condition="" humidity="">
3781
- <wind speed="" direction=""/>
3782
- </weather>
3783
- <links>
3784
- <link rel="statistics" href="/2012/REG/16/CHI/ARI/statistics.xml" type="application/xml"/>
3785
- <link rel="summary" href="/2012/REG/16/CHI/ARI/summary.xml" type="application/xml"/>
3786
- <link rel="pbp" href="/2012/REG/16/CHI/ARI/pbp.xml" type="application/xml"/>
3787
- <link rel="boxscore" href="/2012/REG/16/CHI/ARI/boxscore.xml" type="application/xml"/>
3788
- <link rel="roster" href="/2012/REG/16/CHI/ARI/roster.xml" type="application/xml"/>
3789
- <link rel="injuries" href="/2012/REG/16/CHI/ARI/injuries.xml" type="application/xml"/>
3790
- <link rel="depthchart" href="/2012/REG/16/CHI/ARI/depthchart.xml" type="application/xml"/>
3791
- </links>
3792
- </game>
3793
- <game id="98fa3efa-7ca7-438e-b250-cf4a31c67d89" scheduled="2012-12-23T21:15:00+00:00" home_rotation="" away_rotation="" home="SEA" away="SF" status="scheduled">
3794
- <venue id="c6b9e5df-c9e4-434c-b3e6-83928f11cbda" country="US" name="Qwest Field" city="Seattle" state="WA" capacity="67000" surface="artificial" type="outdoor" zip="" address=""/>
3795
- <weather temperature="" condition="" humidity="">
3796
- <wind speed="" direction=""/>
3797
- </weather>
3798
- <links>
3799
- <link rel="statistics" href="/2012/REG/16/SF/SEA/statistics.xml" type="application/xml"/>
3800
- <link rel="summary" href="/2012/REG/16/SF/SEA/summary.xml" type="application/xml"/>
3801
- <link rel="pbp" href="/2012/REG/16/SF/SEA/pbp.xml" type="application/xml"/>
3802
- <link rel="boxscore" href="/2012/REG/16/SF/SEA/boxscore.xml" type="application/xml"/>
3803
- <link rel="roster" href="/2012/REG/16/SF/SEA/roster.xml" type="application/xml"/>
3804
- <link rel="injuries" href="/2012/REG/16/SF/SEA/injuries.xml" type="application/xml"/>
3805
- <link rel="depthchart" href="/2012/REG/16/SF/SEA/depthchart.xml" type="application/xml"/>
3806
- </links>
3807
- </game>
3808
- <game id="70bf1444-43bb-4593-a250-e39f7f319652" scheduled="2012-12-24T01:20:00+00:00" home_rotation="" away_rotation="" home="NYJ" away="SD" status="scheduled">
3809
- <venue id="5d4c85c7-d84e-4e10-bd6a-8a15ebecca5c" country="US" name="MetLife Stadium" city="East Rutherford" state="NJ" capacity="82500" surface="artificial" type="outdoor" zip="" address=""/>
3810
- <weather temperature="" condition="" humidity="">
3811
- <wind speed="" direction=""/>
3812
- </weather>
3813
- <links>
3814
- <link rel="statistics" href="/2012/REG/16/SD/NYJ/statistics.xml" type="application/xml"/>
3815
- <link rel="summary" href="/2012/REG/16/SD/NYJ/summary.xml" type="application/xml"/>
3816
- <link rel="pbp" href="/2012/REG/16/SD/NYJ/pbp.xml" type="application/xml"/>
3817
- <link rel="boxscore" href="/2012/REG/16/SD/NYJ/boxscore.xml" type="application/xml"/>
3818
- <link rel="roster" href="/2012/REG/16/SD/NYJ/roster.xml" type="application/xml"/>
3819
- <link rel="injuries" href="/2012/REG/16/SD/NYJ/injuries.xml" type="application/xml"/>
3820
- <link rel="depthchart" href="/2012/REG/16/SD/NYJ/depthchart.xml" type="application/xml"/>
3821
- </links>
3822
- </game>
3823
- </week>
3824
- <week week="17">
3825
- <game id="aa45faa8-738c-4948-9213-6ab70aa1e91e" scheduled="2012-12-30T18:00:00+00:00" home_rotation="" away_rotation="" home="WAS" away="DAL" status="scheduled">
3826
- <venue id="7c11bb2d-4a53-4842-b842-0f1c63ed78e9" country="US" name="FedEx Field" city="Hyattsville" state="MD" capacity="91704" surface="turf" type="outdoor" zip="" address=""/>
3827
- <weather temperature="" condition="" humidity="">
3828
- <wind speed="" direction=""/>
3829
- </weather>
3830
- <broadcast network="" satellite="" internet="" cable=""/>
3831
- <links>
3832
- <link rel="statistics" href="/2012/REG/17/DAL/WAS/statistics.xml" type="application/xml"/>
3833
- <link rel="summary" href="/2012/REG/17/DAL/WAS/summary.xml" type="application/xml"/>
3834
- <link rel="pbp" href="/2012/REG/17/DAL/WAS/pbp.xml" type="application/xml"/>
3835
- <link rel="boxscore" href="/2012/REG/17/DAL/WAS/boxscore.xml" type="application/xml"/>
3836
- <link rel="roster" href="/2012/REG/17/DAL/WAS/roster.xml" type="application/xml"/>
3837
- <link rel="injuries" href="/2012/REG/17/DAL/WAS/injuries.xml" type="application/xml"/>
3838
- <link rel="depthchart" href="/2012/REG/17/DAL/WAS/depthchart.xml" type="application/xml"/>
3839
- </links>
3840
- </game>
3841
- <game id="374ba2fb-9e27-47a4-a07f-d1bd93705431" scheduled="2012-12-30T18:00:00+00:00" home_rotation="" away_rotation="" home="TEN" away="JAC" status="scheduled">
3842
- <venue id="5295c1b7-c85c-49cb-9569-1707c65324e5" country="US" name="LP Field" city="Nashville" state="TN" capacity="68798" surface="turf" type="outdoor" zip="" address=""/>
3843
- <weather temperature="" condition="" humidity="">
3844
- <wind speed="" direction=""/>
3845
- </weather>
3846
- <links>
3847
- <link rel="statistics" href="/2012/REG/17/JAC/TEN/statistics.xml" type="application/xml"/>
3848
- <link rel="summary" href="/2012/REG/17/JAC/TEN/summary.xml" type="application/xml"/>
3849
- <link rel="pbp" href="/2012/REG/17/JAC/TEN/pbp.xml" type="application/xml"/>
3850
- <link rel="boxscore" href="/2012/REG/17/JAC/TEN/boxscore.xml" type="application/xml"/>
3851
- <link rel="roster" href="/2012/REG/17/JAC/TEN/roster.xml" type="application/xml"/>
3852
- <link rel="injuries" href="/2012/REG/17/JAC/TEN/injuries.xml" type="application/xml"/>
3853
- <link rel="depthchart" href="/2012/REG/17/JAC/TEN/depthchart.xml" type="application/xml"/>
3854
- </links>
3855
- </game>
3856
- <game id="24cda793-fb5a-481c-84f4-6ebeb463815d" scheduled="2012-12-30T18:00:00+00:00" home_rotation="" away_rotation="" home="DET" away="CHI" status="scheduled">
3857
- <venue id="6e3bcf22-277d-4c06-b019-62aded51654f" country="US" name="Ford Field" city="Detroit" state="MI" capacity="65000" surface="artificial" type="dome" zip="" address=""/>
3858
- <weather temperature="" condition="" humidity="">
3859
- <wind speed="" direction=""/>
3860
- </weather>
3861
- <links>
3862
- <link rel="statistics" href="/2012/REG/17/CHI/DET/statistics.xml" type="application/xml"/>
3863
- <link rel="summary" href="/2012/REG/17/CHI/DET/summary.xml" type="application/xml"/>
3864
- <link rel="pbp" href="/2012/REG/17/CHI/DET/pbp.xml" type="application/xml"/>
3865
- <link rel="boxscore" href="/2012/REG/17/CHI/DET/boxscore.xml" type="application/xml"/>
3866
- <link rel="roster" href="/2012/REG/17/CHI/DET/roster.xml" type="application/xml"/>
3867
- <link rel="injuries" href="/2012/REG/17/CHI/DET/injuries.xml" type="application/xml"/>
3868
- <link rel="depthchart" href="/2012/REG/17/CHI/DET/depthchart.xml" type="application/xml"/>
3869
- </links>
3870
- </game>
3871
- <game id="105113aa-9639-4c35-8072-6019a6b3ccdf" scheduled="2012-12-30T18:00:00+00:00" home_rotation="" away_rotation="" home="ATL" away="TB" status="scheduled">
3872
- <venue id="216de6bf-bce0-409a-a9e7-90db8df1f7b9" country="US" name="Georgia Dome" city="Atlanta" state="GA" capacity="71250" surface="artificial" type="dome" zip="" address=""/>
3873
- <weather temperature="" condition="" humidity="">
3874
- <wind speed="" direction=""/>
3875
- </weather>
3876
- <links>
3877
- <link rel="statistics" href="/2012/REG/17/TB/ATL/statistics.xml" type="application/xml"/>
3878
- <link rel="summary" href="/2012/REG/17/TB/ATL/summary.xml" type="application/xml"/>
3879
- <link rel="pbp" href="/2012/REG/17/TB/ATL/pbp.xml" type="application/xml"/>
3880
- <link rel="boxscore" href="/2012/REG/17/TB/ATL/boxscore.xml" type="application/xml"/>
3881
- <link rel="roster" href="/2012/REG/17/TB/ATL/roster.xml" type="application/xml"/>
3882
- <link rel="injuries" href="/2012/REG/17/TB/ATL/injuries.xml" type="application/xml"/>
3883
- <link rel="depthchart" href="/2012/REG/17/TB/ATL/depthchart.xml" type="application/xml"/>
3884
- </links>
3885
- </game>
3886
- <game id="9a44993b-24a1-47f6-bf5b-dd51f19c7349" scheduled="2012-12-30T18:00:00+00:00" home_rotation="" away_rotation="" home="BUF" away="NYJ" status="scheduled">
3887
- <venue id="e9e0828e-37fc-4238-a317-49037577dd55" country="US" name="Ralph Wilson Stadium" city="Orchard Park" state="NY" capacity="73967" surface="artificial" type="outdoor" zip="" address=""/>
3888
- <weather temperature="" condition="" humidity="">
3889
- <wind speed="" direction=""/>
3890
- </weather>
3891
- <links>
3892
- <link rel="statistics" href="/2012/REG/17/NYJ/BUF/statistics.xml" type="application/xml"/>
3893
- <link rel="summary" href="/2012/REG/17/NYJ/BUF/summary.xml" type="application/xml"/>
3894
- <link rel="pbp" href="/2012/REG/17/NYJ/BUF/pbp.xml" type="application/xml"/>
3895
- <link rel="boxscore" href="/2012/REG/17/NYJ/BUF/boxscore.xml" type="application/xml"/>
3896
- <link rel="roster" href="/2012/REG/17/NYJ/BUF/roster.xml" type="application/xml"/>
3897
- <link rel="injuries" href="/2012/REG/17/NYJ/BUF/injuries.xml" type="application/xml"/>
3898
- <link rel="depthchart" href="/2012/REG/17/NYJ/BUF/depthchart.xml" type="application/xml"/>
3899
- </links>
3900
- </game>
3901
- <game id="49a56fa8-60d9-4568-8d90-0a8d0c48dce8" scheduled="2012-12-30T18:00:00+00:00" home_rotation="" away_rotation="" home="NO" away="CAR" status="scheduled">
3902
- <venue id="3c85d89a-ec66-4983-acd5-1381d6c8673a" country="US" name="The Mercedes-Benz Superdome" city="New Orleans" state="LA" capacity="72968" surface="artificial" type="dome" zip="" address=""/>
3903
- <weather temperature="" condition="" humidity="">
3904
- <wind speed="" direction=""/>
3905
- </weather>
3906
- <links>
3907
- <link rel="statistics" href="/2012/REG/17/CAR/NO/statistics.xml" type="application/xml"/>
3908
- <link rel="summary" href="/2012/REG/17/CAR/NO/summary.xml" type="application/xml"/>
3909
- <link rel="pbp" href="/2012/REG/17/CAR/NO/pbp.xml" type="application/xml"/>
3910
- <link rel="boxscore" href="/2012/REG/17/CAR/NO/boxscore.xml" type="application/xml"/>
3911
- <link rel="roster" href="/2012/REG/17/CAR/NO/roster.xml" type="application/xml"/>
3912
- <link rel="injuries" href="/2012/REG/17/CAR/NO/injuries.xml" type="application/xml"/>
3913
- <link rel="depthchart" href="/2012/REG/17/CAR/NO/depthchart.xml" type="application/xml"/>
3914
- </links>
3915
- </game>
3916
- <game id="dcfb0c36-f456-48a7-9aa9-4fd0e08441dd" scheduled="2012-12-30T18:00:00+00:00" home_rotation="" away_rotation="" home="IND" away="HOU" status="scheduled">
3917
- <venue id="6ed18563-53e0-46c2-a91d-12d73a16456d" country="US" name="Lucas Oil Stadium" city="Indianapolis" state="IN" capacity="67000" surface="artificial" type="retractable_dome" zip="46225" address="500 S. Capitol Avenue"/>
3918
- <weather temperature="" condition="" humidity="">
3919
- <wind speed="" direction=""/>
3920
- </weather>
3921
- <links>
3922
- <link rel="statistics" href="/2012/REG/17/HOU/IND/statistics.xml" type="application/xml"/>
3923
- <link rel="summary" href="/2012/REG/17/HOU/IND/summary.xml" type="application/xml"/>
3924
- <link rel="pbp" href="/2012/REG/17/HOU/IND/pbp.xml" type="application/xml"/>
3925
- <link rel="boxscore" href="/2012/REG/17/HOU/IND/boxscore.xml" type="application/xml"/>
3926
- <link rel="roster" href="/2012/REG/17/HOU/IND/roster.xml" type="application/xml"/>
3927
- <link rel="injuries" href="/2012/REG/17/HOU/IND/injuries.xml" type="application/xml"/>
3928
- <link rel="depthchart" href="/2012/REG/17/HOU/IND/depthchart.xml" type="application/xml"/>
3929
- </links>
3930
- </game>
3931
- <game id="adbd3f90-72dc-4266-82fb-4a69323ede89" scheduled="2012-12-30T18:00:00+00:00" home_rotation="" away_rotation="" home="NE" away="MIA" status="scheduled">
3932
- <venue id="e43310b1-cb82-4df9-8be5-e9b39637031b" country="US" name="Gillette Stadium" city="Foxborough" state="MA" capacity="68756" surface="turf" type="outdoor" zip="" address=""/>
3933
- <weather temperature="" condition="" humidity="">
3934
- <wind speed="" direction=""/>
3935
- </weather>
3936
- <links>
3937
- <link rel="statistics" href="/2012/REG/17/MIA/NE/statistics.xml" type="application/xml"/>
3938
- <link rel="summary" href="/2012/REG/17/MIA/NE/summary.xml" type="application/xml"/>
3939
- <link rel="pbp" href="/2012/REG/17/MIA/NE/pbp.xml" type="application/xml"/>
3940
- <link rel="boxscore" href="/2012/REG/17/MIA/NE/boxscore.xml" type="application/xml"/>
3941
- <link rel="roster" href="/2012/REG/17/MIA/NE/roster.xml" type="application/xml"/>
3942
- <link rel="injuries" href="/2012/REG/17/MIA/NE/injuries.xml" type="application/xml"/>
3943
- <link rel="depthchart" href="/2012/REG/17/MIA/NE/depthchart.xml" type="application/xml"/>
3944
- </links>
3945
- </game>
3946
- <game id="188dd35e-20a9-4624-a481-3150618c42d0" scheduled="2012-12-30T18:00:00+00:00" home_rotation="" away_rotation="" home="CIN" away="BAL" status="scheduled">
3947
- <venue id="b87a1595-d3c8-48ea-8a53-0aab6378a64a" country="US" name="Paul Brown Stadium" city="Cincinnati" state="OH" capacity="65535" surface="artificial" type="outdoor" zip="" address=""/>
3948
- <weather temperature="" condition="" humidity="">
3949
- <wind speed="" direction=""/>
3950
- </weather>
3951
- <links>
3952
- <link rel="statistics" href="/2012/REG/17/BAL/CIN/statistics.xml" type="application/xml"/>
3953
- <link rel="summary" href="/2012/REG/17/BAL/CIN/summary.xml" type="application/xml"/>
3954
- <link rel="pbp" href="/2012/REG/17/BAL/CIN/pbp.xml" type="application/xml"/>
3955
- <link rel="boxscore" href="/2012/REG/17/BAL/CIN/boxscore.xml" type="application/xml"/>
3956
- <link rel="roster" href="/2012/REG/17/BAL/CIN/roster.xml" type="application/xml"/>
3957
- <link rel="injuries" href="/2012/REG/17/BAL/CIN/injuries.xml" type="application/xml"/>
3958
- <link rel="depthchart" href="/2012/REG/17/BAL/CIN/depthchart.xml" type="application/xml"/>
3959
- </links>
3960
- </game>
3961
- <game id="22209519-f6e1-4dad-958d-27c835301514" scheduled="2012-12-30T18:00:00+00:00" home_rotation="" away_rotation="" home="NYG" away="PHI" status="scheduled">
3962
- <venue id="5d4c85c7-d84e-4e10-bd6a-8a15ebecca5c" country="US" name="MetLife Stadium" city="East Rutherford" state="NJ" capacity="82500" surface="artificial" type="outdoor" zip="" address=""/>
3963
- <weather temperature="" condition="" humidity="">
3964
- <wind speed="" direction=""/>
3965
- </weather>
3966
- <links>
3967
- <link rel="statistics" href="/2012/REG/17/PHI/NYG/statistics.xml" type="application/xml"/>
3968
- <link rel="summary" href="/2012/REG/17/PHI/NYG/summary.xml" type="application/xml"/>
3969
- <link rel="pbp" href="/2012/REG/17/PHI/NYG/pbp.xml" type="application/xml"/>
3970
- <link rel="boxscore" href="/2012/REG/17/PHI/NYG/boxscore.xml" type="application/xml"/>
3971
- <link rel="roster" href="/2012/REG/17/PHI/NYG/roster.xml" type="application/xml"/>
3972
- <link rel="injuries" href="/2012/REG/17/PHI/NYG/injuries.xml" type="application/xml"/>
3973
- <link rel="depthchart" href="/2012/REG/17/PHI/NYG/depthchart.xml" type="application/xml"/>
3974
- </links>
3975
- </game>
3976
- <game id="ca51fd90-a36f-4949-bf4c-67ae742c9c44" scheduled="2012-12-30T18:00:00+00:00" home_rotation="" away_rotation="" home="PIT" away="CLE" status="scheduled">
3977
- <venue id="7349a2e6-0ac9-410b-8bd2-ca58c9f7aa34" country="US" name="Heinz Field" city="Pittsburgh" state="PA" capacity="65050" surface="turf" type="outdoor" zip="" address=""/>
3978
- <weather temperature="" condition="" humidity="">
3979
- <wind speed="" direction=""/>
3980
- </weather>
3981
- <links>
3982
- <link rel="statistics" href="/2012/REG/17/CLE/PIT/statistics.xml" type="application/xml"/>
3983
- <link rel="summary" href="/2012/REG/17/CLE/PIT/summary.xml" type="application/xml"/>
3984
- <link rel="pbp" href="/2012/REG/17/CLE/PIT/pbp.xml" type="application/xml"/>
3985
- <link rel="boxscore" href="/2012/REG/17/CLE/PIT/boxscore.xml" type="application/xml"/>
3986
- <link rel="roster" href="/2012/REG/17/CLE/PIT/roster.xml" type="application/xml"/>
3987
- <link rel="injuries" href="/2012/REG/17/CLE/PIT/injuries.xml" type="application/xml"/>
3988
- <link rel="depthchart" href="/2012/REG/17/CLE/PIT/depthchart.xml" type="application/xml"/>
3989
- </links>
3990
- </game>
3991
- <game id="9bed8e6c-05d2-43d8-a530-38803ea856cf" scheduled="2012-12-30T18:00:00+00:00" home_rotation="" away_rotation="" home="MIN" away="GB" status="scheduled">
3992
- <venue id="1fede74c-50a2-4036-a1c0-b4d1e53ca98c" country="US" name="Mall of America Field" city="Minneapolis" state="MN" capacity="64111" surface="artificial" type="dome" zip="" address=""/>
3993
- <weather temperature="" condition="" humidity="">
3994
- <wind speed="" direction=""/>
3995
- </weather>
3996
- <links>
3997
- <link rel="statistics" href="/2012/REG/17/GB/MIN/statistics.xml" type="application/xml"/>
3998
- <link rel="summary" href="/2012/REG/17/GB/MIN/summary.xml" type="application/xml"/>
3999
- <link rel="pbp" href="/2012/REG/17/GB/MIN/pbp.xml" type="application/xml"/>
4000
- <link rel="boxscore" href="/2012/REG/17/GB/MIN/boxscore.xml" type="application/xml"/>
4001
- <link rel="roster" href="/2012/REG/17/GB/MIN/roster.xml" type="application/xml"/>
4002
- <link rel="injuries" href="/2012/REG/17/GB/MIN/injuries.xml" type="application/xml"/>
4003
- <link rel="depthchart" href="/2012/REG/17/GB/MIN/depthchart.xml" type="application/xml"/>
4004
- </links>
4005
- </game>
4006
- <game id="0fac861c-8913-4449-a1bc-9f62fa10c230" scheduled="2012-12-30T21:15:00+00:00" home_rotation="" away_rotation="" home="DEN" away="KC" status="scheduled">
4007
- <venue id="6589e61d-ef1e-4e30-91b5-9acd2072b8a0" country="US" name="Sports Authority Field at Mile High" city="Denver " state="CO" capacity="76125" surface="turf" type="outdoor" zip="" address=""/>
4008
- <weather temperature="" condition="" humidity="">
4009
- <wind speed="" direction=""/>
4010
- </weather>
4011
- <links>
4012
- <link rel="statistics" href="/2012/REG/17/KC/DEN/statistics.xml" type="application/xml"/>
4013
- <link rel="summary" href="/2012/REG/17/KC/DEN/summary.xml" type="application/xml"/>
4014
- <link rel="pbp" href="/2012/REG/17/KC/DEN/pbp.xml" type="application/xml"/>
4015
- <link rel="boxscore" href="/2012/REG/17/KC/DEN/boxscore.xml" type="application/xml"/>
4016
- <link rel="roster" href="/2012/REG/17/KC/DEN/roster.xml" type="application/xml"/>
4017
- <link rel="injuries" href="/2012/REG/17/KC/DEN/injuries.xml" type="application/xml"/>
4018
- <link rel="depthchart" href="/2012/REG/17/KC/DEN/depthchart.xml" type="application/xml"/>
4019
- </links>
4020
- </game>
4021
- <game id="cfd6200d-594b-4506-92ce-a6d57337cf66" scheduled="2012-12-30T21:15:00+00:00" home_rotation="" away_rotation="" home="SF" away="ARI" status="scheduled">
4022
- <venue id="6701808c-c329-482b-9834-2d29cb3185ff" country="US" name="Candlestick Park" city="San Francisco" state="CA" capacity="70207" surface="turf" type="outdoor" zip="" address=""/>
4023
- <weather temperature="" condition="" humidity="">
4024
- <wind speed="" direction=""/>
4025
- </weather>
4026
- <links>
4027
- <link rel="statistics" href="/2012/REG/17/ARI/SF/statistics.xml" type="application/xml"/>
4028
- <link rel="summary" href="/2012/REG/17/ARI/SF/summary.xml" type="application/xml"/>
4029
- <link rel="pbp" href="/2012/REG/17/ARI/SF/pbp.xml" type="application/xml"/>
4030
- <link rel="boxscore" href="/2012/REG/17/ARI/SF/boxscore.xml" type="application/xml"/>
4031
- <link rel="roster" href="/2012/REG/17/ARI/SF/roster.xml" type="application/xml"/>
4032
- <link rel="injuries" href="/2012/REG/17/ARI/SF/injuries.xml" type="application/xml"/>
4033
- <link rel="depthchart" href="/2012/REG/17/ARI/SF/depthchart.xml" type="application/xml"/>
4034
- </links>
4035
- </game>
4036
- <game id="265cc0df-20d9-4aaa-9e48-ece01e4990cb" scheduled="2012-12-30T21:15:00+00:00" home_rotation="" away_rotation="" home="SEA" away="STL" status="scheduled">
4037
- <venue id="c6b9e5df-c9e4-434c-b3e6-83928f11cbda" country="US" name="Qwest Field" city="Seattle" state="WA" capacity="67000" surface="artificial" type="outdoor" zip="" address=""/>
4038
- <weather temperature="" condition="" humidity="">
4039
- <wind speed="" direction=""/>
4040
- </weather>
4041
- <links>
4042
- <link rel="statistics" href="/2012/REG/17/STL/SEA/statistics.xml" type="application/xml"/>
4043
- <link rel="summary" href="/2012/REG/17/STL/SEA/summary.xml" type="application/xml"/>
4044
- <link rel="pbp" href="/2012/REG/17/STL/SEA/pbp.xml" type="application/xml"/>
4045
- <link rel="boxscore" href="/2012/REG/17/STL/SEA/boxscore.xml" type="application/xml"/>
4046
- <link rel="roster" href="/2012/REG/17/STL/SEA/roster.xml" type="application/xml"/>
4047
- <link rel="injuries" href="/2012/REG/17/STL/SEA/injuries.xml" type="application/xml"/>
4048
- <link rel="depthchart" href="/2012/REG/17/STL/SEA/depthchart.xml" type="application/xml"/>
4049
- </links>
4050
- </game>
4051
- <game id="5c1a5ea1-76d7-4917-b949-f59ec4a1487f" scheduled="2012-12-30T21:15:00+00:00" home_rotation="" away_rotation="" home="SD" away="OAK" status="scheduled">
4052
- <venue id="7ca47702-8951-45be-a4f5-3e7d78f8f399" country="US" name="Qualcomm Stadium" city="San Diego" state="CA" capacity="71294" surface="turf" type="outdoor" zip="" address=""/>
4053
- <weather temperature="" condition="" humidity="">
4054
- <wind speed="" direction=""/>
4055
- </weather>
4056
- <links>
4057
- <link rel="statistics" href="/2012/REG/17/OAK/SD/statistics.xml" type="application/xml"/>
4058
- <link rel="summary" href="/2012/REG/17/OAK/SD/summary.xml" type="application/xml"/>
4059
- <link rel="pbp" href="/2012/REG/17/OAK/SD/pbp.xml" type="application/xml"/>
4060
- <link rel="boxscore" href="/2012/REG/17/OAK/SD/boxscore.xml" type="application/xml"/>
4061
- <link rel="roster" href="/2012/REG/17/OAK/SD/roster.xml" type="application/xml"/>
4062
- <link rel="injuries" href="/2012/REG/17/OAK/SD/injuries.xml" type="application/xml"/>
4063
- <link rel="depthchart" href="/2012/REG/17/OAK/SD/depthchart.xml" type="application/xml"/>
4064
- </links>
4065
- </game>
4066
- </week>
4067
- </season>